From f81a1d5a817598c7ef51c823ce1b8f5fa7dec3f2 Mon Sep 17 00:00:00 2001 From: yeri Date: Wed, 15 Oct 2025 10:43:58 -0400 Subject: [PATCH] Feat: Sincronizador. --- .dockerignore | 7 + .env | 40 + .gitignore | 167 ++ Dockerfile | 30 + Dockerfile copy | 32 + README.md | 198 ++ cmd/go-sync-service/main.go | 68 + dump.rdb | Bin 0 -> 8897 bytes elastic/elastic_hook.go | 57 + go.mod | 60 + go.sum | 119 ++ internal/config/config.go | 75 + internal/config/database.go | 63 + internal/config/keys.go | 7 + internal/config/logger.go | 70 + internal/config/redis.go | 30 + internal/config/redis_manager.go | 40 + internal/config/redis_provider.go | 37 + internal/db/operaciones.go | 379 ++++ internal/domain/dto/cron.go | 22 + internal/domain/dto/servicio.go | 69 + internal/domain/dto/session.go | 9 + internal/domain/model/credencial_sap.go | 24 + internal/domain/ports/database_port.go | 12 + internal/domain/ports/redis_provider_port.go | 11 + internal/domain/ports/scheduler_port.go | 7 + internal/domain/ports/session_port.go | 5 + internal/http/client.go | 55 + internal/http/sendrequest.go | 66 + internal/http/session.go | 153 ++ internal/scheduler/ListenCronReload | 98 + internal/scheduler/listener.go | 26 + internal/scheduler/manager.go | 62 + internal/security/aesgcm.go | 53 + internal/security/crypto_key.go | 52 + internal/sync/fetcher.go | 206 +++ internal/utils/redis_loader.go | 29 + logs/syncronizador.log | 1748 ++++++++++++++++++ metrics/metrics.go | 56 + 39 files changed, 4242 insertions(+) create mode 100644 .dockerignore create mode 100644 .env create mode 100644 .gitignore create mode 100644 Dockerfile create mode 100644 Dockerfile copy create mode 100644 README.md create mode 100644 cmd/go-sync-service/main.go create mode 100644 dump.rdb create mode 100644 elastic/elastic_hook.go create mode 100644 go.mod create mode 100644 go.sum create mode 100644 internal/config/config.go create mode 100644 internal/config/database.go create mode 100644 internal/config/keys.go create mode 100644 internal/config/logger.go create mode 100644 internal/config/redis.go create mode 100644 internal/config/redis_manager.go create mode 100644 internal/config/redis_provider.go create mode 100644 internal/db/operaciones.go create mode 100644 internal/domain/dto/cron.go create mode 100644 internal/domain/dto/servicio.go create mode 100644 internal/domain/dto/session.go create mode 100644 internal/domain/model/credencial_sap.go create mode 100644 internal/domain/ports/database_port.go create mode 100644 internal/domain/ports/redis_provider_port.go create mode 100644 internal/domain/ports/scheduler_port.go create mode 100644 internal/domain/ports/session_port.go create mode 100644 internal/http/client.go create mode 100644 internal/http/sendrequest.go create mode 100644 internal/http/session.go create mode 100644 internal/scheduler/ListenCronReload create mode 100644 internal/scheduler/listener.go create mode 100644 internal/scheduler/manager.go create mode 100644 internal/security/aesgcm.go create mode 100644 internal/security/crypto_key.go create mode 100644 internal/sync/fetcher.go create mode 100644 internal/utils/redis_loader.go create mode 100644 logs/syncronizador.log create mode 100644 metrics/metrics.go diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..ce99679 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,7 @@ +.git +*.md +*.zip +*.log +#*.env +tmp/ +tests/ diff --git a/.env b/.env new file mode 100644 index 0000000..ea7f1de --- /dev/null +++ b/.env @@ -0,0 +1,40 @@ +#Configuración de la base de datos +DB_HOST=localhost +DB_PORT=5434 +DB_USER=admin +DB_PASSWORD=admin +DB_NAME=gotestdb +DB_MAX_OPEN_CONNS=25 +DB_MAX_IDLE_CONNS=10 +DB_CONN_MAX_LIFETIME=30m +#Redis +REDIS_HOST=10.0.0.112 +REDIS_PORT=6379 +REDIS_PASSWORD=TuPasswordSegura123 +REDIS_DB=0 +REDIS_TTL=10m +REDIS_SUBSCRIBE=cron:reload +#Log +LOG_FILE_PATH=logs/syncronizador.log +LOG_LEVEL=debug +LOG_MAX_SIZE=10 +LOG_MAX_BACKUPS=7 +LOG_MAX_AGE=30 +LOG_COMPRESS=true + +#Cliente Rest +TIMEOUT_SECONDS= 30 +RETRY_COUNT=3 +TLS_SKIP_VERIFY=true +LOG_REQUESTS=false +ENABLE_DEBUG= false + +WHERE_UNITS_BUSINESS=company_name = @company_name AND company_db = @company_db AND status = 'A' + +ENVIRONMENT=development +# Elastic +#ELASTIC_URL=http://host.docker.internal:9200 +ELASTIC_URL=http://10.0.0.124:9200 +ELASTIC_ENABLED=true + +ENCRYPTION_KEY=12345678901234567890123456789012 \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a9846c4 --- /dev/null +++ b/.gitignore @@ -0,0 +1,167 @@ +# Created by https://www.toptal.com/developers/gitignore/api/go,goland +# Edit at https://www.toptal.com/developers/gitignore?templates=go,goland + +### Go ### +# If you prefer the allow list template instead of the deny list, see community template: +# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore +# +# Binaries for programs and plugins +*.exe +*.exe~ +*.dll +*.so +*.dylib + +# Test binary, built with `go test -c` +*.test + +# Output of the go coverage tool, specifically when used with LiteIDE +*.out + +# Dependency directories (remove the comment below to include it) +# vendor/ + +# Go workspace file +go.work + +### GoLand ### +# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider +# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 + +# User-specific stuff +.idea/**/workspace.xml +.idea/**/tasks.xml +.idea/**/usage.statistics.xml +.idea/**/dictionaries +.idea/**/shelf + +# AWS User-specific +.idea/**/aws.xml + +# Generated files +.idea/**/contentModel.xml + +# Sensitive or high-churn files +.idea/**/dataSources/ +.idea/**/dataSources.ids +.idea/**/dataSources.local.xml +.idea/**/sqlDataSources.xml +.idea/**/dynamic.xml +.idea/**/uiDesigner.xml +.idea/**/dbnavigator.xml + +# Gradle +.idea/**/gradle.xml +.idea/**/libraries + +# Gradle and Maven with auto-import +# When using Gradle or Maven with auto-import, you should exclude module files, +# since they will be recreated, and may cause churn. Uncomment if using +# auto-import. +# .idea/artifacts +# .idea/compiler.xml +# .idea/jarRepositories.xml +# .idea/modules.xml +# .idea/*.iml +# .idea/modules +# *.iml +# *.ipr + +# CMake +cmake-build-*/ + +# Mongo Explorer plugin +.idea/**/mongoSettings.xml + +# File-based project format +*.iws + +# IntelliJ +out/ + +# mpeltonen/sbt-idea plugin +.idea_modules/ + +# JIRA plugin +atlassian-ide-plugin.xml + +# Cursive Clojure plugin +.idea/replstate.xml + +# SonarLint plugin +.idea/sonarlint/ + +# Crashlytics plugin (for Android Studio and IntelliJ) +com_crashlytics_export_strings.xml +crashlytics.properties +crashlytics-build.properties +fabric.properties + +# Editor-based Rest Client +.idea/httpRequests + +# Android studio 3.1+ serialized cache file +.idea/caches/build_file_checksums.ser + +### GoLand Patch ### +# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721 + +# *.iml +# modules.xml +# .idea/misc.xml +# *.ipr + +# Sonarlint plugin +# https://plugins.jetbrains.com/plugin/7973-sonarlint +.idea/**/sonarlint/ + +# SonarQube Plugin +# https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin +.idea/**/sonarIssues.xml + +# Markdown Navigator plugin +# https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced +.idea/**/markdown-navigator.xml +.idea/**/markdown-navigator-enh.xml +.idea/**/markdown-navigator/ + +# Cache file creation bug +# See https://youtrack.jetbrains.com/issue/JBR-2257 +.idea/$CACHE_FILE$ + +# CodeStream plugin +# https://plugins.jetbrains.com/plugin/12206-codestream +.idea/codestream.xml + +# Azure Toolkit for IntelliJ plugin +# https://plugins.jetbrains.com/plugin/8053-azure-toolkit-for-intellij +.idea/**/azureSettings.xml + +# End of https://www.toptal.com/developers/gitignore/api/go,goland + + +# Created by https://www.toptal.com/developers/gitignore/api/visualstudiocode +# Edit at https://www.toptal.com/developers/gitignore?templates=visualstudiocode + +### VisualStudioCode ### +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json +!.vscode/*.code-snippets + +# Local History for Visual Studio Code +.history/ + +# Built Visual Studio Code Extensions +*.vsix + +### VisualStudioCode Patch ### +# Ignore all local history of files +.history +.ionide + +# End of https://www.toptal.com/developers/gitignore/api/visualstudiocode + +logs/rest_myapps_orbit.log diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..6003f1f --- /dev/null +++ b/Dockerfile @@ -0,0 +1,30 @@ +# Stage 1: Compila el binario +FROM golang:1.24-alpine AS builder + +WORKDIR /app + +# Copiar módulos primero (cache) +COPY go.mod go.sum ./ +RUN go mod download + +# Copiar todo y compilar +COPY . . +RUN go build -o go-sync-service ./cmd/go-sync-service + +# Stage 2: Imagen final mínima +FROM alpine:latest + +WORKDIR /root/ +COPY --from=builder /app/go-sync-service . + +COPY .env .env + + +ENV TZ=America/La_Paz +RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone + +# Puerto si lo usas +EXPOSE 9100 + +# Ejecutar binario +CMD ["./go-sync-service"] diff --git a/Dockerfile copy b/Dockerfile copy new file mode 100644 index 0000000..a5a6e07 --- /dev/null +++ b/Dockerfile copy @@ -0,0 +1,32 @@ +# --------------------------------------------------- +# 1) Builder: compila API, worker y prepara goose +# --------------------------------------------------- +FROM golang:1.24 AS builder + + +RUN apt-get update && apt-get install -y tzdata + +ENV TZ=America/La_Paz +RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone +# Configurar el directorio de trabajo dentro del contenedor +WORKDIR /app + +# 1.1 Dependencias (caché) +COPY go.mod go.sum ./ +RUN go mod tidy + +# 1.2 Código fuente +COPY . . + +# Instalar OpenSSL (necesario para generar los certificados) +#RUN apt-get update && apt-get install -y openssl && rm -rf /var/lib/apt/lists/* + +# Copiar el script entrypoint a la carpeta /docker-entrypoint-init.d/ y dar permisos de ejecución +#COPY scripts/entrypoint.sh /docker-entrypoint-init.d/entrypoint.sh +#RUN chmod +x /docker-entrypoint-init.d/entrypoint.sh + +# Configurar el entrypoint para que ejecute el script +#ENTRYPOINT ["/bin/sh", "/docker-entrypoint-init.d/entrypoint.sh"] + +# Comando que se ejecutará tras el entrypoint (por ejemplo, levantar la API) +CMD ["go", "run", "cmd/go-sync-service/main.go"] \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..f491424 --- /dev/null +++ b/README.md @@ -0,0 +1,198 @@ +\# 📦 go-sync-service + + + +\*\*go-sync-service\*\* es un microservicio escrito en Go para la ejecución de tareas de sincronización basadas en cron, integrando Redis como sistema de control y configuración dinámica, y PostgreSQL mediante GORM como base de datos. Está diseñado con una arquitectura modular y desacoplada para facilitar su reutilización y escalabilidad. + + + +--- + + + +\## 🚀 Características + + + +\- 🔁 Ejecución de tareas periódicas con `robfig/cron` + +\- 📦 Carga de configuraciones de tareas desde Redis (configuración dinámica) + +\- 🧩 Arquitectura limpia con separación por capas (`ports`, `dto`, `config`, `scheduler`) + +\- 🛠️ Servicio desacoplado de sincronización con posibilidad de extensiones + +\- 🗂️ Organización clara del código con submódulos reutilizables + +\- 🗃️ Persistencia con PostgreSQL vía `gorm.io/gorm` + +\- 🧠 Logger centralizado + + + +--- + + + +\## 🛠️ Requisitos + + + +\- Go 1.20+ + +\- Redis + +\- PostgreSQL + +\- Docker (opcional para despliegue) + + + +--- + + + +\## 📁 Estructura del Proyecto + + + +``` + +go-sync-service/ + +├── cmd/ + +│ └── go-sync-service/ # Punto de entrada: main.go + +├── internal/ + +│ ├── config/ # Configuración de BD, Redis, logger + +│ ├── scheduler/ # Orquestador de cron jobs + +│ ├── sync/ # Lógica de sincronización (fetchers) + +│ ├── domain/ + +│ │ ├── dto/ # Estructuras de datos + +│ │ └── ports/ # Interfaces de abstracción + +├── README.md + +└── go.mod / go.sum + +``` + + + +--- + + + +\## ▶️ Cómo ejecutar + + + +\### 1. Clonar el proyecto + + + +```bash + +git clone https://github.com/tuusuario/go-sync-service.git + +cd go-sync-service + +``` + + + +\### 2. Configurar variables de entorno + + + +Crear un archivo `.env` o configurar los valores necesarios: + + + +```env + +DB\_HOST=localhost + +DB\_PORT=5432 + +DB\_NAME=sync\_db + +DB\_USER=postgres + +DB\_PASS=secret + + + +REDIS\_ADDR=localhost:6379 + +REDIS\_PASS= + +``` + + + +\### 3. Ejecutar el servicio + + + +```bash + +go run cmd/go-sync-service/main.go + +``` + + + +--- + + + +\## 🧪 Pruebas + + + +Puedes lanzar las pruebas (si las implementas) con: + + + +```bash + +go test ./... + +``` + + + +--- + + + +\## 📌 Notas técnicas + + + +\- Las configuraciones de cron (`CronConfigList`) se cargan desde Redis mediante un esquema de deserialización JSON. + +\- El archivo `internal/scheduler/manager.go` coordina la carga y reinicio dinámico de tareas cuando hay cambios en la configuración Redis. + +\- La interfaz `RedisConfigProvider` permite desacoplar la fuente de datos de configuración, haciéndolo fácilmente intercambiable. + + + +--- + + + +\## 🧑‍💻 Autor + + + +Desarrollado por \[tuusuario] + diff --git a/cmd/go-sync-service/main.go b/cmd/go-sync-service/main.go new file mode 100644 index 0000000..66cc46d --- /dev/null +++ b/cmd/go-sync-service/main.go @@ -0,0 +1,68 @@ +package main + +import ( + "context" + "fmt" + "net/http" + "os" + "os/signal" + "syscall" + + "github.com/prometheus/client_golang/prometheus/promhttp" + "github.com/tuusuario/go-sync-service/internal/config" + "github.com/tuusuario/go-sync-service/internal/scheduler" + "github.com/tuusuario/go-sync-service/metrics" +) + +func main() { + // Cargar configuración + conf, err := config.LoadConfig() + if err != nil { + fmt.Println("❌ Error cargando configuración:", err) + os.Exit(1) + } + + // Inicializar logger con configuración + config.InitLogger(conf) + config.Log.Info("🚀 Iniciando servicio: go-sync-service") + + // Conexión a Redis + redisClient := config.GetRedisClient(conf) + if err := redisClient.Ping(context.Background()).Err(); err != nil { + config.Log.Fatalf("❌ Redis no disponible: %v", err) + } + config.Log.Info("✅ Redis conectado") + + // Crear proveedor de configuración desde Redis + redisManager := config.NewRedisManager(redisClient) + redisConfigProvider := config.NewRedisProvider(redisManager, context.Background()) + + // Conexión a Base de Datos + database := config.GetDatabaseConnection(conf) + if database == nil { + config.Log.Fatal("❌ No se pudo establecer la conexión con la base de datos.") + } + config.Log.Info("✅ Conexión a base de datos establecida") + + scheduler.Start(context.Background(), redisClient, redisConfigProvider, database) + config.Log.Info("✅ Scheduler en ejecución y escuchando recargas") + + //metrics Grafana + metrics.Register() + startMetricsServer() + + // Esperar señal del sistema para cerrar ordenadamente + stop := make(chan os.Signal, 1) + signal.Notify(stop, os.Interrupt, syscall.SIGTERM) + <-stop + + config.Log.Info("🛑 Señal de apagado recibida, cerrando servicio...") +} + +func startMetricsServer() { + go func() { + http.Handle("/metrics", promhttp.Handler()) + config.Log.Info("📊 Servidor de métricas en :9100/metrics") + http.ListenAndServe(":9100", nil) + }() +} diff --git a/dump.rdb b/dump.rdb new file mode 100644 index 0000000000000000000000000000000000000000..a51e4d7fb439cfdee0808791dfe1e97b4734223d GIT binary patch literal 8897 zcmds+d3@aDna5vAbNIgE_)Owgn(>j~+lg~P+IJ4yaSq4WPDp?tX*9B}WM(u-8pjUx zB0C9%LJt<$-5#`Z2x+0E$I^aSSlU$*j+TXPp|otzeaEpA&h3`%c1udzeKocd2iWa? zKKtMPF}5_L{LgTgjwYomBpy6>97Uu%FpIPYQm5cM$^zlQii3)oS00; z6iGA`HPLcVR}&nRz@#w5IOBn=*~vuI=mgAT5~)}W1Lzvj#N?=OzgdPlJ)ACUV~T{X zN1JfTx2c{kT<~OGFr_OAS=akT%}AgpgpcFiXVG4FHg|JM*3eJTBe1~j*X5Wjq5mYq z5w&PYjgkk-qWi?SndRwLHCY)+2!&L)%wAt8#)ic4-f&|mrD<|Pnh=@;2i%Q4nwm-q zf%5)QH6gb(hU8c*6%)0_uDGbg0?{ZNsnHvI6Hzjs+C*bmCND?T0+OVr5=LXcrY2?0 zWhk=VhUr|;PX6R{H16R;F-1=Fi*P&4ThX;E80ZZT?P}aB#*}Ddx27JE#TUiT!e5eU z<|@QD+2^gd-Eu;V#N^<$w4tRU5^P}fLrM~IpjGrU*_@%Ge5$<_g~23r1zu-=KAQ{R zqqMH*oJ32C2m>feaRw5}{Bp@ugo|f4>k|oyk0f~s{*F@PuyyKORzx(UQC?S$psT31 zR^cNaP7>oul}Bv|A#VD{?G) zjslok4c7&J8kiB*TGb%IzHV0s&SRz;3{U+5yL_{Bv9%5iPnWxSLmcOoz&^muGHWeA zkWRD+2kl%jVV(fS0~R_F>?0Q#2@aXRfY;4}h_xCdBcrHtTC>W?!Q-gn%rUD9$ia_M zyf}R)s+nazYx#h3Vg{`_^9cDRI{m2g%Qq1_>wdAGn@s@Ficf~}5O;Y}QW~;-c4jX*b9|Z<_Aha5a!5JjX=Kg{`an5C- z-r7S{&g2#A^x$EG7h@x;rWm7f_qM_I4V@rw**YF5_3i2NHTib!4)5RZYZ_?s4R&4Y z18vI=i79c#koh=Si7KzjBMJ#pl^+qw+UF%F1j&yP{q(C0C|h=xq^SvBQWL|<$l1U^ zh{?Yt2SU#IRwoJK2AD@fc#GhMW$uI;k7zP1uizGfX>mdFQ!GWC^d;xVZj-Adjg!D+(qt zh-WQ~D5Z(;5JMd1mCtTWkuR`6Oc*iWRrhdh~dbTi3JkEQEG z3^u~er*ECQ9##vtVlXAJ>8{Q}X1$!I)~Bg;IKP2P>Fj=7?oWd+VKA1inTD;* zft<-4P`+%s$vSf0@dO`J54(cmK@rq0`*raZisZQ>BALI$;_D-??e-PGx9rHMBI@K- zYa$;P$H~%Mdc*cLfL(T&6ISwgQqeM*n2#%olp*VO^olWMVlNdX5hBTjDLo~UG3rfm zrHLeQ;9qt%awR#T%e+C7Jc%%}Ow^d}WU9P@Wjj~I^`++>RYpc#ftVqJs%2Lcqhv_D zrp9CvgHhR?*}o$22d@nL!NtH|evwP}h!Y7-#ofEeKM_(@dMfIT(xb#i2fVzg}N*x20B2^)578``zA5yq55GVGD1Lj~$u7#h`x%D1$25P(3G z2M&tE^glft)f@h?~x5LpjRRQ^rO>Zx zzO3xv#1=ScXi8$lF3t(gc$6$ z_gf`qzgdcM$-X%t>_*3<021a1v_jVIB4cXT1|n3`ug-$C5)Lp)a~f^uvht53USk`BK$dCXk^-c&slK zkH{L7Vk+S^o`@+db2*7N>U#?)@Bl55Y`UVr5m-pjF9Q*QIC5i9!1T+SM1rHxm5hlK zeZC$5eFO0D=}u1|MiPe{4R?EW=q$&mf?BhNm4u>?l5e2^^QiFw=w%3Aq=Y<**I+)y zj|l~?Q8lIQ44f6R0Y9~pNETH5HlroPnE3*&=t28e0?Pzqvc_IRsRo-(lhuP>U_zq= zB?D#w#Y=XfXORKeQB3!Xy+CK*VMd@Xv!x(P;H1l9K`8KH3|3;#CPp_zgZ;eeVRnhy zArz!i$-s@`Ht%7gZ@qg1kbS_FBod>r>)7w48HExjrq%=K{|TkUX8PPwI83-uDMB0#4Sz%ps8Sf3qtsWQEUhEoa=&fZK%9bUszPgK^{r)Ab}Y zDLSc%wG*@?2e>M;>hwl&rLY^-L+a$KzI(GYRW*2rVTK<+QyJ>Vj1L^f6bJKwj;Sgz zR#z1qIM1Ahd&F0LuhVU|lp?M0wI3`V+s0orPRjlfCC zte{BLR>Ad8jl%Nj3+N^6>Gen{O;@#U`&aBmN^Hi=Z$NYC59IR`%zWl#E-vr1>cSjm zwu*TeT%87Opjjx#OoRD3SHA=F@cZU}*l!D7(qU+rBP;JeDaNPsW!F<6iR zzJ?B02Kd6`%mhhy^_^2Oz)k;};v<3E%}uD(%P$g+aD-B#RwJwo|D`Z^F840;3&K5c z-7+$4O@rTG;=;R75Ap)uJQ_+_qZr&o9g@*sn0cP0cY*J@L?O zuy+=`fW698$R6_NQHnJEO7Pnt;XBJTlG4Nc5GuxCl+A~CL$|pFMryULLBNLwQMFYV z`W2@9^DYmn#qJ^ucBb?9!JBb@1ySR7OGq(FKI{p1Es;MzwZP_x%JuhWpSOGmBtJ zU>>A|3M(6XDgj@|cYDwllRZUl)gF!9^O7~uxSH?nL6msh# zm|9iOU!Vt&fIZ~#x_jauB{^~7&e48yy-A=6oKP@AQY?4DBcfjHEy19VdwKLaLaw9x z&{cNH?FVtrI{#m9Gca@2mp+QA#@D=ss1awaz~J}=>Mc~iaJ>flHBgRx*j0!@?Q8jm zPzx@o#9;HW5x`?m2gEx%0pD{*c+!N=bic;zf#Im(Z-12@0=$1amy79Q&Y4&NZjRZ7`-2RBW5YiYuWY>!Y=H&50%fke~9U$fFGU3xt&41kP$Ka+jN1qc;n0CReYtk+~4}NABfoAb_^89vL1Aphq z@7CKDpxLf??zqX~Z1gY*vwN*Foc}p%70y0sRoGv#-}%RCGK9LvEX7{2qXoNUyTWX= zU$IvT&Grv>?8nqgHfL@UTiAahUu_afh5MA}9WY_Re(&S-Mw~l@QNu3tz!OHg> zt;-~_8%3E+wXm(WwRfqL`t7T}Knpz?tnwZzhAdv4nO!w)tT7AOi8 zEKyYP6@EhV5=C9TNKxjhOBB_H`rcVqii!4IM+Yx5#ReGM1941Y)PRNMu2B-$@16GMSWG({LUg3bXkAl#*4~S+Ify-2ND>{q- zEV)Ehm?;yE**=hf9d<5?VkVcUE6B6D>_S%tu*^I#Nl3wgEKJ==B*|Rqf{+vh7!0@* z8H&PGB^6W2S;2p?D=0(r{gEU%rr1lsX#tU3w%^wW6l)4TMici2gGy3NM9H$n;9-WW zl?i)&hDk7}cV|#b!=RcP%e0&3rwDT@iIq^6wSGahr&7-1s#mC$_Yh{1-^d)lvCN9^j-hg9gGV902ZI@ zheXYCFjE=c0jr<=3~UX(4T}ju6&_zHlmKPwWmq9sl9Oi2VG*XUzQj+@bK4z$a=i$e z!!zU~+QrJoP3j zCvYIFe(-k$l?X?@X2K}JmltAy`Fh2v zcA??6t!DXo`f5~77)jX3IF23XXM5`g%#zvs)sQ6=CUm1a2qVoCMxs{|rulq#5(UlG zr>0E*sapXr5$y0iBoHz<5002uou}@>o@Pu{U{71!!xXR7{`S=8d@BaNDf4dLG;_bYUuAtUO0=VfSSoZ}>I9v!6k$ zguJ@nnpNGuaR4k_FXYw(vjX1H{YMso3E>k~VNZbxk8cFx_CZYL3W*C;8O4wEl%o`; zR*bAO8!pfd@STyhC$1p~;(wzj2%5P)!U0TIVX*$$9;9Hp#@>R#8eD{q?ttIJIa|$Y zT(qUNE(5-C>(r*pvtz-k$nV5pJX^<9M!itFjBuv(XTLI5{}Dv z*@G$QQ?GDgT9%#n-@=0&Pm*#vsxBIX%bltv&xAA^w6o#+dUw3vFIm#|LeE04pwY}& zB)%naZ~Y*Pqzm@^|F=kTlf*;1WRYACCTGNqxpW*Da1AUIN=Y6n&j@|z)E-Rxto7-# zuUt}l>l^9ZQ@Hv}`e)Cj;i;(s_Ti~}*ggNVTT=OF1fCOwcF&T)mr{Cz)oWf$bY0j% z@*CV~@3mLZQAM*$k)!tJZeg!=Ey>_q6H)gA%hi1xCEus+$L&9>?jXheoX9?PR~Dh; zg}wp?H)KV{2|XhxW(&ES?>JHL5X^ID`X5od+U58FeLm4H1PYP#1*O8Ee8CSO#qlyj zz}~W;pLd{#!%q_lf=`6LZx#ywZdPUp^r?YdFIqT?^wpi%bop3L7cGAqJmupX58XUh=wl|}#j{3|}Tdfnd z|K?rljXunV(jgwk8^tQAA z?}$bDQPMDib5t#YnL1WZ)3?H7WOF*(tiM7Q=chfeOuQRyOy@sGgon8Pjak+h-F~t{i-IWax+kJ&Ao#~2RGK0gf_G<4>ZVP7cVqerOUdnZ)SGd6&-qRPg zFPAYL<{o(6dotYz^hJdjn6wTsnZ9T(23r>zqlF8NQCIz9WAqzVm4GfaMn}v5F8z_y z7%h64Q1*hSjc<6xdz#x`+W7H7gjW@g#f_jtF_658efHvq&R0E{4>ICe&qj z%hISABKbgK-vIrn1_WRpdp($dFF9^xL>+;HuC9b6YA6f&;QiJYbGMO}hdw}zUb5pEvSj_K`Gw zhLRKLQ=x9BL;Jw>&Rl0&wCh0Y=|8~|inM5pNsBh}I=oTvMt%ZU%@({3l0L$Xx-XJh z$$jPoS;@#)T*v zr@w)jb_?wWIb2{Vl}Nh1D>Kst^Fz^lD6xaU2*f?KM4B2_=4W-8% rg6>SdtXzhL4%%IAzPX&;|GCLX3MYfKiR^3s^znbMNImr9cW3?!fNJBZ literal 0 HcmV?d00001 diff --git a/elastic/elastic_hook.go b/elastic/elastic_hook.go new file mode 100644 index 0000000..92c6777 --- /dev/null +++ b/elastic/elastic_hook.go @@ -0,0 +1,57 @@ +package elastic + +import ( + "bytes" + "context" + "encoding/json" + "time" + + "github.com/elastic/go-elasticsearch" + "github.com/sirupsen/logrus" +) + +type ElasticHook struct { + Client *elasticsearch.Client + Index string +} + +func NewElasticHook(client *elasticsearch.Client, index string) *ElasticHook { + return &ElasticHook{ + Client: client, + Index: index, + } +} + +func (hook *ElasticHook) Fire(entry *logrus.Entry) error { + doc := map[string]interface{}{ + "@timestamp": entry.Time.Format(time.RFC3339), + "timestamp": entry.Time.Format(time.RFC3339), + "level": entry.Level.String(), + "message": entry.Message, + "module": func() interface{} { + if val, ok := entry.Data["module"]; ok { + return val + } + return "default" + }(), + "file": entry.Caller.File, + "line": entry.Caller.Line, + } + + var buf bytes.Buffer + if err := json.NewEncoder(&buf).Encode(doc); err != nil { + return err + } + + _, err := hook.Client.Index( + hook.Index, + &buf, + hook.Client.Index.WithContext(context.Background()), + hook.Client.Index.WithRefresh("true"), + ) + return err +} + +func (hook *ElasticHook) Levels() []logrus.Level { + return logrus.AllLevels +} diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..9ea30a1 --- /dev/null +++ b/go.mod @@ -0,0 +1,60 @@ +module github.com/tuusuario/go-sync-service + +go 1.24.4 + +require ( + github.com/go-resty/resty/v2 v2.16.5 + github.com/jackc/pgx/v5 v5.7.5 // indirect + github.com/redis/go-redis/v9 v9.10.0 + github.com/robfig/cron/v3 v3.0.1 + +) + +require ( + github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect + github.com/fsnotify/fsnotify v1.8.0 // indirect + github.com/go-viper/mapstructure/v2 v2.2.1 // indirect + github.com/jackc/puddle/v2 v2.2.2 // indirect + github.com/jinzhu/inflection v1.0.0 // indirect + github.com/jinzhu/now v1.1.5 // indirect + github.com/pelletier/go-toml/v2 v2.2.3 // indirect + github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect + github.com/sagikazarmark/locafero v0.7.0 // indirect + github.com/sourcegraph/conc v0.3.0 // indirect + github.com/spf13/afero v1.12.0 // indirect + github.com/spf13/cast v1.7.1 // indirect + github.com/spf13/pflag v1.0.6 // indirect + github.com/subosito/gotenv v1.6.0 // indirect + go.uber.org/atomic v1.9.0 // indirect + go.uber.org/multierr v1.9.0 // indirect + golang.org/x/sync v0.13.0 // indirect + golang.org/x/sys v0.32.0 // indirect + gopkg.in/yaml.v3 v3.0.1 // indirect + gorm.io/gorm v1.30.0 +) + +require ( + github.com/cespare/xxhash/v2 v2.3.0 // indirect + github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect + github.com/jackc/pgpassfile v1.0.0 // indirect + github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect + github.com/prometheus/client_golang v1.22.0 + github.com/sirupsen/logrus v1.9.3 + github.com/spf13/viper v1.20.1 + golang.org/x/crypto v0.37.0 // indirect + golang.org/x/net v0.33.0 // indirect + golang.org/x/text v0.24.0 // indirect + gopkg.in/natefinch/lumberjack.v2 v2.2.1 + gorm.io/driver/postgres v1.6.0 +) + +require github.com/elastic/go-elasticsearch v0.0.0 + +require ( + github.com/beorn7/perks v1.0.1 // indirect + github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect + github.com/prometheus/client_model v0.6.1 // indirect + github.com/prometheus/common v0.62.0 // indirect + github.com/prometheus/procfs v0.15.1 // indirect + google.golang.org/protobuf v1.36.5 // indirect +) diff --git a/go.sum b/go.sum new file mode 100644 index 0000000..0be3901 --- /dev/null +++ b/go.sum @@ -0,0 +1,119 @@ +github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= +github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= +github.com/bsm/ginkgo/v2 v2.12.0 h1:Ny8MWAHyOepLGlLKYmXG4IEkioBysk6GpaRTLC8zwWs= +github.com/bsm/ginkgo/v2 v2.12.0/go.mod h1:SwYbGRRDovPVboqFv0tPTcG1sN61LM1Z4ARdbAV9g4c= +github.com/bsm/gomega v1.27.10 h1:yeMWxP2pV2fG3FgAODIY8EiRE3dy0aeFYt4l7wh6yKA= +github.com/bsm/gomega v1.27.10/go.mod h1:JyEr/xRbxbtgWNi8tIEVPUYZ5Dzef52k01W3YH0H+O0= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc h1:U9qPSI2PIWSS1VwoXQT9A3Wy9MM3WgvqSxFWenqJduM= +github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f h1:lO4WD4F/rVNCu3HqELle0jiPLLBs70cWOduZpkS1E78= +github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f/go.mod h1:cuUVRXasLTGF7a8hSLbxyZXjz+1KgoB3wDUb6vlszIc= +github.com/elastic/go-elasticsearch v0.0.0 h1:Pd5fqOuBxKxv83b0+xOAJDAkziWYwFinWnBO0y+TZaA= +github.com/elastic/go-elasticsearch v0.0.0/go.mod h1:TkBSJBuTyFdBnrNqoPc54FN0vKf5c04IdM4zuStJ7xg= +github.com/frankban/quicktest v1.14.6 h1:7Xjx+VpznH+oBnejlPUj8oUpdxnVs4f8XU8WnHkI4W8= +github.com/frankban/quicktest v1.14.6/go.mod h1:4ptaffx2x8+WTWXmUCuVU6aPUX1/Mz7zb5vbUoiM6w0= +github.com/fsnotify/fsnotify v1.8.0 h1:dAwr6QBTBZIkG8roQaJjGof0pp0EeF+tNV7YBP3F/8M= +github.com/fsnotify/fsnotify v1.8.0/go.mod h1:8jBTzvmWwFyi3Pb8djgCCO5IBqzKJ/Jwo8TRcHyHii0= +github.com/go-resty/resty/v2 v2.16.5 h1:hBKqmWrr7uRc3euHVqmh1HTHcKn99Smr7o5spptdhTM= +github.com/go-resty/resty/v2 v2.16.5/go.mod h1:hkJtXbA2iKHzJheXYvQ8snQES5ZLGKMwQ07xAwp/fiA= +github.com/go-viper/mapstructure/v2 v2.2.1 h1:ZAaOCxANMuZx5RCeg0mBdEZk7DZasvvZIxtHqx8aGss= +github.com/go-viper/mapstructure/v2 v2.2.1/go.mod h1:oJDH3BJKyqBA2TXFhDsKDGDTlndYOZ6rGS0BRZIxGhM= +github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8= +github.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU= +github.com/jackc/pgpassfile v1.0.0 h1:/6Hmqy13Ss2zCq62VdNG8tM1wchn8zjSGOBJ6icpsIM= +github.com/jackc/pgpassfile v1.0.0/go.mod h1:CEx0iS5ambNFdcRtxPj5JhEz+xB6uRky5eyVu/W2HEg= +github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 h1:iCEnooe7UlwOQYpKFhBabPMi4aNAfoODPEFNiAnClxo= +github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761/go.mod h1:5TJZWKEWniPve33vlWYSoGYefn3gLQRzjfDlhSJ9ZKM= +github.com/jackc/pgx/v5 v5.7.5 h1:JHGfMnQY+IEtGM63d+NGMjoRpysB2JBwDr5fsngwmJs= +github.com/jackc/pgx/v5 v5.7.5/go.mod h1:aruU7o91Tc2q2cFp5h4uP3f6ztExVpyVv88Xl/8Vl8M= +github.com/jackc/puddle/v2 v2.2.2 h1:PR8nw+E/1w0GLuRFSmiioY6UooMp6KJv0/61nB7icHo= +github.com/jackc/puddle/v2 v2.2.2/go.mod h1:vriiEXHvEE654aYKXXjOvZM39qJ0q+azkZFrfEOc3H4= +github.com/jinzhu/inflection v1.0.0 h1:K317FqzuhWc8YvSVlFMCCUb36O/S9MCKRDI7QkRKD/E= +github.com/jinzhu/inflection v1.0.0/go.mod h1:h+uFLlag+Qp1Va5pdKtLDYj+kHp5pxUVkryuEj+Srlc= +github.com/jinzhu/now v1.1.5 h1:/o9tlHleP7gOFmsnYNz3RGnqzefHA47wQpKrrdTIwXQ= +github.com/jinzhu/now v1.1.5/go.mod h1:d3SSVoowX0Lcu0IBviAWJpolVfI5UJVZZ7cO71lE/z8= +github.com/klauspost/compress v1.18.0 h1:c/Cqfb0r+Yi+JtIEq73FWXVkRonBlf0CRNYc8Zttxdo= +github.com/klauspost/compress v1.18.0/go.mod h1:2Pp+KzxcywXVXMr50+X0Q/Lsb43OQHYWRCY2AiWywWQ= +github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE= +github.com/kr/pretty v0.3.1/go.mod h1:hoEshYVHaxMs3cyo3Yncou5ZscifuDolrwPKZanG3xk= +github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= +github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= +github.com/kylelemons/godebug v1.1.0 h1:RPNrshWIDI6G2gRW9EHilWtl7Z6Sb1BR0xunSBf0SNc= +github.com/kylelemons/godebug v1.1.0/go.mod h1:9/0rRGxNHcop5bhtWyNeEfOS8JIWk580+fNqagV/RAw= +github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 h1:C3w9PqII01/Oq1c1nUAm88MOHcQC9l5mIlSMApZMrHA= +github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822/go.mod h1:+n7T8mK8HuQTcFwEeznm/DIxMOiR9yIdICNftLE1DvQ= +github.com/pelletier/go-toml/v2 v2.2.3 h1:YmeHyLY8mFWbdkNWwpr+qIL2bEqT0o95WSdkNHvL12M= +github.com/pelletier/go-toml/v2 v2.2.3/go.mod h1:MfCQTFTvCcUyyvvwm1+G6H/jORL20Xlb6rzQu9GuUkc= +github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 h1:Jamvg5psRIccs7FGNTlIRMkT8wgtp5eCXdBlqhYGL6U= +github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/prometheus/client_golang v1.22.0 h1:rb93p9lokFEsctTys46VnV1kLCDpVZ0a/Y92Vm0Zc6Q= +github.com/prometheus/client_golang v1.22.0/go.mod h1:R7ljNsLXhuQXYZYtw6GAE9AZg8Y7vEW5scdCXrWRXC0= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= +github.com/prometheus/common v0.62.0 h1:xasJaQlnWAeyHdUBeGjXmutelfJHWMRr+Fg4QszZ2Io= +github.com/prometheus/common v0.62.0/go.mod h1:vyBcEuLSvWos9B1+CyL7JZ2up+uFzXhkqml0W5zIY1I= +github.com/prometheus/procfs v0.15.1 h1:YagwOFzUgYfKKHX6Dr+sHT7km/hxC76UB0learggepc= +github.com/prometheus/procfs v0.15.1/go.mod h1:fB45yRUv8NstnjriLhBQLuOUt+WW4BsoGhij/e3PBqk= +github.com/redis/go-redis/v9 v9.10.0 h1:FxwK3eV8p/CQa0Ch276C7u2d0eNC9kCmAYQ7mCXCzVs= +github.com/redis/go-redis/v9 v9.10.0/go.mod h1:huWgSWd8mW6+m0VPhJjSSQ+d6Nh1VICQ6Q5lHuCH/Iw= +github.com/robfig/cron/v3 v3.0.1 h1:WdRxkvbJztn8LMz/QEvLN5sBU+xKpSqwwUO1Pjr4qDs= +github.com/robfig/cron/v3 v3.0.1/go.mod h1:eQICP3HwyT7UooqI/z+Ov+PtYAWygg1TEWWzGIFLtro= +github.com/rogpeppe/go-internal v1.10.0 h1:TMyTOH3F/DB16zRVcYyreMH6GnZZrwQVAoYjRBZyWFQ= +github.com/rogpeppe/go-internal v1.10.0/go.mod h1:UQnix2H7Ngw/k4C5ijL5+65zddjncjaFoBhdsK/akog= +github.com/sagikazarmark/locafero v0.7.0 h1:5MqpDsTGNDhY8sGp0Aowyf0qKsPrhewaLSsFaodPcyo= +github.com/sagikazarmark/locafero v0.7.0/go.mod h1:2za3Cg5rMaTMoG/2Ulr9AwtFaIppKXTRYnozin4aB5k= +github.com/sirupsen/logrus v1.9.3 h1:dueUQJ1C2q9oE3F7wvmSGAaVtTmUizReu6fjN8uqzbQ= +github.com/sirupsen/logrus v1.9.3/go.mod h1:naHLuLoDiP4jHNo9R0sCBMtWGeIprob74mVsIT4qYEQ= +github.com/sourcegraph/conc v0.3.0 h1:OQTbbt6P72L20UqAkXXuLOj79LfEanQ+YQFNpLA9ySo= +github.com/sourcegraph/conc v0.3.0/go.mod h1:Sdozi7LEKbFPqYX2/J+iBAM6HpqSLTASQIKqDmF7Mt0= +github.com/spf13/afero v1.12.0 h1:UcOPyRBYczmFn6yvphxkn9ZEOY65cpwGKb5mL36mrqs= +github.com/spf13/afero v1.12.0/go.mod h1:ZTlWwG4/ahT8W7T0WQ5uYmjI9duaLQGy3Q2OAl4sk/4= +github.com/spf13/cast v1.7.1 h1:cuNEagBQEHWN1FnbGEjCXL2szYEXqfJPbP2HNUaca9Y= +github.com/spf13/cast v1.7.1/go.mod h1:ancEpBxwJDODSW/UG4rDrAqiKolqNNh2DX3mk86cAdo= +github.com/spf13/pflag v1.0.6 h1:jFzHGLGAlb3ruxLB8MhbI6A8+AQX/2eW4qeyNZXNp2o= +github.com/spf13/pflag v1.0.6/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg= +github.com/spf13/viper v1.20.1 h1:ZMi+z/lvLyPSCoNtFCpqjy0S4kPbirhpTMwl8BkW9X4= +github.com/spf13/viper v1.20.1/go.mod h1:P9Mdzt1zoHIG8m2eZQinpiBjo6kCmZSKBClNNqjJvu4= +github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= +github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= +github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA= +github.com/stretchr/testify v1.10.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= +github.com/subosito/gotenv v1.6.0 h1:9NlTDc1FTs4qu0DDq7AEtTPNw6SVm7uBMsUCUjABIf8= +github.com/subosito/gotenv v1.6.0/go.mod h1:Dk4QP5c2W3ibzajGcXpNraDfq2IrhjMIvMSWPKKo0FU= +go.uber.org/atomic v1.9.0 h1:ECmE8Bn/WFTYwEW/bpKD3M8VtR/zQVbavAoalC1PYyE= +go.uber.org/atomic v1.9.0/go.mod h1:fEN4uk6kAWBTFdckzkM89CLk9XfWZrxpCo0nPH17wJc= +go.uber.org/multierr v1.9.0 h1:7fIwc/ZtS0q++VgcfqFDxSBZVv/Xo49/SYnDFupUwlI= +go.uber.org/multierr v1.9.0/go.mod h1:X2jQV1h+kxSjClGpnseKVIxpmcjrj7MNnI0bnlfKTVQ= +golang.org/x/crypto v0.37.0 h1:kJNSjF/Xp7kU0iB2Z+9viTPMW4EqqsrywMXLJOOsXSE= +golang.org/x/crypto v0.37.0/go.mod h1:vg+k43peMZ0pUMhYmVAWysMK35e6ioLh3wB8ZCAfbVc= +golang.org/x/net v0.33.0 h1:74SYHlV8BIgHIFC/LrYkOGIwL19eTYXQ5wc6TBuO36I= +golang.org/x/net v0.33.0/go.mod h1:HXLR5J+9DxmrqMwG9qjGCxZ+zKXxBru04zlTvWlWuN4= +golang.org/x/sync v0.13.0 h1:AauUjRAJ9OSnvULf/ARrrVywoJDy0YS2AwQ98I37610= +golang.org/x/sync v0.13.0/go.mod h1:1dzgHSNfp02xaA81J2MS99Qcpr2w7fw1gpm99rleRqA= +golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.32.0 h1:s77OFDvIQeibCmezSnk/q6iAfkdiQaJi4VzroCFrN20= +golang.org/x/sys v0.32.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k= +golang.org/x/text v0.24.0 h1:dd5Bzh4yt5KYA8f9CJHCP4FB4D51c2c6JvN37xJJkJ0= +golang.org/x/text v0.24.0/go.mod h1:L8rBsPeo2pSS+xqN0d5u2ikmjtmoJbDBT1b7nHvFCdU= +golang.org/x/time v0.8.0 h1:9i3RxcPv3PZnitoVGMPDKZSq1xW1gK1Xy3ArNOGZfEg= +golang.org/x/time v0.8.0/go.mod h1:3BpzKBy/shNhVucY/MWOyx10tF3SFh9QdLuxbVysPQM= +google.golang.org/protobuf v1.36.5 h1:tPhr+woSbjfYvY6/GPufUoYizxw1cF/yFoxJ2fmpwlM= +google.golang.org/protobuf v1.36.5/go.mod h1:9fA7Ob0pmnwhb644+1+CVWFRbNajQ6iRojtC/QF5bRE= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk= +gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q= +gopkg.in/natefinch/lumberjack.v2 v2.2.1 h1:bBRl1b0OH9s/DuPhuXpNl+VtCaJXFZ5/uEFST95x9zc= +gopkg.in/natefinch/lumberjack.v2 v2.2.1/go.mod h1:YD8tP3GAjkrDg1eZH7EGmyESg/lsYskCTPBJVb9jqSc= +gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= +gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +gorm.io/driver/postgres v1.6.0 h1:2dxzU8xJ+ivvqTRph34QX+WrRaJlmfyPqXmoGVjMBa4= +gorm.io/driver/postgres v1.6.0/go.mod h1:vUw0mrGgrTK+uPHEhAdV4sfFELrByKVGnaVRkXDhtWo= +gorm.io/gorm v1.30.0 h1:qbT5aPv1UH8gI99OsRlvDToLxW5zR7FzS9acZDOZcgs= +gorm.io/gorm v1.30.0/go.mod h1:8Z33v652h4//uMA76KjeDH8mJXPm1QNCYrMeatR0DOE= diff --git a/internal/config/config.go b/internal/config/config.go new file mode 100644 index 0000000..b9a4cb1 --- /dev/null +++ b/internal/config/config.go @@ -0,0 +1,75 @@ +package config + +import ( + "fmt" + "os" + "time" + + "github.com/spf13/viper" +) + +// Config almacena las configuraciones globales +type Config struct { + DBHost string `mapstructure:"DB_HOST"` + DBPort int `mapstructure:"DB_PORT"` + DBUser string `mapstructure:"DB_USER"` + DBPassword string `mapstructure:"DB_PASSWORD"` + DBName string `mapstructure:"DB_NAME"` + DBMaxOpenConns int `mapstructure:"DB_MAX_OPEN_CONNS"` + DBMaxIdleConns int `mapstructure:"DB_MAX_IDLE_CONNS"` + DBConnMaxLifetime time.Duration `mapstructure:"DB_CONN_MAX_LIFETIME"` + + // Redis + RedisHost string `mapstructure:"REDIS_HOST"` + RedisPort int `mapstructure:"REDIS_PORT"` + RedisPassword string `mapstructure:"REDIS_PASSWORD"` + RedisDB int `mapstructure:"REDIS_DB"` + RedisTTL time.Duration `mapstructure:"REDIS_TTL"` // tiempo de vida por defecto de claves + RedisSubscribe string `mapstructure:"REDIS_SUBSCRIBE"` + + LogFilePath string `mapstructure:"LOG_FILE_PATH"` + LogLevel string `mapstructure:"LOG_LEVEL"` + LogMaxSize int `mapstructure:"LOG_MAX_SIZE"` + LogMaxBackups int `mapstructure:"LOG_MAX_BACKUPS"` + LogMaxAge int `mapstructure:"LOG_MAX_AGE"` + LogCompress bool `mapstructure:"LOG_COMPRESS"` + Environment string `mapstructure:"ENVIRONMENT"` + + WhereUnitsBusiness string `mapstructure:"WHERE_UNITS_BUSINESS"` + ElasticURL string `mapstructure:"ELASTIC_URL"` + ElasticEnabled bool `mapstructure:"ELASTIC_ENABLED"` + + TimeoutSeconds int `mapstructure:"TIMEOUT_SECONDS"` + RetryCount int `mapstructure:"RETRY_COUNT"` + TLSSkipVerify bool `mapstructure:"TLS_SKIP_VERIFY"` + LogRequests bool `mapstructure:"LOG_REQUESTS"` + EnableDebug bool `mapstructure:"ENABLE_DEBUG"` +} + +var GlobalConfig *Config + +// LoadConfig carga las variables de entorno usando viper +func LoadConfig() (*Config, error) { + viper.SetConfigName(".env") + viper.SetConfigType("env") + viper.AddConfigPath(".") + viper.AutomaticEnv() + + if err := viper.ReadInConfig(); err != nil { + fmt.Println("⚠️ No se pudo leer el archivo .env, usando variables de entorno del sistema") + } + + var config Config + if err := viper.Unmarshal(&config); err != nil { + return nil, err + } + GlobalConfig = &config + + // --- 👇 **clave**: exportar ENCRYPTION_KEY al entorno del proceso --- + if k := viper.GetString("ENCRYPTION_KEY"); k != "" { + _ = os.Setenv("ENCRYPTION_KEY", k) + } + + fmt.Println("✅ Configuración .env cargada correctamente.") + return &config, nil +} diff --git a/internal/config/database.go b/internal/config/database.go new file mode 100644 index 0000000..83ff740 --- /dev/null +++ b/internal/config/database.go @@ -0,0 +1,63 @@ +package config + +import ( + "fmt" + "log" + "sync" + "time" + + "gorm.io/driver/postgres" + "gorm.io/gorm" + "gorm.io/gorm/logger" +) + +var ( + db *gorm.DB + once sync.Once + dbErr error +) + +// GetDB retorna la conexión a la base de datos +func GetDatabaseConnection(cfg *Config) *gorm.DB { + once.Do(func() { + dsn := fmt.Sprintf( + "host=%s port=%d user=%s password=%s dbname=%s sslmode=disable", + cfg.DBHost, cfg.DBPort, cfg.DBUser, cfg.DBPassword, cfg.DBName, + ) + + // Reintentos automáticos + maxRetries := 3 + for i := 0; i < maxRetries; i++ { + db, dbErr = gorm.Open(postgres.Open(dsn), &gorm.Config{ + Logger: logger.Default.LogMode(logger.Silent), + }) + if dbErr == nil { + break + } + log.Printf("⚠️ Intento %d de conexión fallido: %v", i+1, dbErr) + time.Sleep(2 * time.Second) + } + if dbErr != nil { + log.Fatalf("❌ No se pudo conectar a la BD después de varios intentos: %v", dbErr) + } + + // Configuración del pool + sqlDB, err := db.DB() + if err != nil { + log.Fatalf("❌ Error al obtener objeto SQL: %v", err) + } + + // Validación inmediata + if err := sqlDB.Ping(); err != nil { + log.Fatalf("❌ Error al hacer ping a la BD: %v", err) + } + + sqlDB.SetMaxOpenConns(cfg.DBMaxOpenConns) // Conexiones máximas + sqlDB.SetMaxIdleConns(cfg.DBMaxIdleConns) // Conexiones inactivas permitidas + sqlDB.SetConnMaxLifetime(cfg.DBConnMaxLifetime * time.Minute) // Tiempo máximo de vida + + log.Println("✅ Conexión a la BD establecida correctamente") + }) + + return db +} diff --git a/internal/config/keys.go b/internal/config/keys.go new file mode 100644 index 0000000..588c558 --- /dev/null +++ b/internal/config/keys.go @@ -0,0 +1,7 @@ +package config + +const ( + RestConfig = "parametros:rest_config" + RestLogin = "parametros:rest_login" + CronConfig = "parametros:cron_config" +) diff --git a/internal/config/logger.go b/internal/config/logger.go new file mode 100644 index 0000000..635a85e --- /dev/null +++ b/internal/config/logger.go @@ -0,0 +1,70 @@ +package config + +import ( + "fmt" + "io" + "os" + "path/filepath" + "runtime" + "strings" + "time" + + "github.com/elastic/go-elasticsearch" + "github.com/sirupsen/logrus" + "github.com/tuusuario/go-sync-service/elastic" + "gopkg.in/natefinch/lumberjack.v2" +) + +// Log instancia global del logger +var Log = logrus.New() + +func InitLogger(cfg *Config) { + + // Configurar rotación de logs con Lumberjack + rotator := &lumberjack.Logger{ + Filename: cfg.LogFilePath, // Archivo de logs + MaxSize: cfg.LogMaxSize, // Máximo tamaño en MB antes de rotar + MaxBackups: cfg.LogMaxBackups, // Máximo número de archivos de respaldo + MaxAge: cfg.LogMaxAge, // Máximo número de días para conservar logs + Compress: cfg.LogCompress, // Comprimir logs antiguos + } + + // Configurar Logrus para escribir en el archivo rotado + Log.SetOutput(io.MultiWriter(os.Stdout, rotator)) + Log.SetReportCaller(true) // 👈 esto agrega archivo y línea + + // Formato JSON con timestamp + /*Log.SetFormatter(&logrus.JSONFormatter{ + TimestampFormat: time.RFC3339, // Formato ISO 8601 + })*/ + + Log.SetFormatter(&logrus.JSONFormatter{ + TimestampFormat: time.RFC3339, + CallerPrettyfier: func(f *runtime.Frame) (function string, file string) { + // Extrae solo nombre del archivo y línea + fnParts := strings.Split(f.Function, "/") + return fnParts[len(fnParts)-1], fmt.Sprintf("%s:%d", filepath.Base(f.File), f.Line) + }, + }) + + // Configurar nivel de logging (DEBUG, INFO, ERROR, etc.) + level, err := logrus.ParseLevel(cfg.LogLevel) + if err != nil { + level = logrus.InfoLevel + } + Log.SetLevel(level) + + //elastic + if cfg.ElasticEnabled { + Log.Debug("✅ Elasticsearch enabled") + es, err := elasticsearch.NewClient(elasticsearch.Config{ + Addresses: []string{cfg.ElasticURL}, + }) + if err == nil { + hook := elastic.NewElasticHook(es, "go-sync-service") + Log.AddHook(hook) + } else { + Log.Error("No se pudo conectar a Elasticsearch: ", err) + } + } +} diff --git a/internal/config/redis.go b/internal/config/redis.go new file mode 100644 index 0000000..18e9149 --- /dev/null +++ b/internal/config/redis.go @@ -0,0 +1,30 @@ +package config + +import ( + "context" + "fmt" + "log" + "time" + + "github.com/redis/go-redis/v9" +) + +func GetRedisClient(cfg *Config) *redis.Client { + addr := fmt.Sprintf("%s:%d", cfg.RedisHost, cfg.RedisPort) + + client := redis.NewClient(&redis.Options{ + Addr: addr, + Password: cfg.RedisPassword, + DB: cfg.RedisDB, + }) + + ctx, cancel := context.WithTimeout(context.Background(), 3*time.Second) + defer cancel() + + _, err := client.Ping(ctx).Result() + if err != nil { + log.Fatalf("❌ Redis connection failed: %v", err) + } + + return client +} diff --git a/internal/config/redis_manager.go b/internal/config/redis_manager.go new file mode 100644 index 0000000..5d82b11 --- /dev/null +++ b/internal/config/redis_manager.go @@ -0,0 +1,40 @@ +package config + +import ( + "context" + "fmt" + "log" + "time" + + "github.com/redis/go-redis/v9" +) + +type RedisManager struct { + redis *redis.Client +} + +func NewRedisManager(redis *redis.Client) *RedisManager { + return &RedisManager{ + redis: redis, + } +} + +func (pm *RedisManager) GetRawValue(ctx context.Context, codigo string) (string, error) { + + val, err := pm.redis.Get(ctx, codigo).Result() + if err == redis.Nil { + return "", fmt.Errorf("clave no encontrada en Redis: %s", codigo) + } else if err != nil { + return "", err + } + return val, nil +} + +func (pm *RedisManager) UpdateParam(ctx context.Context, codigo string, nuevoValor string, expiration time.Duration) error { + err := pm.redis.Set(ctx, codigo, nuevoValor, expiration).Err() + if err != nil { + return fmt.Errorf("error actualizando parámetro en Redis [%s]: %w", codigo, err) + } + log.Printf("🔄 Parámetro actualizado en Redis: %s = %s", codigo, nuevoValor) + return nil +} diff --git a/internal/config/redis_provider.go b/internal/config/redis_provider.go new file mode 100644 index 0000000..c1dbaa0 --- /dev/null +++ b/internal/config/redis_provider.go @@ -0,0 +1,37 @@ +package config + +import ( + "context" + "strconv" + "time" + + "github.com/tuusuario/go-sync-service/internal/domain/ports" +) + +type RedisProvider struct { + ParamManager *RedisManager + Ctx context.Context +} + +// UpdateParamInRedis implements ports.RedisConfigProvider. +func (p *RedisProvider) UpdateParam(key string, value string, expiration time.Duration) error { + return p.ParamManager.UpdateParam(p.Ctx, key, value, expiration) +} + +func NewRedisProvider(pm *RedisManager, ctx context.Context) ports.RedisConfigProvider { + return &RedisProvider{ParamManager: pm, Ctx: ctx} +} + +func (p *RedisProvider) GetString(key string) (string, error) { + return p.ParamManager.GetRawValue(p.Ctx, key) +} + +// GetInt64 retrieves an int64 configuration value from Redis, given its key. +// It returns 0 and an error if the key is not found in Redis. +func (p *RedisProvider) GetInt64(key string) (int64, error) { + val, err := p.ParamManager.GetRawValue(p.Ctx, key) + if err != nil { + return 0, err + } + return strconv.ParseInt(val, 10, 64) +} diff --git a/internal/db/operaciones.go b/internal/db/operaciones.go new file mode 100644 index 0000000..549237c --- /dev/null +++ b/internal/db/operaciones.go @@ -0,0 +1,379 @@ +package db + +import ( + "fmt" + "regexp" + "strconv" + "strings" + "time" + + "github.com/tuusuario/go-sync-service/internal/config" + "github.com/tuusuario/go-sync-service/internal/domain/dto" + "github.com/tuusuario/go-sync-service/internal/domain/model" + "gorm.io/gorm" + "gorm.io/gorm/clause" +) + +type GormDatabase struct { + db *gorm.DB +} + +func NewGormDatabase(db *gorm.DB) *GormDatabase { + return &GormDatabase{db: db} +} + +func (g *GormDatabase) SyncRows(persistencia dto.Persistencia, rawData *[]map[string]interface{}, company_db string) error { + logPrefix := fmt.Sprintf("[🧹 Tabla: %s] ", persistencia.Table) + config.Log.Println(logPrefix + " ✅ Inicializacion Syncing data...") + + now := time.Now() + batchSize := persistencia.BatchSize + if batchSize <= 0 { + batchSize = 100 + } + + batch := make([]map[string]interface{}, 0, batchSize) + + for i, item := range *rawData { + record := map[string]interface{}{ + persistencia.CampoSync: now, + } + + // Copia de campos mapeados (con soporte a "a.b.c", "array[0].campo", "array[-1].campo", "array[].campo") + for column, jsonPath := range persistencia.Fields { + val := getNestedValue(item, jsonPath) + record[column] = val + } + + // Campos estáticos + for k, v := range persistencia.StaticFields { + record[k] = v + } + + // Forzar columnas a string si fue configurado + normalizeTypes(record, persistencia.StringifyFields) + + // ========== NUEVO: construir PK compuesta si está configurada ========== + if persistencia.PrimaryKeyName != "" && len(persistencia.PrimaryKeyConcat) > 0 { + if key, ok := buildCompositeKey(record, company_db, persistencia.PrimaryKeyConcat, persistencia.PrimaryKeySeparator); ok { + record[persistencia.PrimaryKeyName] = key + } + } + + batch = append(batch, record) + + // Procesar lote + if len(batch) == batchSize || i == len(*rawData)-1 { + config.Log.Debugf(logPrefix+" Procesando batch de %d registros", len(batch)) + + if len(persistencia.UpdateBy) > 0 { + // Updates con múltiples campos + for _, row := range batch { + var whereParts []string + var whereValues []interface{} + + for campoTabla, campoServicio := range persistencia.UpdateBy { + val, ok := row[campoServicio] + if !ok || val == nil { + continue + } + whereParts = append(whereParts, fmt.Sprintf("%s = ?", campoTabla)) + whereValues = append(whereValues, val) + } + if len(whereParts) < len(persistencia.UpdateBy) { + config.Log.Warnf("⚠️ Registro incompleto para update (faltan claves): %+v", row) + continue + } + + // Copia sin campos clave + updateData := make(map[string]interface{}) + for k, v := range row { + skip := false + for campoTabla := range persistencia.UpdateBy { + if k == campoTabla { + skip = true + break + } + } + if !skip { + updateData[k] = v + } + } + + res := g.db.Table(persistencia.Table). + Where(strings.Join(whereParts, " AND "), whereValues...). + Updates(updateData) + + if res.Error != nil { + config.Log.Errorf("%s ❌ Error en update: %v", logPrefix, res.Error) + return res.Error + } + if res.RowsAffected == 0 { + config.Log.Warnf("%s ⚠️ Ninguna fila afectada con campos: %v valores: %v", + logPrefix, strings.Join(whereParts, " AND "), printWhereValues(whereValues)) + } + } + } else { + // Inserts con conflicto por PK (UPSERT) + cols := unionColumnList(batch) // union de columnas del lote + + // Elegir PK: si hay compuesta (calculada), úsala; si no, usa PrimaryKey + pkName := persistencia.PrimaryKey + if persistencia.PrimaryKeyName != "" && len(persistencia.PrimaryKeyConcat) > 0 { + pkName = persistencia.PrimaryKeyName + } + + err := g.db.Table(persistencia.Table). + Clauses(clause.OnConflict{ + Columns: []clause.Column{{Name: pkName}}, + DoUpdates: clause.AssignmentColumns(cols), + }). + Create(&batch).Error + + if err != nil { + config.Log.Errorf("%s ❌ Error en batch insert: %v", logPrefix, err) + return err + } + } + batch = batch[:0] + } + } + + if persistencia.Eliminacion.Enabled { + err := g.db.Table(persistencia.Table). + Where(persistencia.Eliminacion.Field+" < ?", now). + Delete(nil).Error + if err != nil { + config.Log.Printf(logPrefix+"❌ Error eliminando obsoletos: %+v", err) + return err + } + } + + config.Log.Println(logPrefix + " ✅ Finalizacion Syncing data...") + return nil +} + +func unionColumnList(batch []map[string]interface{}) []string { + set := map[string]struct{}{} + for _, r := range batch { + for k := range r { + set[k] = struct{}{} + } + } + cols := make([]string, 0, len(set)) + for k := range set { + cols = append(cols, k) + } + return cols +} + +func (g *GormDatabase) GetCredencialesFromTemplate(whereTemplate string, variables map[string]interface{}) (*model.CredencialesSAP, error) { + var cred model.CredencialesSAP + + query := whereTemplate + var args []interface{} + + config.Log.Debugf("🔎 Variables recibidas:") + for k, v := range variables { + placeholder := "@" + k + query = strings.ReplaceAll(query, placeholder, "?") + args = append(args, v) + config.Log.Debugf(" %s = %v", k, v) + } + + config.Log.Debugf("📝 Consulta final construida:") + config.Log.Debugf(" Query: %s", query) + config.Log.Debugf(" Args: %v", args) + + err := g.db.Where(query, args...).First(&cred).Error + return &cred, err +} + +func printWhereValues(whereValues []interface{}) string { + if len(whereValues) == 0 { + return "" + } + var b strings.Builder + b.WriteString(fmt.Sprintf("%v", whereValues[0])) + for i := 1; i < len(whereValues); i++ { + b.WriteString(", ") + b.WriteString(fmt.Sprintf("%v", whereValues[i])) + } + return b.String() +} + +// ===== Soporte de índices [n], [-1] y [] en rutas ===== + +var idxRe = regexp.MustCompile(`^([^\[\]]+)(?:\[(\-?\d*)\])?$`) + +// toIfaceSlice intenta ver el valor como slice de interfaces +func toIfaceSlice(v interface{}) ([]interface{}, bool) { + switch s := v.(type) { + case []interface{}: + return s, true + case []map[string]interface{}: + out := make([]interface{}, len(s)) + for i := range s { + out[i] = s[i] + } + return out, true + default: + return nil, false + } +} + +// getNestedValue con soporte para "contacts[0].field", "contacts[-1].field", "contacts[].field" +func getNestedValue(data map[string]interface{}, path string) interface{} { + if path == "" { + return nil + } + parts := strings.Split(path, ".") + var current interface{} = data + + for _, part := range parts { + // parsea nombre + índice opcional + m := idxRe.FindStringSubmatch(part) + if len(m) == 0 { + return nil + } + key := m[1] + idxStr := m[2] // "", "0", "1", "-1", ... + + // paso de mapa (key) + mp, ok := current.(map[string]interface{}) + if !ok { + return nil + } + var exists bool + current, exists = mp[key] + if !exists { + return nil + } + + // si hay índice (o "[]"), tratar como slice + if idxStr != "" || strings.HasSuffix(part, "[]") { + arr, ok := toIfaceSlice(current) + if !ok || len(arr) == 0 { + return nil + } + + var idx int + if idxStr == "" { + // "[]" -> primero + idx = 0 + } else { + n, err := strconv.Atoi(idxStr) + if err != nil { + return nil + } + if n < 0 { + n = len(arr) + n // -1 => último + } + idx = n + } + + if idx < 0 || idx >= len(arr) { + return nil + } + current = arr[idx] + } + } + return current +} + +// ===== NUEVO: helper para clave compuesta ===== +func buildCompositeKey(row map[string]interface{}, companyDB string, concat []string, sep string) (string, bool) { + if len(concat) == 0 { + return "", false + } + if sep == "" { + sep = ":" + } + parts := make([]string, 0, len(concat)) + for _, item := range concat { + if strings.HasPrefix(item, "@") { // tokens especiales + token := strings.TrimPrefix(item, "@") + switch { + case token == "company_db": + parts = append(parts, companyDB) + case strings.HasPrefix(token, "literal="): + parts = append(parts, strings.TrimPrefix(token, "literal=")) + default: + // Token desconocido -> vacío (o puedes return false para forzar) + parts = append(parts, "") + } + continue + } + // tomar del row (columna ya mapeada en record) + parts = append(parts, toString(row[item])) + } + return strings.Join(parts, sep), true +} + +// ===== Normalización de tipos ===== +func normalizeTypes(m map[string]interface{}, stringifyFields []string) { + if len(stringifyFields) == 0 { + return + } + sf := make(map[string]struct{}, len(stringifyFields)) + for _, f := range stringifyFields { + sf[f] = struct{}{} + } + for k, v := range m { + if v == nil { + continue + } + if _, ok := sf[k]; ok { + m[k] = toString(v) + } + } +} + +// ===== Casteo genérico a string ===== +func toString(v interface{}) string { + switch t := v.(type) { + case string: + return t + case fmt.Stringer: + return t.String() + case float64: + if t == float64(int64(t)) { + return fmt.Sprintf("%d", int64(t)) + } + return fmt.Sprintf("%v", t) + case float32: + if t == float32(int64(t)) { + return fmt.Sprintf("%d", int64(t)) + } + return fmt.Sprintf("%v", t) + case int: + return fmt.Sprintf("%d", t) + case int8: + return fmt.Sprintf("%d", t) + case int16: + return fmt.Sprintf("%d", t) + case int32: + return fmt.Sprintf("%d", t) + case int64: + return fmt.Sprintf("%d", t) + case uint: + return fmt.Sprintf("%d", t) + case uint8: + return fmt.Sprintf("%d", t) + case uint16: + return fmt.Sprintf("%d", t) + case uint32: + return fmt.Sprintf("%d", t) + case uint64: + return fmt.Sprintf("%d", t) + case bool: + if t { + return "true" + } + return "false" + case time.Time: + return t.Format(time.RFC3339) + default: + return fmt.Sprintf("%v", t) + } +} diff --git a/internal/domain/dto/cron.go b/internal/domain/dto/cron.go new file mode 100644 index 0000000..323c93a --- /dev/null +++ b/internal/domain/dto/cron.go @@ -0,0 +1,22 @@ +package dto + +type CronConfigList struct { + Crons []CronJob `json:"crons"` +} + +type CronJob struct { + Nombre string `json:"nombre"` + UnidadNegocio UnidadNegocio `json:"unidad_negocio"` + Configuracion ConfiguracionCron `json:"configuracion"` +} + +type UnidadNegocio struct { + CompanyName string `json:"company_name"` + CompanyDB string `json:"company_db"` +} + +type ConfiguracionCron struct { + Ejecucion string `json:"ejecucion"` // Ej: "@every 2m" + Proceso []string `json:"proceso"` // Lista de claves para otras configuraciones + Enabled bool `json:"enabled"` +} diff --git a/internal/domain/dto/servicio.go b/internal/domain/dto/servicio.go new file mode 100644 index 0000000..541a631 --- /dev/null +++ b/internal/domain/dto/servicio.go @@ -0,0 +1,69 @@ +package dto + +type JobConfig struct { + Auth ServiceConfig `json:"auth,omitempty"` + Service ServiceConfig `json:"service,omitempty"` + Persistencia Persistencia `json:"persistencia,omitempty"` +} + +type ServiceConfig struct { + GQL bool `json:"gql,omitempty"` + Method string `json:"method"` + Path string `json:"path"` + Headers map[string]string `json:"headers"` + Rest *RestOptions `json:"rest,omitempty"` + GraphQL *GraphQLOptions `json:"graphql,omitempty"` +} + +type RestOptions struct { + Body any `json:"body"` + Query map[string]string `json:"query"` + Pagination *RestPagination `json:"pagination,omitempty"` +} + +type RestPagination struct { + Enabled bool `json:"enabled"` + Skip int `json:"skip"` + Top int `json:"top"` +} + +type GraphQLOptions struct { + Query string `json:"query"` + RootField string `json:"root_field"` + RowField string `json:"row_field"` + Variables map[string]interface{} `json:"variables"` + Pagination *GraphQLPagination `json:"pagination"` +} + +type GraphQLPagination struct { + Enabled bool `json:"enabled"` + CursorField string `json:"cursorField"` + HasNextField string `json:"hasNextField"` + LimitField string `json:"limitField"` + CursorParam string `json:"cursorParam"` +} + +type Persistencia struct { + Table string `json:"table"` + BatchSize int `json:"batch_size"` + CampoSync string `json:"campo_sync"` + PrimaryKey string `json:"primary_key"` + Fields map[string]string `json:"fields"` + StaticFields map[string]interface{} `json:"static_fields"` + UpdateBy map[string]string `json:"update_by"` + Eliminacion struct { + Field string `json:"field"` + Enabled bool `json:"enabled"` + } `json:"soft_delete"` + StringifyFields []string `json:"stringify_fields"` + + // 👇 NUEVO: clave compuesta precomputada + PrimaryKeyName string `json:"primary_key_name"` // p.ej. "pk_redis" + PrimaryKeyConcat []string `json:"primary_key_concat"` // p.ej. ["@company_db","card_code"] + PrimaryKeySeparator string `json:"primary_key_separator"` // p.ej. ":" +} + +type Eliminacion struct { + Field string `json:"field"` + Enabled bool `json:"enabled"` +} diff --git a/internal/domain/dto/session.go b/internal/domain/dto/session.go new file mode 100644 index 0000000..ed082eb --- /dev/null +++ b/internal/domain/dto/session.go @@ -0,0 +1,9 @@ +package dto + +import "time" + +type SessionData struct { + SessionId string `json:"session_id"` + ExpiresAt time.Time `json:"expires_at"` + EndPoint string `json:"end_point"` +} diff --git a/internal/domain/model/credencial_sap.go b/internal/domain/model/credencial_sap.go new file mode 100644 index 0000000..4e699b0 --- /dev/null +++ b/internal/domain/model/credencial_sap.go @@ -0,0 +1,24 @@ +package model + +import "time" + +type CredencialesSAP struct { + ID int `gorm:"column:id;primaryKey;autoIncrement"` + SerieSAP string `gorm:"column:serie_sap"` + CompanyName string `gorm:"column:company_name"` + BranchID int `gorm:"column:branch_id"` + CompanyDB string `gorm:"column:company_db"` + UserName string `gorm:"column:user_name"` + Password string `gorm:"column:password"` // ⚠️ Considera cifrar si es necesario + Status string `gorm:"column:status"` // Ej: 'A' activo, 'I' inactivo + + UserCreated string `gorm:"column:user_created"` + DateCreated time.Time `gorm:"column:date_created"` + UserUpdated string `gorm:"column:user_updated"` + DateUpdated time.Time `gorm:"column:date_updated"` + EndPoint string `gorm:"column:end_point"` +} + +func (CredencialesSAP) TableName() string { + return "business_units" +} diff --git a/internal/domain/ports/database_port.go b/internal/domain/ports/database_port.go new file mode 100644 index 0000000..bd47aa6 --- /dev/null +++ b/internal/domain/ports/database_port.go @@ -0,0 +1,12 @@ +package ports + +import ( + "github.com/tuusuario/go-sync-service/internal/domain/dto" + "github.com/tuusuario/go-sync-service/internal/domain/model" +) + +type Database interface { + SyncRows(persistencia dto.Persistencia, data *[]map[string]interface{}, company_db string) error + //GetByTemplate(filterKey string, variables map[string]interface{}) (any, error) + GetCredencialesFromTemplate(whereTemplate string, variables map[string]interface{}) (*model.CredencialesSAP, error) +} diff --git a/internal/domain/ports/redis_provider_port.go b/internal/domain/ports/redis_provider_port.go new file mode 100644 index 0000000..435c1bd --- /dev/null +++ b/internal/domain/ports/redis_provider_port.go @@ -0,0 +1,11 @@ +package ports + +import ( + "time" +) + +type RedisConfigProvider interface { + GetString(key string) (string, error) + GetInt64(key string) (int64, error) + UpdateParam(key string, value string, expiration time.Duration) error +} diff --git a/internal/domain/ports/scheduler_port.go b/internal/domain/ports/scheduler_port.go new file mode 100644 index 0000000..7e2d26f --- /dev/null +++ b/internal/domain/ports/scheduler_port.go @@ -0,0 +1,7 @@ +package ports + +type Scheduler interface { + Start() + Stop() + Reload() error +} diff --git a/internal/domain/ports/session_port.go b/internal/domain/ports/session_port.go new file mode 100644 index 0000000..d272a49 --- /dev/null +++ b/internal/domain/ports/session_port.go @@ -0,0 +1,5 @@ +package ports + +type SessionProvider interface { + GetSession(endpoint, user, password, company string) (string, error) +} diff --git a/internal/http/client.go b/internal/http/client.go new file mode 100644 index 0000000..7d37261 --- /dev/null +++ b/internal/http/client.go @@ -0,0 +1,55 @@ +package http + +import ( + "crypto/tls" + "sync" + "time" + + "github.com/go-resty/resty/v2" + "github.com/tuusuario/go-sync-service/internal/config" +) + +var ( + clientInstance *resty.Client + once sync.Once +) + +func InitClient() { + //Inicializacion del client + once.Do(func() { + client := resty.New(). + SetTimeout(time.Duration(config.GlobalConfig.TimeoutSeconds) * time.Second) + client.SetTLSClientConfig(&tls.Config{InsecureSkipVerify: config.GlobalConfig.TLSSkipVerify}) + + if config.GlobalConfig.LogRequests { + var start time.Time // 👈 aquí declaramos la variable de tiempo + + client.OnBeforeRequest(func(c *resty.Client, r *resty.Request) error { + start = time.Now() + config.Log.Printf("➡️ Request: %s %s\nHeaders: %v\nBody: %v\n", + r.Method, r.URL, r.Header, r.Body) + return nil + }) + + client.OnAfterResponse(func(c *resty.Client, r *resty.Response) error { + duration := time.Since(start) + config.Log.Printf("⬅️ Response: %s %s | Status: %d | Duration: %s\nHeaders: %v\nBody: %s\n", + r.Request.Method, r.Request.URL, r.StatusCode(), duration, + r.Header(), r.String()) + return nil + }) + } + + client.SetDebug(config.GlobalConfig.EnableDebug) + + config.Log.Printf("🚀 Inicializando Resty client...") + clientInstance = client + }) +} + +func GetClient() *resty.Client { + if clientInstance == nil { + panic("❌ Resty client no inicializado. Llama a InitClient primero.") + } + return clientInstance +} diff --git a/internal/http/sendrequest.go b/internal/http/sendrequest.go new file mode 100644 index 0000000..894b5c1 --- /dev/null +++ b/internal/http/sendrequest.go @@ -0,0 +1,66 @@ +package http + +import ( + "errors" + "fmt" + + "github.com/go-resty/resty/v2" + "github.com/tuusuario/go-sync-service/internal/config" + "github.com/tuusuario/go-sync-service/internal/domain/dto" +) + +func SendRequest(host string, opts dto.ServiceConfig) (*resty.Response, error) { + client := GetClient() + req := client.R() + + // Establecer encabezados + for k, v := range opts.Headers { + req.SetHeader(k, v) + } + + // Construir la URL completa + if host == "" { + return nil, errors.New("el host no puede estar vacío") + } + if opts.Path == "" { + return nil, errors.New("el path no puede estar vacío") + } + url := fmt.Sprintf("%s%s", host, opts.Path) + req.SetHeader("Content-Type", "application/json") + + // Si es GraphQL + if opts.GraphQL != nil { + payload := map[string]interface{}{ + "query": opts.GraphQL.Query, + "variables": opts.GraphQL.Variables, + } + + req.SetBody(payload) + return req.Post(url) + } + + // Si es REST + if opts.Rest != nil { + if opts.Rest.Query != nil { + req.SetQueryParams(opts.Rest.Query) + } + if opts.Rest.Body != nil { + req.SetBody(opts.Rest.Body) + config.Log.Println("📦 Body:", opts.Rest.Body) + } + } + + // Método HTTP + switch opts.Method { + case "GET": + return req.Get(url) + case "POST": + return req.Post(url) + case "PUT": + return req.Put(url) + case "DELETE": + return req.Delete(url) + default: + return nil, fmt.Errorf("método HTTP no soportado: %s", opts.Method) + } +} diff --git a/internal/http/session.go b/internal/http/session.go new file mode 100644 index 0000000..6c1893b --- /dev/null +++ b/internal/http/session.go @@ -0,0 +1,153 @@ +package http + +import ( + "encoding/json" + "fmt" // NEW + "sync" + "time" + + "github.com/tuusuario/go-sync-service/internal/config" + "github.com/tuusuario/go-sync-service/internal/domain/dto" + "github.com/tuusuario/go-sync-service/internal/domain/model" + "github.com/tuusuario/go-sync-service/internal/domain/ports" + "github.com/tuusuario/go-sync-service/internal/security" +) + +var ( + redisKey = "session:SAP" + mutex sync.Mutex +) + +type SAPSessionProvider struct{} + +func GetSession(cfg ports.RedisConfigProvider, job dto.CronJob, auth dto.ServiceConfig, dbcore ports.Database, logPrefix string) (*dto.SessionData, error) { + mutex.Lock() + defer mutex.Unlock() + redisKey = "session:" + job.UnidadNegocio.CompanyName + ":" + job.UnidadNegocio.CompanyDB + + if sess, err := loadSessionFromRedis(cfg, logPrefix); err == nil && time.Now().Before(sess.ExpiresAt) { + config.Log.Printf("%v 🔑 Sesión obtenida de Redis %v", logPrefix, redisKey) + return sess, nil + } + + parametros := map[string]interface{}{ + "company_name": job.UnidadNegocio.CompanyName, + "company_db": job.UnidadNegocio.CompanyDB, + } + + credencial, err := dbcore.GetCredencialesFromTemplate(config.GlobalConfig.WhereUnitsBusiness, parametros) + if err != nil { + config.Log.Printf("%v ❌ Error al obtener credenciales: %v", logPrefix, err) + return nil, err + } + + // ============================== + // DESCIFRAR PASSWORD (AES-GCM) + // ============================== + key, err := security.LoadEncryptionKey() + if err != nil { + return nil, fmt.Errorf("%s %v", logPrefix, err) + } + // Suponemos que credencial.Password viene como base64(nonce||cipher) generado por EncryptAESGCM + plainPass, err := security.DecryptAESGCM(credencial.Password, key) + if err != nil { + config.Log.Printf("%v ❌ Error al descifrar password: %v", logPrefix, err) + return nil, err + } + credencial.Password = plainPass + + // No loguees secretos. Si necesitas log, hazlo sin password: + config.Log.Debugf("%v Obteniendo credenciales para CompanyDB=%s UserName=%s (password oculto)", + logPrefix, credencial.CompanyDB, credencial.UserName) + + config.Log.Printf("%v 🔑 Realizando login...", logPrefix) + + mySession := &dto.SessionData{EndPoint: credencial.EndPoint} + + if auth.Rest == nil { + auth.Rest = &dto.RestOptions{} + } + + // 3. Preparar el body del login (usa cred.Password en claro ya descifrado) + auth = prepareAuthBody(auth, credencial, logPrefix) + + config.Log.Debugf(" %v Url: %v + %v", logPrefix, credencial.EndPoint, auth.Path) + resp, err := SendRequest(credencial.EndPoint, auth) + if err != nil || resp.IsError() { + config.Log.Printf("%v ❌ Error al autenticar: %v", logPrefix, err) + return nil, err + } + + if auth.GQL { + var dataGraphql struct { + Token string `json:"token"` + RefreshToken string `json:"refresh_token"` + } + if err := json.Unmarshal(resp.Body(), &dataGraphql); err != nil { + config.Log.Printf("%v ❌ Error al parsear sesión graphql: %v", logPrefix, err) + return nil, err + } + mySession.SessionId = dataGraphql.Token + mySession.ExpiresAt = time.Now().Add(10 * time.Minute) + } else { + var dataRest struct { + SessionId string `json:"SessionId"` + SessionTimeout int `json:"SessionTimeout"` + } + if err := json.Unmarshal(resp.Body(), &dataRest); err != nil { + config.Log.Printf("%v ❌ Error al parsear sesión rest: %v", logPrefix, err) + return nil, err + } + mySession.SessionId = dataRest.SessionId + mySession.ExpiresAt = time.Now().Add(time.Duration(dataRest.SessionTimeout) * time.Minute) + } + + config.Log.Printf("%v ✅ Sesión obtenida", logPrefix) + saveSessionToRedis(mySession, cfg, logPrefix) + return mySession, nil +} + +func loadSessionFromRedis(cfg ports.RedisConfigProvider, logPrefix string) (*dto.SessionData, error) { + raw, err := cfg.GetString(redisKey) + if err != nil { + config.Log.Printf("%v ⚠️ No se pudo obtener sesión de Redis: %v", logPrefix, err) + return nil, err + } + var sess dto.SessionData + if err := json.Unmarshal([]byte(raw), &sess); err != nil { + config.Log.Printf("%v ⚠️ No se pudo parsear sesión de Redis: %v", logPrefix, err.Error()) + return nil, err + } + return &sess, nil +} + +func saveSessionToRedis(sess *dto.SessionData, cfg ports.RedisConfigProvider, logPrefix string) { + data, _ := json.Marshal(sess) + ttl := time.Until(sess.ExpiresAt) + err := cfg.UpdateParam(redisKey, string(data), ttl) + if err != nil { + config.Log.Printf("%v ⚠️ No se pudo guardar sesión en Redis: %v", logPrefix, err) + } +} + +func prepareAuthBody(auth dto.ServiceConfig, cred *model.CredencialesSAP, logPrefix string) dto.ServiceConfig { + if auth.Rest == nil { + auth.Rest = &dto.RestOptions{} + } + + if auth.GQL { + config.Log.Debugf("%v 🧠 Preparando auth para GraphQL", logPrefix) + auth.Rest.Body = map[string]string{ + "username": cred.UserName, + "password": cred.Password, + } + } else { + config.Log.Debugf("%v🧠 Preparando auth para REST", logPrefix) + auth.Rest.Body = map[string]string{ + "CompanyDB": cred.CompanyDB, + "UserName": cred.UserName, + "Password": cred.Password, + } + } + return auth +} diff --git a/internal/scheduler/ListenCronReload b/internal/scheduler/ListenCronReload new file mode 100644 index 0000000..826c10c --- /dev/null +++ b/internal/scheduler/ListenCronReload @@ -0,0 +1,98 @@ +/* package scheduler + +import ( + "context" + + "github.com/redis/go-redis/v9" + "github.com/robfig/cron/v3" + "github.com/tuusuario/go-sync-service/internal/config" + "github.com/tuusuario/go-sync-service/internal/domain/dto" + "github.com/tuusuario/go-sync-service/internal/domain/ports" + fetcher "github.com/tuusuario/go-sync-service/internal/sync" + "github.com/tuusuario/go-sync-service/internal/utils" + + "gorm.io/gorm" +) + +var currentCron *cron.Cron + +func ListenCronReload(ctx context.Context, redisClient *redis.Client, cfg ports.RedisConfigProvider, database *gorm.DB) { + pubsub := redisClient.Subscribe(ctx, "cron:reload") + ch := pubsub.Channel() + + config.Log.Println("👂 Escuchando cambios de configuración en cron:reload") + + for msg := range ch { + if msg.Payload == "reload" { + config.Log.Println("🔄 Recargando trabajos cron desde Redis...") + + lista_cron, err := utils.CargarDesdeRedis[dto.CronJobList](cfg, config.CronConfig) + if err != nil { + config.Log.Printf("❌ Error al cargar nueva configuración de crons: %v", err) + continue + } + + if currentCron != nil { + currentCron.Stop() + } + + newCron := cron.New() + + for _, job := range lista_cron.Crons { + if !job.Enabled { + config.Log.WithField("job", job.Nombre).Warn("⚠️ Job desactivado") + continue + } + job := job // evitar captura de variable + _, err := newCron.AddFunc(job.Ejecucion, func() { + config.Log.Printf("🚀 Ejecutando job: %s", job.Nombre) + + fetcher.SyncData(cfg, database, job) + }) + if err != nil { + config.Log.Printf("❌ Error registrando nuevo cron job %s: %v", job.Nombre, err) + } + + } + + currentCron = newCron + currentCron.Start() + + config.Log.Println("✅ Crons recargados exitosamente.") + } + } +} + +func LoadAndStartCrons(cfg ports.RedisConfigProvider, database *gorm.DB) { + lista_cron, err := utils.CargarDesdeRedis[dto.CronJobList](cfg, config.CronConfig) + if err != nil { + config.Log.Errorf("❌ Error al cargar configuración de crons: %v", err) + return + } + + newCron := cron.New() + for _, job := range lista_cron.Crons { + if !job.Enabled { + config.Log.WithField("job", job.Nombre).Warn("⚠️ Job desactivado") + continue + } + job := job + config.Log.WithFields(map[string]interface{}{ + "job": job.Nombre, + "cron": job.Ejecucion, + }).Info("📝 Registrando cron") + + _, err := newCron.AddFunc(job.Ejecucion, func() { + config.Log.Infof("🚀 Ejecutando job: %s", job.Nombre) + fetcher.SyncData(cfg, database, job) + }) + if err != nil { + config.Log.WithField("job", job.Nombre).Errorf("❌ Error registrando cron: %v", err) + } + } + + newCron.Start() + currentCron = newCron + config.Log.Info("✅ Cron jobs cargados correctamente al iniciar") +} +*/ \ No newline at end of file diff --git a/internal/scheduler/listener.go b/internal/scheduler/listener.go new file mode 100644 index 0000000..8f91450 --- /dev/null +++ b/internal/scheduler/listener.go @@ -0,0 +1,26 @@ +package scheduler + +import ( + "context" + + "github.com/redis/go-redis/v9" + "github.com/tuusuario/go-sync-service/internal/config" + "github.com/tuusuario/go-sync-service/internal/domain/ports" + "gorm.io/gorm" +) + +func listenCronReload(ctx context.Context, redisClient *redis.Client, cfg ports.RedisConfigProvider, dbConn *gorm.DB) { + pubsub := redisClient.Subscribe(ctx, config.GlobalConfig.RedisSubscribe) + ch := pubsub.Channel() + + config.Log.Infof("👂 Escuchando cambios en %v...", config.GlobalConfig.RedisSubscribe) + + for msg := range ch { + if msg.Payload == "reload" { + config.Log.Info("🔄 Recargando configuración de cron...") + if err := loadAndStartJobs(ctx, cfg, dbConn); err != nil { + config.Log.Errorf("❌ Error al recargar cron jobs: %v", err) + } + } + } +} diff --git a/internal/scheduler/manager.go b/internal/scheduler/manager.go new file mode 100644 index 0000000..e824310 --- /dev/null +++ b/internal/scheduler/manager.go @@ -0,0 +1,62 @@ +package scheduler + +import ( + "context" + + "github.com/redis/go-redis/v9" + "github.com/robfig/cron/v3" + + "github.com/tuusuario/go-sync-service/internal/config" + "github.com/tuusuario/go-sync-service/internal/domain/dto" + "github.com/tuusuario/go-sync-service/internal/domain/ports" + fetcher "github.com/tuusuario/go-sync-service/internal/sync" + "github.com/tuusuario/go-sync-service/internal/utils" + + "gorm.io/gorm" +) + +var currentCron *cron.Cron + +func Start(ctx context.Context, redisClient *redis.Client, cfg ports.RedisConfigProvider, database *gorm.DB) { + config.Log.Info("🚀 Iniciando Scheduler...") + + if err := loadAndStartJobs(ctx, cfg, database); err != nil { + config.Log.Errorf("❌ Error inicializando jobs: %v", err) + } + go listenCronReload(ctx, redisClient, cfg, database) +} + +func loadAndStartJobs(ctx context.Context, cfg ports.RedisConfigProvider, dbConn *gorm.DB) error { + lista, err := utils.CargarDesdeRedis[dto.CronConfigList](cfg, config.CronConfig) + if err != nil { + return err + } + + if currentCron != nil { + currentCron.Stop() + } + + newCron := cron.New() + + for _, job := range lista.Crons { + //Valida si el cron esta habilitado + if !job.Configuracion.Enabled { + config.Log.WithField("job", job.Nombre).Warn("⏸️ Job desactivado") + continue + } + job := job // closure-safe + _, err := newCron.AddFunc(job.Configuracion.Ejecucion, func() { + config.Log.Infof("🚀 Ejecutando job: %s", job.Nombre) + //cargar Job + fetcher.SyncData(cfg, dbConn, job) + }) + if err != nil { + config.Log.Errorf("❌ Error registrando job %s: %v", job.Nombre, err) + } + } + + newCron.Start() + currentCron = newCron + config.Log.Info("✅ Jobs registrados exitosamente") + return nil +} diff --git a/internal/security/aesgcm.go b/internal/security/aesgcm.go new file mode 100644 index 0000000..09515e6 --- /dev/null +++ b/internal/security/aesgcm.go @@ -0,0 +1,53 @@ +package security + +import ( + "crypto/aes" + "crypto/cipher" + "encoding/base64" + "errors" +) + +func DecryptAESGCM(b64 string, key []byte) (string, error) { + if len(key) != 32 { + return "", errors.New("encryption key must be 32 bytes for AES-256") + } + raw, err := base64.StdEncoding.DecodeString(b64) + if err != nil { + return "", err + } + block, err := aes.NewCipher(key) + if err != nil { + return "", err + } + + // Probar con nonce de 12 y 16 bytes + for _, ns := range []int{12, 16} { + gcm, err := cipher.NewGCMWithNonceSize(block, ns) + if err != nil { + continue + } // si no soporta ese ns, prueba el siguiente + tagSize := gcm.Overhead() + if len(raw) < ns+tagSize+1 { // al menos 1 byte de CT + continue + } + nonce := raw[:ns] + rest := raw[ns:] + + // A) nonce || ciphertext || tag (nativo Go) + if pt, err := gcm.Open(nil, nonce, rest, nil); err == nil { + return string(pt), nil + } + + // B) nonce || tag || ciphertext (PyCryptodome ejemplo previo) + if len(rest) > tagSize { + tag := rest[:tagSize] + ct := rest[tagSize:] + repacked := append(ct, tag...) // => ciphertext||tag + if pt, err := gcm.Open(nil, nonce, repacked, nil); err == nil { + return string(pt), nil + } + } + } + + return "", errors.New("GCM auth failed: wrong key, bad data, or unsupported layout") +} diff --git a/internal/security/crypto_key.go b/internal/security/crypto_key.go new file mode 100644 index 0000000..583a617 --- /dev/null +++ b/internal/security/crypto_key.go @@ -0,0 +1,52 @@ +package security + +import ( + "encoding/base64" + "encoding/hex" + "errors" + "os" + "strings" + "sync" +) + +var ( + keyOnce sync.Once + keyBuf []byte + keyErr error +) + +// LoadEncryptionKey soporta raw (32 chars), base64(32 bytes) o hex(32 bytes). +func LoadEncryptionKey() ([]byte, error) { + keyOnce.Do(func() { + v := strings.TrimSpace(os.Getenv("ENCRYPTION_KEY")) + if v == "" { + keyErr = errors.New("ENCRYPTION_KEY no definida") + return + } + + // 1) raw 32 chars + if len(v) == 32 { + keyBuf = []byte(v) + return + } + + // 2) base64 (std / url) + if b, err := base64.StdEncoding.DecodeString(v); err == nil && len(b) == 32 { + keyBuf = b + return + } + if b, err := base64.URLEncoding.DecodeString(v); err == nil && len(b) == 32 { + keyBuf = b + return + } + + // 3) hex (64 chars -> 32 bytes) + if b, err := hex.DecodeString(v); err == nil && len(b) == 32 { + keyBuf = b + return + } + + keyErr = errors.New("ENCRYPTION_KEY inválida: debe ser 32 chars raw, base64 de 32 bytes o hex de 32 bytes") + }) + return keyBuf, keyErr +} diff --git a/internal/sync/fetcher.go b/internal/sync/fetcher.go new file mode 100644 index 0000000..8109c95 --- /dev/null +++ b/internal/sync/fetcher.go @@ -0,0 +1,206 @@ +package fetcher + +import ( + "encoding/json" + "fmt" + "strconv" + "time" + + "github.com/tuusuario/go-sync-service/internal/config" + "github.com/tuusuario/go-sync-service/internal/db" + "github.com/tuusuario/go-sync-service/internal/domain/dto" + "github.com/tuusuario/go-sync-service/internal/domain/ports" + "github.com/tuusuario/go-sync-service/internal/http" + "github.com/tuusuario/go-sync-service/internal/utils" + "github.com/tuusuario/go-sync-service/metrics" + "gorm.io/gorm" +) + +func SyncData(redis ports.RedisConfigProvider, database *gorm.DB, job dto.CronJob) { + start := time.Now() + logPrefix := fmt.Sprintf("[🧩 Job: %s] ", job.Nombre) + config.Log.Printf("%s Iniciando sincronización...", logPrefix) + + var dbcore ports.Database = db.NewGormDatabase(database) + var hasError bool + + http.InitClient() + + if len(job.Configuracion.Proceso) == 0 { + config.Log.Printf(" %s ⚠️ No hay procesos configurados para este job", logPrefix) + goto END + } + + for _, proceso := range job.Configuracion.Proceso { + config.Log.Printf(logPrefix+" Iniciando proceso %s", proceso) + + jobIndividual, err := utils.CargarDesdeRedis[dto.JobConfig](redis, proceso) + if err != nil { + config.Log.Printf(logPrefix+" ❌ Error al obtener configuración del proceso: %v", err) + hasError = true + continue + } + //Obtener Session + session, err := http.GetSession(redis, job, jobIndividual.Auth, dbcore, logPrefix) + if err != nil { + config.Log.Println(logPrefix + " ❌ No se pudo obtener sesión") + hasError = true + continue + } + if session == nil || session.SessionId == "" { + config.Log.Println(logPrefix + " ❌ Sesión inválida o vacía") + hasError = true + continue + } + + if jobIndividual.Service.GQL { + jobIndividual.Service.Headers["Authorization"] = "Bearer " + session.SessionId + } else { + jobIndividual.Service.Headers["Cookie"] = "B1SESSION=" + session.SessionId + } + + response, err := FetchAllPaginatedManual[map[string]interface{}](session.EndPoint, jobIndividual.Service, logPrefix) + if err != nil { + config.Log.Printf(logPrefix+" ❌ Error al obtener data: %v", err) + hasError = true + continue + } + + config.Log.Printf("%s Cantidad de elementos: %v", logPrefix, len(*response)) + + err = dbcore.SyncRows(jobIndividual.Persistencia, response, job.UnidadNegocio.CompanyDB) + if err != nil { + config.Log.Printf(logPrefix+" ❌ Error al guardar en base de datos: %v", err) + hasError = true + } + } + +END: + duration := time.Since(start).Seconds() + jobName := job.Nombre + + metrics.CronDuration.WithLabelValues(jobName).Observe(duration) + + if hasError { + metrics.CronError.WithLabelValues(jobName).Inc() + metrics.CronLastError.WithLabelValues(jobName).Set(float64(time.Now().Unix())) + } else { + metrics.CronSuccess.WithLabelValues(jobName).Inc() + metrics.CronLastSuccess.WithLabelValues(jobName).Set(float64(time.Now().Unix())) + } + + config.Log.Printf("%s ⏱ Duración total: %.2fs", logPrefix, duration) +} + +func FetchAllPaginatedManual[T any](host string, service dto.ServiceConfig, logPrefix string) (*[]T, error) { + var all []T + + // REST paginación + if service.Rest != nil && service.Rest.Pagination != nil && service.Rest.Pagination.Enabled { + skip := service.Rest.Pagination.Skip + top := service.Rest.Pagination.Top + + for { + // Actualizar parámetros de paginación + service.Rest.Query["$skip"] = strconv.Itoa(skip) + service.Rest.Query["$top"] = strconv.Itoa(top) + + resp, err := http.SendRequest(host, service) + if err != nil { + return nil, fmt.Errorf("%s ❌ error en la petición: %w", logPrefix, err) + } + + var result struct { + Value []T `json:"value"` + } + if err := json.Unmarshal(resp.Body(), &result); err != nil { + return nil, fmt.Errorf("%s ❌ error parseando respuesta: %w", logPrefix, err) + } + + if len(result.Value) == 0 { + config.Log.Printf(" %s ❌ No hay más elementos", logPrefix) + break + } + + all = append(all, result.Value...) + skip += top + } + return &all, nil + } + + // GraphQL paginación + if service.GraphQL != nil && service.GraphQL.Pagination != nil && service.GraphQL.Pagination.Enabled { + for { + resp, err := http.SendRequest(host, service) + if err != nil { + return nil, fmt.Errorf("%s ❌ error en la petición: %w", logPrefix, err) + } + + var raw map[string]any + if err := json.Unmarshal(resp.Body(), &raw); err != nil { + return nil, fmt.Errorf("%s ❌ error parseando respuesta GraphQL: %w", logPrefix, err) + } + + data, ok := raw["data"].(map[string]interface{}) + if !ok { + return nil, fmt.Errorf("%s ❌ no se encontró 'data' en la respuesta GraphQL", logPrefix) + } + + root, ok := data[service.GraphQL.RootField].(map[string]interface{}) + if !ok { + return nil, fmt.Errorf("%s ❌ no se encontró '%v' en la respuesta GraphQL", logPrefix, service.GraphQL.RootField) + } + + // Obtener y parsear filas + rows, ok := root[service.GraphQL.RowField].([]interface{}) + if !ok { + return nil, fmt.Errorf("%s ❌ no se encontró '%v' en la respuesta GraphQL", logPrefix, service.GraphQL.RowField) + } + + for _, r := range rows { + jsonRow, _ := json.Marshal(r) + + var item T + if err := json.Unmarshal(jsonRow, &item); err != nil { + config.Log.Printf("%s ⚠️ error parseando fila: %v", logPrefix, err) + continue + } + all = append(all, item) + } + + // Evaluar paginación + meta, ok := root["meta"].(map[string]interface{}) + if !ok { + return nil, fmt.Errorf("%s ❌ no se encontró 'meta' para paginación", logPrefix) + } + + hasNext, ok := meta["hasNextPage"].(bool) + if !ok || !hasNext { + break + } + + // Avanzar cursor (página) + if nextPage, ok := meta["next"]; ok { + service.GraphQL.Variables[service.GraphQL.Pagination.CursorParam] = nextPage + } else { + break // no hay campo next + } + } + return &all, nil + } + + // Sin paginación + resp, err := http.SendRequest(host, service) + if err != nil { + return nil, fmt.Errorf("%s ❌ error en la petición: %w", logPrefix, err) + } + var result struct { + Value []T `json:"value"` + } + if err := json.Unmarshal(resp.Body(), &result); err != nil { + return nil, fmt.Errorf("%s ❌ error parseando respuesta final: %w", logPrefix, err) + } + all = append(all, result.Value...) + + return &all, nil +} diff --git a/internal/utils/redis_loader.go b/internal/utils/redis_loader.go new file mode 100644 index 0000000..d22bc77 --- /dev/null +++ b/internal/utils/redis_loader.go @@ -0,0 +1,29 @@ +package utils + +import ( + "encoding/json" + "fmt" + + "github.com/tuusuario/go-sync-service/internal/config" + "github.com/tuusuario/go-sync-service/internal/domain/ports" +) + +// Función genérica para deserializar un JSON de Redis a cualquier tipo +func CargarDesdeRedis[T any](cfg ports.RedisConfigProvider, clave string) (*T, error) { + data, err := cfg.GetString(clave) + if err != nil { + + config.Log.Errorf("⚠️ error al obtener config de Redis [%s]: %s", clave, err) + return nil, fmt.Errorf("error al obtener clave [%s] de redis: %w", clave, err) + + } + config.Log.Debugf("🔑 Clave [%s] obtenida de Redis: %s", clave, data) + var result T + if err := json.Unmarshal([]byte(data), &result); err != nil { + config.Log.Errorf("❌ error al parsear JSON [%s]: %s", clave, err) + return nil, fmt.Errorf("error al parsear JSON [%s]: %w", clave, err) + + } + + return &result, nil +} diff --git a/logs/syncronizador.log b/logs/syncronizador.log new file mode 100644 index 0000000..71fa88f --- /dev/null +++ b/logs/syncronizador.log @@ -0,0 +1,1748 @@ +{"file":"logger.go:59","func":"config.InitLogger","level":"debug","msg":"✅ Elasticsearch enabled","time":"2025-07-30T10:47:18-04:00"} +{"file":"main.go:27","func":"main.main","level":"info","msg":"🚀 Iniciando servicio: go-sync-service","time":"2025-07-30T10:47:18-04:00"} +{"file":"main.go:34","func":"main.main","level":"info","msg":"✅ Redis conectado","time":"2025-07-30T10:47:18-04:00"} +{"file":"main.go:45","func":"main.main","level":"info","msg":"✅ Conexión a base de datos establecida","time":"2025-07-30T10:47:18-04:00"} +{"file":"manager.go:21","func":"scheduler.Start","level":"info","msg":"🚀 Iniciando Scheduler...","time":"2025-07-30T10:47:18-04:00"} +{"file":"redis_loader.go:20","func":"utils.CargarDesdeRedis[...]","level":"debug","msg":"🔑 Clave [parametros:cron_config] obtenida de Redis: {\n \"crons\": [\n {\n \"nombre\": \"sync_business_partners\",\n \"unidad_negocio\": {\n \"company_name\": \"PROD\",\n \"company_db\": \"SBOEMBASRL\"\n },\n \"configuracion\": {\n \"ejecucion\": \"00 10 * * *\",\n \"proceso\": [\n \"parametros:rest_projects\",\n \"parametros:rest_customer\"\n ],\n \"enabled\": true\n }\n },\n {\n \"nombre\": \"sync_graphql\",\n \"unidad_negocio\": {\n \"company_name\": \"TM_PROD\",\n \"company_db\": \"TM\"\n },\n \"configuracion\": {\n \"ejecucion\": \"42 10 * * *\",\n \"proceso\": [\n \n \"parametros:graphql_customer\",\n \"parametros:graphql_user\",\n \"parametros:graphql_projects\"\n ],\n \"enabled\": true\n }\n }\n ]\n}","time":"2025-07-30T10:47:18-04:00"} +{"file":"manager.go:60","func":"scheduler.loadAndStartJobs","level":"info","msg":"✅ Jobs registrados exitosamente","time":"2025-07-30T10:47:18-04:00"} +{"file":"main.go:48","func":"main.main","level":"info","msg":"✅ Scheduler en ejecución y escuchando recargas","time":"2025-07-30T10:47:18-04:00"} +{"file":"main.go:65","func":"main.startMetricsServer.func1","level":"info","msg":"📊 Servidor de métricas en :9100/metrics","time":"2025-07-30T10:47:19-04:00"} +{"file":"listener.go:16","func":"scheduler.listenCronReload","level":"info","msg":"👂 Escuchando cambios en cron:reload...","time":"2025-07-30T10:47:19-04:00"} +{"file":"listener.go:20","func":"scheduler.listenCronReload","level":"info","msg":"🔄 Recargando configuración de cron...","time":"2025-07-30T10:47:41-04:00"} +{"file":"redis_loader.go:20","func":"utils.CargarDesdeRedis[...]","level":"debug","msg":"🔑 Clave [parametros:cron_config] obtenida de Redis: {\n \"crons\": [\n {\n \"nombre\": \"sync_business_partners\",\n \"unidad_negocio\": {\n \"company_name\": \"PROD\",\n \"company_db\": \"SBOEMBASRL\"\n },\n \"configuracion\": {\n \"ejecucion\": \"48 10 * * *\",\n \"proceso\": [\n \"parametros:rest_projects\",\n \"parametros:rest_customer\"\n ],\n \"enabled\": true\n }\n },\n {\n \"nombre\": \"sync_graphql\",\n \"unidad_negocio\": {\n \"company_name\": \"TM_PROD\",\n \"company_db\": \"TM\"\n },\n \"configuracion\": {\n \"ejecucion\": \"49 10 * * *\",\n \"proceso\": [\n \n \"parametros:graphql_customer\",\n \"parametros:graphql_user\",\n \"parametros:graphql_projects\"\n ],\n \"enabled\": true\n }\n }\n ]\n}","time":"2025-07-30T10:47:41-04:00"} +{"file":"manager.go:60","func":"scheduler.loadAndStartJobs","level":"info","msg":"✅ Jobs registrados exitosamente","time":"2025-07-30T10:47:41-04:00"} +{"file":"manager.go:49","func":"scheduler.loadAndStartJobs.func1","level":"info","msg":"🚀 Ejecutando job: sync_business_partners","time":"2025-07-30T10:48:00-04:00"} +{"file":"fetcher.go:22","func":"sync.SyncData","level":"info","msg":"[🧩 Job: sync_business_partners] Iniciando sincronización...","time":"2025-07-30T10:48:00-04:00"} +{"file":"client.go:45","func":"http.InitClient.func1","level":"info","msg":"🚀 Inicializando Resty client...","time":"2025-07-30T10:48:00-04:00"} +{"file":"fetcher.go:35","func":"sync.SyncData","level":"info","msg":"[🧩 Job: sync_business_partners] Iniciando proceso parametros:rest_projects","time":"2025-07-30T10:48:00-04:00"} +{"file":"redis_loader.go:20","func":"utils.CargarDesdeRedis[...]","level":"debug","msg":"🔑 Clave [parametros:rest_projects] obtenida de Redis: {\n \"auth\": {\n \"gql\": false,\n \"method\": \"POST\",\n \"path\": \"/b1s/v1/Login\",\n \"headers\": {\n \"Content-Type\": \"application/json\"\n },\n \"rest\": {\n \"body\": null\n },\n \"graphql\": null\n },\n \"service\": {\n \"gql\": false,\n \"method\": \"GET\",\n \"path\": \"/b1s/v1/Projects\",\n \"headers\": {\n \"Content-Type\": \"application/json\"\n },\n \"rest\": {\n \"body\": null,\n \"query\": {\n \"$select\": \"Code,Name,ValidFrom,ValidTo,Active,U_Reembol, U_Factur, U_MonedaTarifa, U_TarPlana, U_Idioma, U_Y, U_MontoFijo, U_Comentarios, U_Estado, U_ClienCode, U_ClienNom, U_FormaCobro, U_FechaCreacionP, U_AreaProyecto, U_AbogadoEncargado, U_Tarifa, U_HorasRetainer, U_REGIONAL, U_EMBAIDTM, U_Gasto_Reembolsable, U_Incluye_IVA, U_MonedaProyecto, U_Soc_Responsable, U_Tipo_Honorario, U_CodAnterior, U_SUCURSAL\"\n },\n \"pagination\": {\n \"enabled\": true,\n \"skip\": 0,\n \"top\": 20\n }\n },\n \"graphql\": null\n },\n \"persistencia\": {\n \"table\": \"public.sync_proyectos\",\n \"batch_size\": 100,\n \"campo_sync\": \"sync_updated_at\",\n \"primary_key\": \"code\",\n \"fields\": {\n \"code\": \"Code\",\n \"name\": \"Name\",\n \"valid_from\": \"ValidFrom\",\n \"valid_to\": \"ValidTo\",\n \"active\": \"Active\",\n \"u_reembol\": \"U_Reembol\",\n \"u_factur\": \"U_Factur\",\n \"u_moneda_tarifa\": \"U_MonedaTarifa\",\n \"u_tar_plana\": \"U_TarPlana\",\n \"u_idioma\": \"U_Idioma\",\n \"u_y\": \"U_Y\",\n \"u_monto_fijo\": \"U_MontoFijo\",\n \"u_comentarios\": \"U_Comentarios\",\n \"u_estado\": \"U_Estado\",\n \"u_clien_code\": \"U_ClienCode\",\n \"u_clien_nom\": \"U_ClienNom\",\n \"u_forma_cobro\": \"U_FormaCobro\",\n \"u_fecha_creacion_p\": \"U_FechaCreacionP\",\n \"u_area_proyecto\": \"U_AreaProyecto\",\n \"u_abogado_encargado\": \"U_AbogadoEncargado\",\n \"u_tarifa\": \"U_Tarifa\",\n \"u_horas_retainer\": \"U_HorasRetainer\",\n \"u_regional\": \"U_REGIONAL\",\n \"u_embaidtm\": \"U_EMBAIDTM\",\n \"u_gasto_reembolsable\": \"U_Gasto_Reembolsable\",\n \"u_incluye_iva\": \"U_Incluye_IVA\",\n \"u_moneda_proyecto\": \"U_MonedaProyecto\",\n \"u_soc_responsable\": \"U_Soc_Responsable\",\n \"u_tipo_honorario\": \"U_Tipo_Honorario\",\n \"u_cod_anterior\": \"U_CodAnterior\",\n \"u_sucursal\": \"U_SUCURSAL\"\n },\n \"static_fields\": {\n \"id_business_units\": 1\n },\n \"soft_delete\": {\n \"field\": \"sync_updated_at\",\n \"enabled\": false\n }\n }\n}","time":"2025-07-30T10:48:00-04:00"} +{"file":"session.go:27","func":"http.GetSession","level":"info","msg":"[🧩 Job: sync_business_partners] 🔑 Sesión obtenida de Redis session:PROD:SBOEMBASRL","time":"2025-07-30T10:48:00-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:00-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=0\u0026%24top=20 | Status: 200 | Duration: 1.6958744s\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:00 GMT] Server:[Apache] Set-Cookie:[ROUTEID=.node4; path=/;Secure;SameSite=None] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000073-SR-000013\",\n \"Name\" : \"MODIFICACION DE ESTATUTO Y REGLAMENTO INTERNO\",\n \"ValidFrom\" : \"2018-02-23T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"73\",\n \"U_ClienNom\" : \"ASOCIACION DE COPROPIETARIOS DE LA TORRE EMPRESARIAL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2018-02-23T00:00:00Z\",\n \"U_AreaProyecto\" : \"Arbitraje\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 13,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000076-SR-000020\",\n \"Name\" : \"SERVIVIOS LEGALES MENSUALES (FM)\",\n \"ValidFrom\" : \"2018-07-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"76\",\n \"U_ClienNom\" : \"BANCO DO BRASIL S.A. SUC. BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2018-07-01T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Ramiro Moreno Baldivieso\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ramiro Moreno Baldivieso\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 18,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000076-SR-000139\",\n \"Name\" : \"Cierre de sucursal\",\n \"ValidFrom\" : \"2019-08-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 23809.520,\n \"U_Comentarios\" : \"50% a la firma del contrato 20% a los 90 dias firmado el contrato 30% extincion de la personeria ju\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"76\",\n \"U_ClienNom\" : \"BANCO DO BRASIL S.A. SUC. BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-08-09T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Natalio Zegarra\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"183\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Natalio Zegarra\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1545,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000076-SR-000542\",\n \"Name\" : \"PATROCINIO PROCESO LABORAL INTERPUESTO POR LA SRA. VANIA CHAVEZ Y OTROS.\",\n \"ValidFrom\" : \"2022-10-05T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 25750.470,\n \"U_Comentarios\" : \"Por hitos, 4 pagos.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"76\",\n \"U_ClienNom\" : \"BANCO DO BRASIL S.A. SUC. BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-10-05T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Laboral y de Seguridad Social\",\n \"U_AbogadoEncargado\" : \"Paul Aramayo Salinas\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Paul Aramayo Salinas\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 3631,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000076-SR-000679\",\n \"Name\" : \"PROCESO PENAL MINISTERIO PUBLICO/ITIKA GUAZU ct. JOSE SAVIO FARIAS, LUIS SALAS Y NATALIO ZEGARRA\",\n \"ValidFrom\" : \"2023-08-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 17000.0,\n \"U_Comentarios\" : \"SE DEBE FACTURAR EL 58% AHORA Y EL SALDO A INSTRUCCION DEL DR. ZEGARRA\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"76\",\n \"U_ClienNom\" : \"BANCO DO BRASIL S.A. SUC. BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-08-01T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Penal\",\n \"U_AbogadoEncargado\" : \"Natalio Zegarra\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"185\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Natalio Zegarra\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4243,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000076-SR-000749\",\n \"Name\" : \"PATROCINIO PROCESO LABORAL INTERPUESTO POR BIRINO PETROZ JEREZ DAVILA\",\n \"ValidFrom\" : \"2023-10-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"BS\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 7903.0,\n \"U_Comentarios\" : \"Cobrar la totalidad del honorario de inmediato\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"76\",\n \"U_ClienNom\" : \"BANCO DO BRASIL S.A. SUC. BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-10-20T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Laboral y de Seguridad Social\",\n \"U_AbogadoEncargado\" : \"Paul Aramayo Salinas\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"BOL\",\n \"U_Soc_Responsable\" : \"Paul Aramayo Salinas\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 4540,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000076-SR-000809\",\n \"Name\" : \"PROCESO JUDICIAL LABORAL SEGUIDO POR MARCOS ROLANDO ESCALANTE EDUARDO Y OTROS\",\n \"ValidFrom\" : \"2020-10-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 30000.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"76\",\n \"U_ClienNom\" : \"BANCO DO BRASIL S.A. SUC. BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2020-10-22T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Paul Aramayo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"1252\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ramiro Moreno Baldivieso\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 2320,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000076-SR-000846\",\n \"Name\" : \"PROCESO LABORAL - CRISTIAN REYNAGA ct. BANCO DO BRASIL\",\n \"ValidFrom\" : \"2022-09-27T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"Los honorarios se cobran en función al avance del proceso.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"76\",\n \"U_ClienNom\" : \"BANCO DO BRASIL S.A. SUC. BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2022-09-27T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Laboral y de Seguridad Social\",\n \"U_AbogadoEncargado\" : \"Natalio Eduardo Zegarra Ribera\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"1253\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Natalio Eduardo Zegarra Ribera\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 3599,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000076-SR-000902\",\n \"Name\" : \"PATROCINIO PROCESO LABORAL INTERPUESTO POR LA SRA. CARLA MEDINA\",\n \"ValidFrom\" : \"2022-10-04T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2222.30,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"76\",\n \"U_ClienNom\" : \"BANCO DO BRASIL S.A. SUC. BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-10-04T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Laboral y de Seguridad Social\",\n \"U_AbogadoEncargado\" : \"Ramiro Moreno Baldivieso\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Paul Aramayo Salinas\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 3630,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000076-SR-001082\",\n \"Name\" : \"TOMAS ELIO CECIN contra ISABEL PEREIRA Y NATALIO ZEGARRA\",\n \"ValidFrom\" : \"2024-02-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"el 1er hito ya fue cancelado\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"76\",\n \"U_ClienNom\" : \"BANCO DO BRASIL S.A. SUC. BOLIVIA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Penal\",\n \"U_AbogadoEncargado\" : \"Natalio Eduardo Zegarra Ribera\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2553\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Natalio Eduardo Zegarra Ribera\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000076-SR-002110\",\n \"Name\" : \"DEFENSA AMPARO CONSTITUCIONAL - OSCAR REJAS\",\n \"ValidFrom\" : \"2025-07-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Por definir el importe de honorarios.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"76\",\n \"U_ClienNom\" : \"BANCO DO BRASIL S.A. SUC. BOLIVIA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Constitucional\",\n \"U_AbogadoEncargado\" : null,\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"4520\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Natalio Zegarra\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000078-SR-000028\",\n \"Name\" : \"CONSTITUCION DE SOCIEDAD\",\n \"ValidFrom\" : \"2018-08-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"78\",\n \"U_ClienNom\" : \"BULLA CREATIVA S.R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2018-08-29T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Ariel Zeballos Alaby\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Zeballos Alaby\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 21,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000079-SR-000015\",\n \"Name\" : \"Servicios Legales Mensuales (FM)\",\n \"ValidFrom\" : \"2018-06-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2400.0,\n \"U_Comentarios\" : \"Buenas noches, estimado Marcelo.\\rEn línea con lo conversado, te pido que inactiven el proyecto de s\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"79\",\n \"U_ClienNom\" : \"BUPA INSURANCE (BOLIVIA) S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa retainer\",\n \"U_FechaCreacionP\" : \"2018-06-01T00:00:00Z\",\n \"U_AreaProyecto\" : \"Seguros y Reaseguros\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 13,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"131\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 22,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000079-SR-000833\",\n \"Name\" : \"Arbitraje Luis Fernando Saavedra\",\n \"ValidFrom\" : \"2022-04-19T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2436.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"79\",\n \"U_ClienNom\" : \"BUPA INSURANCE (BOLIVIA) S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2022-04-19T00:00:00Z\",\n \"U_AreaProyecto\" : \"Arbitraje\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"1262\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 3304,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000079-SR-000890\",\n \"Name\" : \"Proyecto SIMON\",\n \"ValidFrom\" : \"2023-11-14T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 8000.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"79\",\n \"U_ClienNom\" : \"BUPA INSURANCE (BOLIVIA) S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2023-11-14T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"1263\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 4590,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000079-SR-001013\",\n \"Name\" : \"Servicios Legales integrales por hora\",\n \"ValidFrom\" : \"2024-02-06T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"79\",\n \"U_ClienNom\" : \"BUPA INSURANCE (BOLIVIA) S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Rene Claure Veizaga\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2318\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Claure Veizaga\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000080-SR-000524\",\n \"Name\" : \"NEGOCIACION DE DEUDA - CBI\",\n \"ValidFrom\" : \"2022-08-31T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 600.0,\n \"U_Comentarios\" : \"Enviar factura siguiente mes (septiembre)\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"80\",\n \"U_ClienNom\" : \"C.I. ENERGIA SOLAR S.A.S E.S. WINDOWS SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-08-31T00:00:00Z\",\n \"U_AreaProyecto\" : \"Comercial (Contratación, informes y otros)\",\n \"U_AbogadoEncargado\" : \"Rene Claure Veizaga\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Claure Veizaga\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 3561,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000087-SR-000025\",\n \"Name\" : \"Obtención Personalidad Jurídica Asociación Civil\",\n \"ValidFrom\" : \"2018-08-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"87\",\n \"U_ClienNom\" : \"CONDOMINIO ZERO\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2018-08-09T00:00:00Z\",\n \"U_AreaProyecto\" : \"Arbitraje\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"261\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 35,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000088-SR-000033\",\n \"Name\" : \"OUTSOURCING CONTABLE (FM)\",\n \"ValidFrom\" : \"2018-10-10T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"88\",\n \"U_ClienNom\" : \"CONESA KIEFFER \u0026 ASOCIADOS CORREDORES DE REASEGURO S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2018-10-10T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Penal\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado Ramirez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado Ramirez\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 36,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000089-SR-000675\",\n \"Name\" : \"Cierre de sucursal\",\n \"ValidFrom\" : \"2023-07-26T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1400.0,\n \"U_Comentarios\" : \"El cliente ha indicado expresamente que ninguna factura sea emitida al NIT de la sociedad o a nombre\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"89\",\n \"U_ClienNom\" : \"CONSTRUCTORA SAN JOSE S.A. - SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-07-26T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Fernando Landa\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"265\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Landa\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4234,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:01-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:02-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=20\u0026%24top=20 | Status: 200 | Duration: 104.5426ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:02 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000089-SR-000895\",\n \"Name\" : \"SERVICIOS DE OUTSOURCING CONTABLE (FM)\",\n \"ValidFrom\" : \"2018-01-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"89\",\n \"U_ClienNom\" : \"CONSTRUCTORA SAN JOSE S.A. - SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2018-01-01T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Penal\",\n \"U_AbogadoEncargado\" : \"Carlos Fernando Landa Alejandro\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Juan Jose Callisaya Cutile\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 38,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000090-SR-000102\",\n \"Name\" : \"Nueva Linea de Crédito 2019 con CRECER IFD\",\n \"ValidFrom\" : \"2019-05-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2000.0,\n \"U_Comentarios\" : \"El Honorario y gastos serán cubiertos por el cliente de CAF: CRECER IFD\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"90\",\n \"U_ClienNom\" : \"CORPORACION ANDINA DE FOMENTO\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-05-13T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Teddy Mercado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"302\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Teddy Mercado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1383,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000090-SR-000103\",\n \"Name\" : \"Nueva Linea de Crédito 2019 con CIDRE\",\n \"ValidFrom\" : \"2019-05-16T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2000.0,\n \"U_Comentarios\" : \"El honorario lo pagar CIDRE IFD\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"90\",\n \"U_ClienNom\" : \"CORPORACION ANDINA DE FOMENTO\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-05-16T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Teddy Mercado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"303\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Teddy Mercado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1387,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000090-SR-000104\",\n \"Name\" : \"Nueva Linea de Crédito 2019 con DIACONÍA\",\n \"ValidFrom\" : \"2019-05-16T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2000.0,\n \"U_Comentarios\" : \"El Honorario lo pagara DIACONIA IFD\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"90\",\n \"U_ClienNom\" : \"CORPORACION ANDINA DE FOMENTO\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-05-16T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Teddy Mercado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"304\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Teddy Mercado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1388,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000090-SR-000170\",\n \"Name\" : \"Nueva Linea de Crédito con CAF con BNB\",\n \"ValidFrom\" : \"2019-08-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2000.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"90\",\n \"U_ClienNom\" : \"CORPORACION ANDINA DE FOMENTO\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-08-30T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Teddy Mercado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"305\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Teddy Mercado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1622,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000090-SR-000335\",\n \"Name\" : \"Servicios Legales Mensuales (Desde 2021)\",\n \"ValidFrom\" : \"2021-02-26T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2100.0,\n \"U_Comentarios\" : \"El Retainer incluye la cantidad de veinte (20) horas de atención por mes, por parte del Despacho, i\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"90\",\n \"U_ClienNom\" : \"CORPORACION ANDINA DE FOMENTO\",\n \"U_FormaCobro\" : \"Honorario tarifa retainer\",\n \"U_FechaCreacionP\" : \"2021-02-26T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der.Mercantil-Banca\u0026Finanzas\",\n \"U_AbogadoEncargado\" : \"Teddy Mercado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 20,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"134\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Teddy Mercado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 2533,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000090-SR-000728\",\n \"Name\" : \"ADENDA CONTRATO DE PRESTAMO JUAN LUIS BRIANCON\",\n \"ValidFrom\" : \"2023-09-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 250.0,\n \"U_Comentarios\" : \"Se debe coordinar con notaría Dra. Caro la emisión de la factura por el formulario de reconocimiento de firmas\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"90\",\n \"U_ClienNom\" : \"CORPORACION ANDINA DE FOMENTO\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-09-22T00:00:00Z\",\n \"U_AreaProyecto\" : \"Comercial (Contratación, informes y otros)\",\n \"U_AbogadoEncargado\" : \"Teddy Alberto Mercado Carrion\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Teddy Alberto Mercado Carrion\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 4379,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000092-SR-000602\",\n \"Name\" : \"Servicios Legales Mensuales\",\n \"ValidFrom\" : \"2023-03-17T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"Empresa del Grupo Operadora Caribeña\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"92\",\n \"U_ClienNom\" : \"DISTRIFILMS SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-03-17T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"323\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : 4020,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000096-SR-000016\",\n \"Name\" : \"Servicios Legales Mensuales (FM)\",\n \"ValidFrom\" : \"2018-06-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2160.0,\n \"U_Comentarios\" : \"se cambio a sta cruz en fecha 29/04/2024 Se editan los honorarios segun correo del Dr. Rene Cuellar\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"96\",\n \"U_ClienNom\" : \"EXTERRAN BOLIVIA SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa retainer\",\n \"U_FechaCreacionP\" : \"2018-06-01T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"Paul Aramayo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 20,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"138\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Paul Aramayo\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 57,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000096-SR-000156\",\n \"Name\" : \"SEGUNDA VISA DE OBJETO DETERMINADO 90 DIAS - HORACIO RUEDA ARENAS\",\n \"ValidFrom\" : \"2019-08-23T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"BS\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 5538.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 5.538,32.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"96\",\n \"U_ClienNom\" : \"EXTERRAN BOLIVIA SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-08-23T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"BOL\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 1596,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000096-SR-000210\",\n \"Name\" : \"PERMANENCIA POR UN AÑO SIN CONTRATO EXTRANJERO- EXEQUIEL EMILIO PLAZA\",\n \"ValidFrom\" : \"2019-10-14T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"BS\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 10222.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 10.222,12.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"96\",\n \"U_ClienNom\" : \"EXTERRAN BOLIVIA SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-10-14T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"BOL\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 1737,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000096-SR-000304\",\n \"Name\" : \"Asesoria Legal Etapa Extrajudicial Exterrran v. Petrobras\",\n \"ValidFrom\" : \"2020-11-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 15000.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"96\",\n \"U_ClienNom\" : \"EXTERRAN BOLIVIA SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-11-30T00:00:00Z\",\n \"U_AreaProyecto\" : \"Arbitraje\",\n \"U_AbogadoEncargado\" : \"Andrés Moreno\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"351\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andrés Moreno\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2381,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000096-SR-000444\",\n \"Name\" : \"PERMANENCIA POR DOS AÑOS SIN CONTRATO EXTRANJERO + CEDULA - JAMIE MARIANNE MORALES HERNANDEZ\",\n \"ValidFrom\" : \"2021-12-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"BS\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 14829.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 14.829,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY HASTA LA CEDUAL DE IDENTIDAD DE EXTRANJEROS.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"96\",\n \"U_ClienNom\" : \"EXTERRAN BOLIVIA SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-12-29T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"BOL\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 3076,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000096-SR-000683\",\n \"Name\" : \"Informe anual de monitoreo medio ambiental 2023\",\n \"ValidFrom\" : \"2023-08-14T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2450.0,\n \"U_Comentarios\" : \"Cobrar de inmediato 50 %\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"96\",\n \"U_ClienNom\" : \"EXTERRAN BOLIVIA SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-08-14T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"André Tejerina\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"353\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"André Tejerina\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4260,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000096-SR-000811\",\n \"Name\" : \"ARBITRAJE INESCO VS EXTERRAN\",\n \"ValidFrom\" : \"2020-12-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 30000.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"96\",\n \"U_ClienNom\" : \"EXTERRAN BOLIVIA SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2020-12-11T00:00:00Z\",\n \"U_AreaProyecto\" : \"Arbitraje\",\n \"U_AbogadoEncargado\" : \"Andres Moreno Gutierrez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andres Moreno Gutierrez\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa por hitos\",\n \"U_CodAnterior\" : 2408,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000096-SR-000822\",\n \"Name\" : \"Proceso laboral Jorge Adalberto León Gurrieri contra EXTERRAN\",\n \"ValidFrom\" : \"2021-10-05T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"96\",\n \"U_ClienNom\" : \"EXTERRAN BOLIVIA SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2021-10-05T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Paul Aramayo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"1291\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Paul Aramayo\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 2947,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000096-SR-000823\",\n \"Name\" : \"Proceso laboral Marcelino Sotillo Ortega contra EXTERRAN\",\n \"ValidFrom\" : \"2021-10-05T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"96\",\n \"U_ClienNom\" : \"EXTERRAN BOLIVIA SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2021-10-05T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Paul Aramayo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"1292\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Paul Aramayo\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 2948,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000096-SR-000870\",\n \"Name\" : \"ARBITRAJE ENERFLEX (EXTERRAN) VS. INESCO 2023\",\n \"ValidFrom\" : \"2023-05-05T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 40000.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"96\",\n \"U_ClienNom\" : \"EXTERRAN BOLIVIA SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2023-05-05T00:00:00Z\",\n \"U_AreaProyecto\" : \"Arbitraje\",\n \"U_AbogadoEncargado\" : \"Andres Moreno Gutierrez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andres Moreno Gutierrez\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa por hitos\",\n \"U_CodAnterior\" : 4102,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000096-SR-000878\",\n \"Name\" : \"PROCESO LABORAL HECTOR HING MANRIQUE TANG CONTRA EXTERRAN\",\n \"ValidFrom\" : \"2023-09-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 14032.410,\n \"U_Comentarios\" : \"Coordinar el primer pago con el cliente\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"96\",\n \"U_ClienNom\" : \"EXTERRAN BOLIVIA SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2023-09-20T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Paul Aramayo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"1294\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Paul Aramayo\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 4368,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000096-SR-000879\",\n \"Name\" : \"PROCESO LABORAL JORGE ADOLFO OROSCO REYES CONTRA EXTERRAN\",\n \"ValidFrom\" : \"2023-09-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 8298.610000000001,\n \"U_Comentarios\" : \"Coordinar con el cliente el primer pago\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"96\",\n \"U_ClienNom\" : \"EXTERRAN BOLIVIA SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2023-09-20T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Paul Aramayo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"1295\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Paul Aramayo\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 4369,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:02-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:02-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=40\u0026%24top=20 | Status: 200 | Duration: 90.1425ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:02 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000096-SR-000880\",\n \"Name\" : \"PROCESO LABORAL WALTER ORTIZ ROMAN CONTRA EXTERRAN\",\n \"ValidFrom\" : \"2023-09-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 10008.050,\n \"U_Comentarios\" : \"a. 30% (Bs. 10.008,05) al momento de la creación del proyecto. b 30% (Bs. 10.008,05) apertura de t\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"96\",\n \"U_ClienNom\" : \"EXTERRAN BOLIVIA SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2023-09-20T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Paul Aramayo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"1296\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Paul Aramayo\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 4370,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000096-SR-000881\",\n \"Name\" : \"PROCESO LABORAL LISBER HARLEY CUELLAR ALBIS CONTRA EXTERRAN\",\n \"ValidFrom\" : \"2023-09-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 3720.020,\n \"U_Comentarios\" : \"Coordinar con el cliente el cobro del primer hito\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"96\",\n \"U_ClienNom\" : \"EXTERRAN BOLIVIA SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2023-09-20T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Paul Aramayo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"1297\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Paul Aramayo\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 4371,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000096-SR-000903\",\n \"Name\" : \"Revisión y actualización del Programa de Seguridad y Salud en el Trabajo (PSST) de oficina central\",\n \"ValidFrom\" : \"2022-09-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2000.0,\n \"U_Comentarios\" : \"Emitir la primera factura\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"96\",\n \"U_ClienNom\" : \"EXTERRAN BOLIVIA SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2022-09-13T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"André Tejerina\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"1400\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"André Tejerina\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3579,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000096-SR-001370\",\n \"Name\" : \"Informe de Monitoreo Ambiental 2024\",\n \"ValidFrom\" : \"2024-07-18T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"96\",\n \"U_ClienNom\" : \"EXTERRAN BOLIVIA SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Ambiental\",\n \"U_AbogadoEncargado\" : \"André Tejerina\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3150\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"André Tejerina\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000096-SR-001429\",\n \"Name\" : \"Subsanación Observaciones IMA\",\n \"ValidFrom\" : \"2024-08-14T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"96\",\n \"U_ClienNom\" : \"EXTERRAN BOLIVIA SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Ambiental\",\n \"U_AbogadoEncargado\" : \"André Tejerina\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3262\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"André Tejerina\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000096-SR-001435\",\n \"Name\" : \"Renovación de Autorización de Pozo de Agua\",\n \"ValidFrom\" : \"2024-08-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"96\",\n \"U_ClienNom\" : \"EXTERRAN BOLIVIA SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Ambiental\",\n \"U_AbogadoEncargado\" : \"André Tejerina\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3269\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"André Tejerina\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000096-SR-001594\",\n \"Name\" : \"PROCESO LABORAL DANIEL ALBERTO ALVAREZ CONTRA EXTERRAN BOLIVIA SRL\",\n \"ValidFrom\" : \"2024-09-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"POR HITOS\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"96\",\n \"U_ClienNom\" : \"EXTERRAN BOLIVIA SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Paul Aramayo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3449\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Paul Aramayo\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000096-SR-001945\",\n \"Name\" : \"Recurso Ordinario de Apelación - Proceso Judicial Jorge León Gutierri\",\n \"ValidFrom\" : \"2025-03-28T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"96\",\n \"U_ClienNom\" : \"EXTERRAN BOLIVIA SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Paul Aramayo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4084\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Paul Aramayo\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000096-SR-001946\",\n \"Name\" : \"APELACION SEGUNDA INSTANCIA PROCESO JUDICIAL MARCELINO SOTILLO\",\n \"ValidFrom\" : \"2025-03-28T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"96\",\n \"U_ClienNom\" : \"EXTERRAN BOLIVIA SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Paul Aramayo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4086\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Paul Aramayo\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000096-SR-001947\",\n \"Name\" : \"RECURSO DE CASACION - PROCESO JUDICIAL MARCELINO SOTILLO\",\n \"ValidFrom\" : \"2025-03-28T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"96\",\n \"U_ClienNom\" : \"EXTERRAN BOLIVIA SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Paul Aramayo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4088\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Paul Aramayo\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000096-SR-002145\",\n \"Name\" : \"Servicios de apoyo preparacion y llenado form RIOF\",\n \"ValidFrom\" : \"2025-07-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Servicios de preparación y envío de formularios RIOF al BCB\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"96\",\n \"U_ClienNom\" : \"EXTERRAN BOLIVIA SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4555\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000098-SR-000019\",\n \"Name\" : \"TRANSFERENCIA DE CUOTAS\",\n \"ValidFrom\" : \"2018-06-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"98\",\n \"U_ClienNom\" : \"GOJA BOLIVIA SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2018-06-20T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Andres Moreno Gutierrez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andres Moreno Gutierrez\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 58,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000098-SR-000407\",\n \"Name\" : \"Asesoría legal ambiental por horas\",\n \"ValidFrom\" : \"2021-07-23T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"98\",\n \"U_ClienNom\" : \"GOJA BOLIVIA SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa por hora\",\n \"U_FechaCreacionP\" : \"2021-07-23T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"13\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Juan Pablo Zegada\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : 2863,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000098-SR-001584\",\n \"Name\" : \"Gestión de Copias Legalizadas de Testimonios en La Paz\",\n \"ValidFrom\" : \"2024-09-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Bs. 700\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"98\",\n \"U_ClienNom\" : \"GOJA BOLIVIA SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Civil\",\n \"U_AbogadoEncargado\" : \"Teddy Mercado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3435\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Teddy Mercado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000099-SR-000030\",\n \"Name\" : \"INFORME LEGAL\",\n \"ValidFrom\" : \"2018-09-17T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"99\",\n \"U_ClienNom\" : \"IMASA BOLIVIA S.R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2018-09-17T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Andres Moreno Gutierrez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andres Moreno Gutierrez\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 60,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000099-SR-001296\",\n \"Name\" : \"Servicios Legales Mensuales (FM)\",\n \"ValidFrom\" : \"2024-06-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Este asunto es solo una parte del total que son 3 asuntos que suman todo el servicio. Esto por solic\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"99\",\n \"U_ClienNom\" : \"IMASA BOLIVIA S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"Fernando Landa\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3066\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Landa\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000099-SR-001300\",\n \"Name\" : \"Servicio de Representación Legal Mensual\",\n \"ValidFrom\" : \"2024-06-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Este servicio corresponde a una parte del total, ya que son 4 empresas a las cuales debemos facturar\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"99\",\n \"U_ClienNom\" : \"IMASA BOLIVIA S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"Fernando Landa\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3070\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Landa\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000099-SR-001423\",\n \"Name\" : \"Opinion Legal\",\n \"ValidFrom\" : \"2024-08-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"99\",\n \"U_ClienNom\" : \"IMASA BOLIVIA S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Contratación Pública\",\n \"U_AbogadoEncargado\" : \"Fernando Landa\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3249\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Landa\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000101-SR-000002\",\n \"Name\" : \"Servicios Legales Mensuales (FM)\",\n \"ValidFrom\" : \"2018-01-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"101\",\n \"U_ClienNom\" : \"INMARCA S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2018-01-01T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"409\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 61,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000101-SR-000440\",\n \"Name\" : \"Servicio de Outsourcing contable (FM)\",\n \"ValidFrom\" : \"2021-12-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 460.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"101\",\n \"U_ClienNom\" : \"INMARCA S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-12-15T00:00:00Z\",\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"410\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 3057,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:02-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:02-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=60\u0026%24top=20 | Status: 200 | Duration: 112.4263ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:02 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000102-SR-000021\",\n \"Name\" : \"ELABORACION LIBROS CORPORATIVOS\",\n \"ValidFrom\" : \"2018-07-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"102\",\n \"U_ClienNom\" : \"INVERSIONES INMOBILIARIAS IRALA S.A\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2018-07-02T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Rene Claure Veizaga\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Claure Veizaga\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 62,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000104-SR-000027\",\n \"Name\" : \"Demanda laboral por cobro de beneficios sociales\",\n \"ValidFrom\" : \"2018-08-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"Se ha hecho un pago el 2018 por Bs 7000 - Aproximado de Bs 150000 la demanda y la firma es un 10%\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"104\",\n \"U_ClienNom\" : \"JOHNNY ALDO ALIAGA TELLEZ\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2018-08-15T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"420\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 66,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000106-SR-000011\",\n \"Name\" : \"Arbitraje Urubó Golf\",\n \"ValidFrom\" : \"2018-02-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"106\",\n \"U_ClienNom\" : \"JORGE BALDIVIESO\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2018-02-01T00:00:00Z\",\n \"U_AreaProyecto\" : \"Arbitraje\",\n \"U_AbogadoEncargado\" : \"Andrés Moreno\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"421\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andrés Moreno\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : 68,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000108-SR-000014\",\n \"Name\" : \"PROCESO LABORAL RELIQUIDACION BENEFICIOS SOCIALES - RAUL AGUILERA VACA VS. JUGOS SRL\",\n \"ValidFrom\" : \"2018-05-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"108\",\n \"U_ClienNom\" : \"JUGOS BOLIVIANOS SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2018-05-24T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Tributario\",\n \"U_AbogadoEncargado\" : \"Paul Aramayo Salinas\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Paul Aramayo Salinas\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 70,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000110-SR-001308\",\n \"Name\" : \"Outsourcing contable (FM)\",\n \"ValidFrom\" : \"2024-06-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Servicios profesionales de tesorería y préstamo de cuentas bancarias para cobranza a las “Socied\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"110\",\n \"U_ClienNom\" : \"KUMON INSTITUTO DE EDUCAÇÃO LTDA.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3079\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000110-SR-001352\",\n \"Name\" : \"Outsourcing Treasury\",\n \"ValidFrom\" : \"2024-07-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Por servicios profesionales de tesorería y préstamo de cuentas bancarias para cobranza a las “So\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"110\",\n \"U_ClienNom\" : \"KUMON INSTITUTO DE EDUCAÇÃO LTDA.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3130\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000110-SR-001838\",\n \"Name\" : \"INFORME LEGAL LABORAL PARA CONTRATACIÓN DE PERSONAL\",\n \"ValidFrom\" : \"2025-01-23T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Bs. 18,000.00\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"110\",\n \"U_ClienNom\" : \"KUMON INSTITUTO DE EDUCAÇÃO LTDA.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Paul Aramayo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3849\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Paul Aramayo\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000110-SR-001991\",\n \"Name\" : \"Análisis de Contrato de Franquicia\",\n \"ValidFrom\" : \"2025-04-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"110\",\n \"U_ClienNom\" : \"KUMON INSTITUTO DE EDUCAÇÃO LTDA.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4220\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000113-SR-000003\",\n \"Name\" : \"GASTOS ADMINISTARTIVOS (FM)\",\n \"ValidFrom\" : \"2018-01-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"113\",\n \"U_ClienNom\" : \"MB LITIGIOS SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2018-01-01T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Limbert Alfredo Chalco Herrera\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Limbert Alfredo Chalco Herrera\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 74,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000114-SR-000604\",\n \"Name\" : \"Servicios Legales Mensuales\",\n \"ValidFrom\" : \"2023-03-17T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"114\",\n \"U_ClienNom\" : \"MEDIAFILMS SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-03-17T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"438\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : 4019,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000116-SR-000140\",\n \"Name\" : \"Venta Aeronave\",\n \"ValidFrom\" : \"2019-08-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 55000.0,\n \"U_Comentarios\" : \"50% después de cinco días de firmada la Iguala - Esperar comunicación para facturar\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"116\",\n \"U_ClienNom\" : \"MINERA SAN CRISTOBAL SA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-08-09T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"440\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1546,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000118-SR-000017\",\n \"Name\" : \"ACTIVIDADES PRE-ARBITRALES\",\n \"ValidFrom\" : \"2018-06-04T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"118\",\n \"U_ClienNom\" : \"NACIONAL SEGUROS PATRIMONIALES Y FIANZAS S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2018-06-04T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Andres Moreno Gutierrez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andres Moreno Gutierrez\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 78,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000118-SR-000268\",\n \"Name\" : \"Reestructuración laboral - Nacional Seguros Patrimoniales\",\n \"ValidFrom\" : \"2020-08-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2600.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"118\",\n \"U_ClienNom\" : \"NACIONAL SEGUROS PATRIMONIALES Y FIANZAS S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-08-12T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Andres Moreno Gutierrez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"443\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andres Moreno Gutierrez\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2213,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000118-SR-000466\",\n \"Name\" : \"Patrocinio Arbitraje - Cartellone - Servicio mensual\",\n \"ValidFrom\" : \"2022-02-10T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 10500.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"118\",\n \"U_ClienNom\" : \"NACIONAL SEGUROS PATRIMONIALES Y FIANZAS S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-02-10T00:00:00Z\",\n \"U_AreaProyecto\" : \"Arbitraje\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"444\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3160,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000118-SR-000612\",\n \"Name\" : \"Asesoría especializada en seguros y arbitrajes U150K U$\",\n \"ValidFrom\" : \"2023-04-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2011.450,\n \"U_Comentarios\" : \"Favor facturar el primer mes ahora y luego durante los siguientes diez días del mes\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"118\",\n \"U_ClienNom\" : \"NACIONAL SEGUROS PATRIMONIALES Y FIANZAS S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-04-11T00:00:00Z\",\n \"U_AreaProyecto\" : \"Seguros y Reaseguros\",\n \"U_AbogadoEncargado\" : \"Andrés Moreno\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"445\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andrés Moreno\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 4045,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000118-SR-000807\",\n \"Name\" : \"SINIESTRO CAUCIONES CARTELLONE\",\n \"ValidFrom\" : \"2020-08-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 15000.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"118\",\n \"U_ClienNom\" : \"NACIONAL SEGUROS PATRIMONIALES Y FIANZAS S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2020-08-13T00:00:00Z\",\n \"U_AreaProyecto\" : \"Arbitraje\",\n \"U_AbogadoEncargado\" : \"Andres Moreno Gutierrez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andres Moreno Gutierrez\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa por hitos\",\n \"U_CodAnterior\" : 2214,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000118-SR-000838\",\n \"Name\" : \"Acciones Legales Convisa - Repetición Pólizas de Seguro\",\n \"ValidFrom\" : \"2022-07-19T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 4000.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"118\",\n \"U_ClienNom\" : \"NACIONAL SEGUROS PATRIMONIALES Y FIANZAS S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2022-07-19T00:00:00Z\",\n \"U_AreaProyecto\" : \"Litigios\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"1324\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 3490,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000118-SR-000900\",\n \"Name\" : \"INFORME LEGAL - REDUCCION IMPORTE GARANTIA ABC - CONVISA\",\n \"ValidFrom\" : \"2022-02-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 650.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"118\",\n \"U_ClienNom\" : \"NACIONAL SEGUROS PATRIMONIALES Y FIANZAS S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2022-02-01T00:00:00Z\",\n \"U_AreaProyecto\" : \"Seguros y Reaseguros\",\n \"U_AbogadoEncargado\" : \"Rene Claure Veizaga\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Claure Veizaga\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 3142,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000118-SR-000901\",\n \"Name\" : \"Arbitraje Fernando Walter Campbell\",\n \"ValidFrom\" : \"2023-12-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"30% al inicio del servicio - ahora, 40% con la contestación a la demanda y 30% final antes de la Au\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"118\",\n \"U_ClienNom\" : \"NACIONAL SEGUROS PATRIMONIALES Y FIANZAS S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2023-12-20T00:00:00Z\",\n \"U_AreaProyecto\" : \"Arbitraje\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"1493\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 4666,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000118-SR-001005\",\n \"Name\" : \"Servicios Legales Mensuales (FM)\",\n \"ValidFrom\" : \"2024-02-05T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"118\",\n \"U_ClienNom\" : \"NACIONAL SEGUROS PATRIMONIALES Y FIANZAS S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Seguros y Reaseguros\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2305\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:02-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:02-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=80\u0026%24top=20 | Status: 200 | Duration: 120.2881ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:02 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000118-SR-001617\",\n \"Name\" : \"Defensa Administrativa Caso Velarde\",\n \"ValidFrom\" : \"2024-10-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"118\",\n \"U_ClienNom\" : \"NACIONAL SEGUROS PATRIMONIALES Y FIANZAS S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Seguros y Reaseguros\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3470\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000118-SR-001618\",\n \"Name\" : \"Recurso de Revocatoria Caso Velarde\",\n \"ValidFrom\" : \"2024-10-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"118\",\n \"U_ClienNom\" : \"NACIONAL SEGUROS PATRIMONIALES Y FIANZAS S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Seguros y Reaseguros\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3471\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000118-SR-001619\",\n \"Name\" : \"Recurso Jerárquico Caso Velarde\",\n \"ValidFrom\" : \"2024-10-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"118\",\n \"U_ClienNom\" : \"NACIONAL SEGUROS PATRIMONIALES Y FIANZAS S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Seguros y Reaseguros\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3472\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000118-SR-001889\",\n \"Name\" : \"Informe Legal - Cumplimiento\",\n \"ValidFrom\" : \"2025-02-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"118\",\n \"U_ClienNom\" : \"NACIONAL SEGUROS PATRIMONIALES Y FIANZAS S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Compliance\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3915\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000119-SR-000038\",\n \"Name\" : \"Servicios Legales Mensuales(FM)\",\n \"ValidFrom\" : \"2019-01-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 12180.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"119\",\n \"U_ClienNom\" : \"OPERADORA CARIBEÑA SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa retainer\",\n \"U_FechaCreacionP\" : \"2019-01-21T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 25,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"142\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 1108,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000119-SR-000190\",\n \"Name\" : \"PERMANENCIA POR UN AÑO SIN CONTRATO EXTRANJERO-GUILLERMO JESUS CASTRILLO VALLES\",\n \"ValidFrom\" : \"2019-09-23T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 9466.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 9.466,65.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"119\",\n \"U_ClienNom\" : \"OPERADORA CARIBEÑA SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-09-23T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"452\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1683,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000119-SR-000228\",\n \"Name\" : \"PERMANENCIA TEMPORAL POR UN AÑO POR TRABAJO- FRANKLIN GIOVANNY DIAZ DURAN\",\n \"ValidFrom\" : \"2020-01-27T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 9466.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 9.466,65.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"119\",\n \"U_ClienNom\" : \"OPERADORA CARIBEÑA SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-01-27T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"453\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1890,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000119-SR-000229\",\n \"Name\" : \"CÉDULA DE EXTRANJERO- GUILLERMO JESUS CASTRILLO VALLES\",\n \"ValidFrom\" : \"2020-01-27T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1794.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 1.794,47.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"119\",\n \"U_ClienNom\" : \"OPERADORA CARIBEÑA SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-01-27T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"454\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1893,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000119-SR-000237\",\n \"Name\" : \"CÉDULA DE EXTRANJERO- FRANKLIN GIOVANNY DIAZ DURAN\",\n \"ValidFrom\" : \"2020-02-18T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1794.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS.1.794,47.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"119\",\n \"U_ClienNom\" : \"OPERADORA CARIBEÑA SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-02-18T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"455\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1951,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000119-SR-000265\",\n \"Name\" : \"RESIDENCIA MERCOSUR PERMANENTE- DARWIN OMAR CARDENAS PORTILLO\",\n \"ValidFrom\" : \"2020-07-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 7105.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 7.105,93.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"119\",\n \"U_ClienNom\" : \"OPERADORA CARIBEÑA SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-07-22T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"456\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2183,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000119-SR-000308\",\n \"Name\" : \"RENOVACIÓN PERMANENCIA POR UN AÑO SIN CONTRATO EXTRANJERO- GUILLERMO JESUS CASTRILLO VALLES\",\n \"ValidFrom\" : \"2020-12-10T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 9466.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 9.466.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"119\",\n \"U_ClienNom\" : \"OPERADORA CARIBEÑA SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-12-10T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"457\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2405,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000119-SR-000309\",\n \"Name\" : \"RENOVACIÓN PERMANENCIA POR UN AÑO SIN CONTRATO EXTRANJERO- RAFAEL RENE RAMIREZ HERNANDEZ\",\n \"ValidFrom\" : \"2020-12-10T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 9466.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE 9.466,65.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"119\",\n \"U_ClienNom\" : \"OPERADORA CARIBEÑA SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-12-10T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"458\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2406,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000119-SR-000314\",\n \"Name\" : \"RENOVACIÓN CÉDULA DE EXTRANJERO- GUILLERMO JESUS CASTRILLO VALLES\",\n \"ValidFrom\" : \"2020-12-23T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1794.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE bS, 1,794,47.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"119\",\n \"U_ClienNom\" : \"OPERADORA CARIBEÑA SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-12-23T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"459\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2417,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000119-SR-000320\",\n \"Name\" : \"RENOVACIÓN CÉDULA DE EXTRANJERO- RAFAEL RENE RAMIREZ HERNANDEZ\",\n \"ValidFrom\" : \"2020-12-31T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1794.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 1.794,47.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"119\",\n \"U_ClienNom\" : \"OPERADORA CARIBEÑA SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-12-31T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"460\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2434,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000119-SR-000328\",\n \"Name\" : \"RENOVACIÓN PERMANENCIA TEMPORAL POR UN AÑO POR TRABAJO- FRANKLIN GIOVANNY DIAZ DURAN\",\n \"ValidFrom\" : \"2021-01-28T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 9444.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 9.444,65.- INCLUYEN GASTOS E IMPUESTOS DE LEY\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"119\",\n \"U_ClienNom\" : \"OPERADORA CARIBEÑA SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-01-28T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"461\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2493,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000119-SR-000343\",\n \"Name\" : \"OBTENCION DE PERSONALIDAD JURIDICA DE CAMARA DEL CINE\",\n \"ValidFrom\" : \"2021-03-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 3000.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"119\",\n \"U_ClienNom\" : \"OPERADORA CARIBEÑA SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-03-30T00:00:00Z\",\n \"U_AreaProyecto\" : \"Civil (Contratación, informes y otros)\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 2588,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000119-SR-000453\",\n \"Name\" : \"RENOVACION 3 CEDULA EXTRANJERA - RAFAEL RENE RAMIREZ HERNADEZ\",\n \"ValidFrom\" : \"2022-01-18T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1794.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 1794.47 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"119\",\n \"U_ClienNom\" : \"OPERADORA CARIBEÑA SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-01-18T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"463\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3107,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000119-SR-000467\",\n \"Name\" : \"SEGUNDA RENOVACIÓN PERMANENCIA TEMPORAL POR UN AÑO POR TRABAJO- FRANKLIN GIOVANNY DIAZ DURAN\",\n \"ValidFrom\" : \"2022-02-10T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 9444.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 9444.15 INCLUYEN GASTOS E IMPUESTO DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"119\",\n \"U_ClienNom\" : \"OPERADORA CARIBEÑA SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-02-10T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"464\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3161,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000119-SR-000476\",\n \"Name\" : \"RENOVACIÓN SEGUNDA CÉDULA DE EXTRANJERO- FRANKLIN GIOVANNY DIAZ DURAN\",\n \"ValidFrom\" : \"2022-02-16T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1794.0,\n \"U_Comentarios\" : \"LO HONORARIOS DE BS. 1974.47 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"119\",\n \"U_ClienNom\" : \"OPERADORA CARIBEÑA SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-02-16T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"465\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3180,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000119-SR-000494\",\n \"Name\" : \"OBTENCION DE VISA MERCOSUR POR 2 AÑOS - EDGARDO NICANOR JESUS CHUFANDAMA RUMUACCA\",\n \"ValidFrom\" : \"2022-05-05T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 5849.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 5849.10 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"119\",\n \"U_ClienNom\" : \"OPERADORA CARIBEÑA SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-05-05T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"466\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3373,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:02-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:02-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=100\u0026%24top=20 | Status: 200 | Duration: 113.8445ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:02 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000119-SR-000562\",\n \"Name\" : \"PERMANENCIA INDEFINIDA - GUILLERMO JESUS CASTRILLO VALLES\",\n \"ValidFrom\" : \"2022-12-19T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 16051.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 16051.19 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"119\",\n \"U_ClienNom\" : \"OPERADORA CARIBEÑA SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-12-19T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"467\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3778,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000119-SR-000898\",\n \"Name\" : \"TRAMITES MIGRATORIOS\",\n \"ValidFrom\" : \"2022-12-19T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"119\",\n \"U_ClienNom\" : \"OPERADORA CARIBEÑA SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-12-19T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"1396\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000119-SR-001217\",\n \"Name\" : \"RESIDENCIA DEFINITIVA MERCOSUR - EDGARDO NICANOR JESUS CHUFANDAMA RUMUACCAA\",\n \"ValidFrom\" : \"2024-05-06T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"100% Final\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"119\",\n \"U_ClienNom\" : \"OPERADORA CARIBEÑA SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2926\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000119-SR-001218\",\n \"Name\" : \"CEDULA PARA EXTRANJERO - EDGARDO NICANOR JESUS CHUFANDAMA RUMUACCA\",\n \"ValidFrom\" : \"2024-05-06T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"100% Final\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"119\",\n \"U_ClienNom\" : \"OPERADORA CARIBEÑA SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2927\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000119-SR-001759\",\n \"Name\" : \"Permanencia indefinida - RAFAEL RENE RAMIREZ HERNANDEZ\",\n \"ValidFrom\" : \"2024-12-04T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"119\",\n \"U_ClienNom\" : \"OPERADORA CARIBEÑA SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3734\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000119-SR-001791\",\n \"Name\" : \"Renovacion cedula de extranjero - Rafael Rene Ramírez Hernández\",\n \"ValidFrom\" : \"2024-12-19T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"119\",\n \"U_ClienNom\" : \"OPERADORA CARIBEÑA SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3777\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000119-SR-001965\",\n \"Name\" : \"Certificado de trabajo Notariado y con apostillas de la Haya - DARWIN OMAR CARDENAS GORDILLO\",\n \"ValidFrom\" : \"2025-04-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"119\",\n \"U_ClienNom\" : \"OPERADORA CARIBEÑA SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4186\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000119-SR-002108\",\n \"Name\" : \"REESTRUCTURACION LABORAL SUCURSAL RIBERALTA\",\n \"ValidFrom\" : \"2025-07-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Facturar por favor el 50 % ahora mismo y el restante 50% a la conclusión del servicio\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"119\",\n \"U_ClienNom\" : \"OPERADORA CARIBEÑA SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : null,\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4514\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Paul Aramayo\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000120-SR-000012\",\n \"Name\" : \"Servicios Legales Mensuales (FM)\",\n \"ValidFrom\" : \"2018-02-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1000.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"120\",\n \"U_ClienNom\" : \"PEDIDOSYA SERVICIOS S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa retainer\",\n \"U_FechaCreacionP\" : \"2018-02-20T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"Ines Ayala\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 10,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"145\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ines Ayala\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 82,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000120-SR-000029\",\n \"Name\" : \"Honorarios Sindico (FM)\",\n \"ValidFrom\" : \"2018-09-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"120\",\n \"U_ClienNom\" : \"PEDIDOSYA SERVICIOS S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2018-09-01T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"468\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 83,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000120-SR-000825\",\n \"Name\" : \"Proceso Laboral por beneficios sociales interpuesto por 8 Riders\",\n \"ValidFrom\" : \"2021-11-03T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"120\",\n \"U_ClienNom\" : \"PEDIDOSYA SERVICIOS S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2021-11-03T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Paul Aramayo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"1333\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Paul Aramayo\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 2984,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000120-SR-001247\",\n \"Name\" : \"Fusión por Absorción\",\n \"ValidFrom\" : \"2024-05-28T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"120\",\n \"U_ClienNom\" : \"PEDIDOSYA SERVICIOS S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2991\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000120-SR-001848\",\n \"Name\" : \"Servicios legales para DeliveryHero\",\n \"ValidFrom\" : \"2025-01-28T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"DeliveryHero fue absorbida por PedidosYa. Sin embargo, al ser dos negocios internos separados, la ab\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"120\",\n \"U_ClienNom\" : \"PEDIDOSYA SERVICIOS S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Ines Ayala\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3860\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ines Ayala\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000120-SR-001874\",\n \"Name\" : \"Residencia Migratoria para Alex Gejtman y pareja\",\n \"ValidFrom\" : \"2025-02-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"120\",\n \"U_ClienNom\" : \"PEDIDOSYA SERVICIOS S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3898\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000120-SR-001981\",\n \"Name\" : \"PROCESO POR INFRACCIÓN A LEYES SOCIALES (MINISTERIO DE TRABAJO)\",\n \"ValidFrom\" : \"2025-04-16T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"120\",\n \"U_ClienNom\" : \"PEDIDOSYA SERVICIOS S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Paul Aramayo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4209\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Paul Aramayo\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000123-SR-000023\",\n \"Name\" : \"ELABORACION DOCUMENTO RECONOCIMIENTO DE DEUDA - VENTAS A CREDITO\",\n \"ValidFrom\" : \"2018-07-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"123\",\n \"U_ClienNom\" : \"RODRIGO, ELÌAS \u0026 MEDRANO\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2018-07-09T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Andres Moreno Gutierrez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andres Moreno Gutierrez\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 94,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000126-SR-000162\",\n \"Name\" : \"RESIDENCIA MERCOSUR POR 2 AÑOS + CÉDULA DE EXTRANJERO + AUTORIZACIÓN EXTRAORDINARIA - FRANCISCO\",\n \"ValidFrom\" : \"2019-08-23T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 9035.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 9.035,57.- incluyen gastos e impuestos de ley.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"126\",\n \"U_ClienNom\" : \"SOLARIS BOLIVIA SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-08-23T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"727\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1592,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000126-SR-000438\",\n \"Name\" : \"SERVICIO OUTSOURCING MENSUAL\",\n \"ValidFrom\" : \"2021-12-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1480.0,\n \"U_Comentarios\" : \"Los honorarios varian entre $us 1480 y $us 1800.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"126\",\n \"U_ClienNom\" : \"SOLARIS BOLIVIA SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-12-02T00:00:00Z\",\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado Ramirez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado Ramirez\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 3040,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000126-SR-000904\",\n \"Name\" : \"REGISTROS SANITARIOS\",\n \"ValidFrom\" : \"2018-10-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1480.0,\n \"U_Comentarios\" : \"Los honorarios varian entre $us 1480 y $us 1800.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"126\",\n \"U_ClienNom\" : \"SOLARIS BOLIVIA SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2018-10-01T00:00:00Z\",\n \"U_AreaProyecto\" : \"Registros Sanitarios\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado Ramirez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Jose Sanchez Peña Von Nagy\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000126-SR-000905\",\n \"Name\" : \"Domicilio Legal (FM)\",\n \"ValidFrom\" : \"2018-11-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"SE DEBE FACTURAR DESDE SEPTIEMBRE\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"126\",\n \"U_ClienNom\" : \"SOLARIS BOLIVIA SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2018-11-01T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"1461\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:02-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:02-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=120\u0026%24top=20 | Status: 200 | Duration: 113.8666ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:03 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000126-SR-000906\",\n \"Name\" : \"Outsooucing Contable (FM)\",\n \"ValidFrom\" : \"2018-11-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"POR COMPROBANTE SE COBRARA US$ 10\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"126\",\n \"U_ClienNom\" : \"SOLARIS BOLIVIA SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2018-11-01T00:00:00Z\",\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"1462\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000126-SR-001039\",\n \"Name\" : \"Poder transferencia de cuotas de capital Francisco Siredey\",\n \"ValidFrom\" : \"2024-02-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"pago 100% al final\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"126\",\n \"U_ClienNom\" : \"SOLARIS BOLIVIA SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2352\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000126-SR-001083\",\n \"Name\" : \"Actas de Cierre gestiones 2019-2023\",\n \"ValidFrom\" : \"2024-02-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"100% al final\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"126\",\n \"U_ClienNom\" : \"SOLARIS BOLIVIA SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Rene Claure Veizaga\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2554\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Claure Veizaga\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000126-SR-001267\",\n \"Name\" : \"Convenio de Incremento Salarial 2024 y Homologación\",\n \"ValidFrom\" : \"2024-06-06T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"126\",\n \"U_ClienNom\" : \"SOLARIS BOLIVIA SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Rene Claure Veizaga\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3025\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Claure Veizaga\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000126-SR-001318\",\n \"Name\" : \"Transferencia de cuotas de capital a favor de Pharmaris Latam\",\n \"ValidFrom\" : \"2024-06-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"126\",\n \"U_ClienNom\" : \"SOLARIS BOLIVIA SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3089\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000126-SR-001635\",\n \"Name\" : \"REDACCION CONTRATO DE PASANTIA - INFORME LEGAL\",\n \"ValidFrom\" : \"2024-10-10T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Cobrar una vez emitido el documento e informe y absueltas las consultas y complementaciones.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"126\",\n \"U_ClienNom\" : \"SOLARIS BOLIVIA SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Natalio Zegarra\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3488\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Natalio Zegarra\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000126-SR-001802\",\n \"Name\" : \"Obtención de Contratos Laborales Duplicados\",\n \"ValidFrom\" : \"2024-12-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"126\",\n \"U_ClienNom\" : \"SOLARIS BOLIVIA SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Noelia Sanjinés\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3790\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Noelia Sanjinés\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000126-SR-001943\",\n \"Name\" : \"Cierre de Gestión 2024\",\n \"ValidFrom\" : \"2025-03-26T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"126\",\n \"U_ClienNom\" : \"SOLARIS BOLIVIA SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"José María Navarro\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"4063\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"José María Navarro\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000128-SR-000026\",\n \"Name\" : \"Servicios Legales Mensuales por Horas (FM)\",\n \"ValidFrom\" : \"2018-08-10T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"128\",\n \"U_ClienNom\" : \"TEXTILES LAFAYETTE BOLIVIA S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa por hora\",\n \"U_FechaCreacionP\" : \"2018-08-10T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"22\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : 102,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000128-SR-000074\",\n \"Name\" : \"Representación Legal\",\n \"ValidFrom\" : \"2019-04-03T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 350.0,\n \"U_Comentarios\" : \"Comenzar a cobrar a partir de abril 2019 a partir de mes de julio 2024 se disminuye los honorarios a\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"128\",\n \"U_ClienNom\" : \"TEXTILES LAFAYETTE BOLIVIA S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-04-03T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"760\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 1278,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000128-SR-001336\",\n \"Name\" : \"Representación Legal (04/2020 - 12/2023)\",\n \"ValidFrom\" : \"2024-07-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Se ajustó el honorario a un monto mensual de USD. 250.-\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"128\",\n \"U_ClienNom\" : \"TEXTILES LAFAYETTE BOLIVIA S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3111\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000128-SR-001337\",\n \"Name\" : \"Representación Legal (01/2024 - 04/2024)\",\n \"ValidFrom\" : \"2024-07-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"128\",\n \"U_ClienNom\" : \"TEXTILES LAFAYETTE BOLIVIA S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3112\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000129-SR-000031\",\n \"Name\" : \"INFORME LEGAL\",\n \"ValidFrom\" : \"2018-09-17T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"129\",\n \"U_ClienNom\" : \"VALORIZA SERVICIOS MEDIOAMBIENTALES BOLIVIA S.R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2018-09-17T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Andres Moreno Gutierrez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andres Moreno Gutierrez\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 103,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000129-SR-000907\",\n \"Name\" : \"Informe legal sobre ejecución de las Boletas de Garantía\",\n \"ValidFrom\" : \"2019-12-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 10000.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"129\",\n \"U_ClienNom\" : \"VALORIZA SERVICIOS MEDIOAMBIENTALES BOLIVIA S.R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-12-09T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Andres Moreno Gutierrez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"1401\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andres Moreno Gutierrez\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1820,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000129-SR-001297\",\n \"Name\" : \"Servicios Legales Mensuales (FM)\",\n \"ValidFrom\" : \"2024-06-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"129\",\n \"U_ClienNom\" : \"VALORIZA SERVICIOS MEDIOAMBIENTALES BOLIVIA S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"Fernando Landa\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3067\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Landa\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000129-SR-001299\",\n \"Name\" : \"Servicio de Representación Legal Mensual\",\n \"ValidFrom\" : \"2024-06-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"129\",\n \"U_ClienNom\" : \"VALORIZA SERVICIOS MEDIOAMBIENTALES BOLIVIA S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"Fernando Landa\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3069\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Landa\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000129-SR-001347\",\n \"Name\" : \"Capitalización\",\n \"ValidFrom\" : \"2024-07-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"129\",\n \"U_ClienNom\" : \"VALORIZA SERVICIOS MEDIOAMBIENTALES BOLIVIA S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Carlos Fernando Landa Alejandro\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3125\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Carlos Fernando Landa Alejandro\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000129-SR-001424\",\n \"Name\" : \"Opinion Legal\",\n \"ValidFrom\" : \"2024-08-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"129\",\n \"U_ClienNom\" : \"VALORIZA SERVICIOS MEDIOAMBIENTALES BOLIVIA S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Contratación Pública\",\n \"U_AbogadoEncargado\" : \"Fernando Landa\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3250\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Landa\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000018\",\n \"Name\" : \"REUNION ENDE\",\n \"ValidFrom\" : \"2018-06-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2018-06-11T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Teddy Alberto Mercado Carrion\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Teddy Alberto Mercado Carrion\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 106,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000022\",\n \"Name\" : \"PRESENTACION DE DOCUMENTOS Y GARANTIAS ENDE\",\n \"ValidFrom\" : \"2018-07-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2018-07-02T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Ariel Zeballos Alaby\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Zeballos Alaby\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 105,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:03-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:03-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=140\u0026%24top=20 | Status: 200 | Duration: 106.817ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:03 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000130-SR-000206\",\n \"Name\" : \"PERMANENCIA POR UN AÑO SIN CONTRATO EXTRANJERO- LEIVER AQUINO VICENTE\",\n \"ValidFrom\" : \"2019-10-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 10046.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 10.046,06.- INCLUYEN GASTOS E IMPUESTOS DE LEY. FACTURADO EN SAP 31/08/2024 SE\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-10-09T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"778\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1722,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000226\",\n \"Name\" : \"CÉDULA DE EXTRANJERO - LEIVER AQUINO VICENTE\",\n \"ValidFrom\" : \"2020-01-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1794.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 1.794,47.- INCLUYEN GASTOS E IMPUESTOS DE LEY./ Segun triveño Inactivar - por\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-01-15T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"779\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1877,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000247\",\n \"Name\" : \"PERMANENCIA POR UN AÑO SIN CONTRATO EXTRANJERO- RAMSES ARIEL LEYVA ARMENTA\",\n \"ValidFrom\" : \"2020-03-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 9444.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 9.444,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-03-09T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"780\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1998,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000252\",\n \"Name\" : \"PERMANENCIA TRANSITORIA 180 DÍAS - ALFONSO MARAGOTO POLO\",\n \"ValidFrom\" : \"2020-03-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 6018.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE 6.018,89.- INCLUYEN GASTOS E IMPUESTOS DE LEY\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-03-12T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"781\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2004,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000275\",\n \"Name\" : \"PERMANENCIA POR UN AÑO SIN CONTRATO EXTRANJERO- TOMAS MOGUEL CANTO\",\n \"ValidFrom\" : \"2020-08-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 10046.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 10.046,06.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-08-24T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"782\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2222,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000276\",\n \"Name\" : \"PERMANENCIA TEMPORAL POR UN AÑO SIN CONTRATO EXTRANJERO - HONEY CARBALLO CARRASCO\",\n \"ValidFrom\" : \"2020-08-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 10046.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 10.046,06.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-08-24T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"783\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2223,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000277\",\n \"Name\" : \"PERMANENCIA TEMPORAL POR UN AÑO SIN CONTRATO EXTRANJERO - ALFONSO MARAGOTO POLO\",\n \"ValidFrom\" : \"2020-08-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 10046.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 10.046,06.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-08-24T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"784\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2224,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000295\",\n \"Name\" : \"RENOVACIÓN CÉDULA DE EXTRANJERO- TOMAS MOGUEL CANTO\",\n \"ValidFrom\" : \"2020-11-05T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1901.0,\n \"U_Comentarios\" : \"HONORARIOS DE BS. 1901,95.- INCLUYEN GASTOS E IMPUESTOS DE LEY./ segun triveño Inactivar - por acue\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-11-05T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"785\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2340,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000296\",\n \"Name\" : \"RENOVACIÓN CÉDULA DE EXTRANJERO- HONEY CARBALLO CARRASCO\",\n \"ValidFrom\" : \"2020-11-05T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1901.0,\n \"U_Comentarios\" : \"HONORARIOS DE BS. 1901,95.- INCLUYEN GASTOS E IMPUESTOS DE LEY./ segun triveño Inactivar - por acue\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-11-05T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"786\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2341,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000297\",\n \"Name\" : \"RENOVACION DE PERMANENCIA POR UN AÑO SIN CONTRATO EXTRANJERO- LEIVER AQUINO VICENTE\",\n \"ValidFrom\" : \"2020-11-05T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 10046.0,\n \"U_Comentarios\" : \"HONORARIOS DE BS. 10.046,06.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-11-05T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"787\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2342,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000298\",\n \"Name\" : \"RENOVACIÓN CÉDULA DE EXTRANJERO- VICENTE LEIBER AQUINO\",\n \"ValidFrom\" : \"2020-11-05T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1901.0,\n \"U_Comentarios\" : \"HONORARIOS DE BS. 1901,95.- INCLUYEN GASTOS E IMPUESTOS DE LEY./ segun triveño Inactivar - por acue\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-11-05T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"788\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2343,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000318\",\n \"Name\" : \"CÉDULA DE EXTRANJERO - ALFONSO MARAGOTO POLO\",\n \"ValidFrom\" : \"2020-12-23T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1794.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 1.794,47.- INCLUYE GASTOS E IMPUESTOS DE LEY/ segun triveño Inactivar - por a\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-12-23T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"789\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2423,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000359\",\n \"Name\" : \"PERMANENCIA TRANSITORIA POR 30 DÍAS - IVAN ALEJANDRO SANTOS GONZALES\",\n \"ValidFrom\" : \"2021-04-19T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2298.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 2,298,39.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-04-19T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"790\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2634,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000360\",\n \"Name\" : \"PERMANENCIA TRANSITORIA POR 30 DÍAS - MARCELO RUBEN ENTRAIGAS\",\n \"ValidFrom\" : \"2021-04-19T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2298.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 2,298,39.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-04-19T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"791\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2635,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000361\",\n \"Name\" : \"PERMANENCIA TRANSITORIA POR 30 DÍAS - IGNACIO ESTEBAN BUSTOS SAAVEDRA\",\n \"ValidFrom\" : \"2021-04-19T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2298.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 2,298,39.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-04-19T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"792\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2636,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000362\",\n \"Name\" : \"PERMANENCIA TRANSITORIA POR 30 DÍAS - YORDAN GEOVANNI SALAS CARVAJAL\",\n \"ValidFrom\" : \"2021-04-19T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2298.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 2,298,39.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-04-19T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"793\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2637,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000363\",\n \"Name\" : \"PERMANENCIA TRANSITORIA POR 90 DÍAS - IGNACIO ESTEBAN BUSTOS SAAVEDRA\",\n \"ValidFrom\" : \"2021-04-19T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2298.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 5.368,22.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-04-19T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"794\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2638,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000364\",\n \"Name\" : \"PERMANENCIA TRANSITORIA POR 90 DÍAS - MARCELO RUBEN ENTRAIGAS\",\n \"ValidFrom\" : \"2021-04-19T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 5368.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 5,368,22.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-04-19T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"795\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2639,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000365\",\n \"Name\" : \"PERMANENCIA TRANSITORIA POR 90 DÍAS - IVAN ALEJANDRO SANTOS GONZALES\",\n \"ValidFrom\" : \"2021-04-19T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 5368.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 5,368,22.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-04-19T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"796\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2640,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000366\",\n \"Name\" : \"PERMANENCIA TRANSITORIA POR 90 DÍAS - YORDAN GEOVANNI SALAS CARVAJAL\",\n \"ValidFrom\" : \"2021-04-19T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 5368.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 5,368,22.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-04-19T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"797\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2641,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:03-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:03-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=160\u0026%24top=20 | Status: 200 | Duration: 109.3498ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:03 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000130-SR-000375\",\n \"Name\" : \"AUTORIZACIÓN DE REGISTRO DE INVITACIÓN 30 DÍAS - JUAN GERARDO TOLENTINO FUNAMOTO\",\n \"ValidFrom\" : \"2021-05-18T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2496.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 2.496,13.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-05-18T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"798\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2692,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000381\",\n \"Name\" : \"EXTENCION DE PERMANENCIA TRANSITORIA POR 30 DÍAS - IGNACIO ESTEBAN BUSTOS SAAVEDRA\",\n \"ValidFrom\" : \"2021-05-26T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 4807.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 4.807,13.- INCLUYE GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-05-26T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"799\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2709,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000382\",\n \"Name\" : \"EXTENCION PERMANENCIA TRANSITORIA POR 30 DÍAS - YORDAN GEOVANNI SALAS CARVAJAL\",\n \"ValidFrom\" : \"2021-05-26T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 4807.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 4.807,13.- INCLUYE GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-05-26T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"800\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2710,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000389\",\n \"Name\" : \"PERMANENCIA TRANSITORIA POR 90 DÍAS - JUAN GERARDO TOLENTINO FUNAMOTO\",\n \"ValidFrom\" : \"2021-06-16T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 5763.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 5763,71.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-06-16T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"801\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2743,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000399\",\n \"Name\" : \"VISA MERCOSUR DE 2 AÑOS - IGNACIO ESTEBAN BUSTOS SAAVEDRA\",\n \"ValidFrom\" : \"2021-07-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 913.0,\n \"U_Comentarios\" : \"LOS HONORARIOS USD. 913.26 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-07-07T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"802\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2784,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000400\",\n \"Name\" : \"VISA MERCOSUR DE 2 AÑOS - YORDAN GIOVANNI SALAS CARVAJAL\",\n \"ValidFrom\" : \"2021-07-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 913.0,\n \"U_Comentarios\" : \"LOS HONORARIOS USD. 913.26 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-07-07T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"803\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2785,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000405\",\n \"Name\" : \"CÉDULA DE EXTRANJERO - YORDAN GIOVANNI SALAS CARVAJAL\",\n \"ValidFrom\" : \"2021-07-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1901.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 1.901, 95.- INCLUYEN GASTOS E IMPUESTOS DE LEY./ segun triveño Inactivar - po\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-07-22T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"804\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2855,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000406\",\n \"Name\" : \"CÉDULA DE EXTRANJERO - IGNACIO ESTEBAN BUSTOS SAAVEDRA\",\n \"ValidFrom\" : \"2021-07-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1901.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 1.901, 95.- INCLUYEN GASTOS E IMPUESTOS DE LEY./ segun triveño Inactivar - po\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-07-22T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"805\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2856,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000409\",\n \"Name\" : \"PERMANENCIA TRANSITORIA POR 30 DÍAS AEROPUERTO - ORESTES ODNIEL SUERO PIÑA\",\n \"ValidFrom\" : \"2021-08-10T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 358.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 358.64 INCLUYEN GASTOS E IMPUESTOS DE LEY\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-08-10T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"806\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2872,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000411\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO 30 DÍAS AEROPUERTO - EDUARDO AMIRO LOPEZ MORRISON\",\n \"ValidFrom\" : \"2021-08-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2296.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 2296.80 INCLUYEN GASTOS E IMPUESTOS DE LEY./ segun triveño Inactivar - por ac\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-08-13T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"807\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2881,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000412\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO 30 DÍAS AEROPUERTO - FABIO XAVIER DA SILVA\",\n \"ValidFrom\" : \"2021-08-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2296.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 2296.80 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-08-13T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"808\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2882,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000419\",\n \"Name\" : \"VISA DE OBEJTO DETERMINADO 90 DIAS POR TRABAJO - ORESTES OTNIEL SUERO PIÑA\",\n \"ValidFrom\" : \"2021-09-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 5763.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 5763.72 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-09-09T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"809\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2927,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000420\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO 30 DÍAS POR TRABAJO - FABIO XAVIER DA SILVA\",\n \"ValidFrom\" : \"2021-09-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 4807.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 4807.13 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-09-09T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"810\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2928,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000429\",\n \"Name\" : \"PERMANENCIA TRANSITORIA POR 30 DÍAS AEROPUERTO - EDGAR JOSE GUTIERREZ MUÑOS\",\n \"ValidFrom\" : \"2021-10-26T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 358.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 358.64 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-10-26T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"811\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2978,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000439\",\n \"Name\" : \"PERMANENCIA TRANSITORIA POR 90 DÍAS - EDGAR JOSE GUTIERREZ MUÑOZ\",\n \"ValidFrom\" : \"2021-12-06T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 828.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 828.12 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-12-06T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"812\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3044,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000491\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO 30 DÍAS - EDGARD JOSE GUTIERREZ MUÑOZ\",\n \"ValidFrom\" : \"2022-04-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 690.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 690.68 INCLUYEN GASTOS E IMPUESTOS DE LEY. FACTURADO EN SAP 31/08/2024 SEGUN\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-04-29T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"813\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3361,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000492\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO 30 DÍAS AEROPUERTO + CEERTIFICADO INTERPOL- ISRAEL LORENZO PEREZ DIAZ\",\n \"ValidFrom\" : \"2022-04-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 330.0,\n \"U_Comentarios\" : \"LOS HONORARIO DE USD. 330 INCLUYEN GASTOS E IMPUESTOS DE LEY./segun triveño Inactivar - por acuerdo\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-04-29T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"814\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3362,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000508\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO 30 DÍAS - LEIVER AQUINO VICENTE\",\n \"ValidFrom\" : \"2022-06-23T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 4807.130,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 4807.13 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-06-23T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"815\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3435,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000509\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO 30 DÍAS AEROPUERTO - ENRIQUE ESTEBAN GONZALEZ LOYOLA\",\n \"ValidFrom\" : \"2022-06-23T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 330.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 330 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-06-23T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"816\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3436,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000511\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO 30 DÍAS AEROPUERTO - OSCAR DANIEL ASTUDILLO NUDELMAN\",\n \"ValidFrom\" : \"2022-07-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 330.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 330 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-07-20T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"817\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3493,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:03-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:03-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=180\u0026%24top=20 | Status: 200 | Duration: 183.8191ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:03 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000130-SR-000512\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO 30 DÍAS AEROPUERTO - MARCO ANTONIO NAVARRO SANCHEZ\",\n \"ValidFrom\" : \"2022-07-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 330.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 330 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-07-20T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"818\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3494,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000513\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO 30 DÍAS AEROPUERTO - FRANCO SEBASTIAN LAGOS.\",\n \"ValidFrom\" : \"2022-07-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 330.0,\n \"U_Comentarios\" : \"los honorarios de usd. 330 incluyen gastos e impuestos de ley.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-07-22T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"819\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3499,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000519\",\n \"Name\" : \"CERTIFICADO DE ANTECEDENTES REJAP APOSTILLADO - HONEY CARBALLO CARRASCO\",\n \"ValidFrom\" : \"2022-08-18T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 300.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 300 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-08-18T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"820\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3538,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000520\",\n \"Name\" : \"CERTIFICADO DE ANTECEDENTES REJAP APOSTILLADO - TOMAS MOGUEL CANTO\",\n \"ValidFrom\" : \"2022-08-18T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 300.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 300 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-08-18T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"821\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3539,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000525\",\n \"Name\" : \"CERTIFICADO DE ANTECEDENTES REJAP APOSTILLADO - LEIVER AQUINO VICENTE\",\n \"ValidFrom\" : \"2022-09-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 300.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 300 INCLUYEN GASTOS E IMPUESTOS DE LEY./segun triveño Inactivar - por acuerd\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-09-02T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"822\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3563,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000532\",\n \"Name\" : \"AMPLIACION PRIMERA DE VISA TRANSITORIA 30 DIAS - FRANCO SEBASTIAN LAGOS\",\n \"ValidFrom\" : \"2022-09-26T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 4807.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 4807.13 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-09-26T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"823\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3593,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000533\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO 30 DÍAS AEROPUERTO - PEDRO NICOLAS FERNANDEZ ROBLEZ\",\n \"ValidFrom\" : \"2022-09-26T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2296.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 2296.8 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-09-26T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"824\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3594,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000534\",\n \"Name\" : \"VISA MERCOSUR DE 2 AÑOS - OSCAR DANIEL ASTUDILLO NUDELMAN\",\n \"ValidFrom\" : \"2022-09-26T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 6356.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 6356.29 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-09-26T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"825\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3595,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000535\",\n \"Name\" : \"CARNET EXTRANJERO - OSCAR DANIEL ASTUDILLO NUDELMAN\",\n \"ValidFrom\" : \"2022-09-26T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1901.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 1901.71 INCLUYEN GASTOS E IMPUESTOS DE LEY./segun triveño Inactivar - por acu\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-09-26T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"826\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3596,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000547\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO 90 DÍAS - PEDRO NICOLAS FERNANDEZ ROBLES\",\n \"ValidFrom\" : \"2022-10-17T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 5763.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 5763,72 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-10-17T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"827\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3651,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000553\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO 30 DÍAS AEROPUERTO - JULIO CESAR RODRIGUEZ CACERES\",\n \"ValidFrom\" : \"2022-11-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 330.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 330 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-11-09T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"828\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3682,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000554\",\n \"Name\" : \"VISA DE OBEJTO DETERMINADO 90 DIAS POR TRABAJO - JULIO CESAR RODRIGUEZ CACERES\",\n \"ValidFrom\" : \"2022-11-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 828.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 828.12 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-11-09T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"829\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3685,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000555\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO 30 DÍAS AEROPUERTO - RAUL ZAMORA OGAZ\",\n \"ValidFrom\" : \"2022-11-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 330.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 330 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-11-09T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"830\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3694,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000559\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO 30 DÍAS - RAUL ALBERTO ZAMORA ORGAZ\",\n \"ValidFrom\" : \"2022-11-28T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 358.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 358.64 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-11-28T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"831\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3727,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000566\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO 30 DÍAS AEROPUERTO - RODOLFO ALEJANDRO MILCHIO MILCHIO\",\n \"ValidFrom\" : \"2023-01-03T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 358.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 358,64 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-01-03T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"832\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3794,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000567\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO 30 DÍAS AEROPUERTO - LUIS ERNESTO RAMIREZ BARBOSA\",\n \"ValidFrom\" : \"2023-01-03T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 358.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 358.64 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-01-03T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"833\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3795,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000568\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO 30 DÍAS AEROPUERTO - SERGIO ANDRES BURGOS BARRAZA\",\n \"ValidFrom\" : \"2023-01-03T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 358.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 358.64 INLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-01-03T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"834\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3796,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000569\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO 30 DÍAS AEROPUERTO - EDUARDO ROJO ZUÑIGA.\",\n \"ValidFrom\" : \"2023-01-03T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 358.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 358.64 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-01-03T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"835\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3797,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000574\",\n \"Name\" : \"VISA DE OBEJTO DETERMINADO 90 DIAS POR TRABAJO - RAUL ALBERTO ZAMORA OGAS\",\n \"ValidFrom\" : \"2023-01-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 828.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 828,12 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-01-24T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"836\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3816,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000575\",\n \"Name\" : \"VISA DE OBEJTO DETERMINADO 90 DIAS POR TRABAJO - EDUARDO ROJO\",\n \"ValidFrom\" : \"2023-01-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 828.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 828.12 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-01-24T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"837\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3817,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:03-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:03-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=200\u0026%24top=20 | Status: 200 | Duration: 120.429ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:03 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000130-SR-000576\",\n \"Name\" : \"VISA DE OBEJTO DETERMINADO 90 DIAS POR TRABAJO - LUIS ERNESTO RAMIREZ BARBOSA\",\n \"ValidFrom\" : \"2023-01-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 828.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 828,12 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-01-24T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"838\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3818,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000579\",\n \"Name\" : \"AMPLIACION PRIMERA DE VISA TRANSITORIA 30 DIAS - RODOLFO ALEJANDRO MILCHIO MILCHIO\",\n \"ValidFrom\" : \"2023-02-03T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 358.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 358.64 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-02-03T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"839\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3828,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000580\",\n \"Name\" : \"AMPLIACION DE VISA TRANSITORIA 90 DIAS POR TRABAJO - DIEGO ALEJANDRO SANDOVAL RIVERA\",\n \"ValidFrom\" : \"2023-02-03T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 828.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 828.12 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-02-03T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"840\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3829,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000591\",\n \"Name\" : \"VISA TRANSITORIA 30 DIAS - ROBERT LUIS DROGUETT AREVALOS\",\n \"ValidFrom\" : \"2023-02-23T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 330.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 330 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-02-23T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"841\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3923,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000608\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO 30 DÍAS AEROPUERTO - MIGUEL ANGEL HEREDIA REYES\",\n \"ValidFrom\" : \"2023-03-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 330.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 330 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-03-21T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"842\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4024,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000614\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO 30 DÍAS AEROPUERTO - IVO STEFAN HERNANDEZ SEGOVIA\",\n \"ValidFrom\" : \"2023-04-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 330.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 330 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-04-12T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"843\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4050,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000621\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO 30 DÍAS AEROPUERTO - GABRIEL ALEJANDRO ALVIAL ACEVEDO\",\n \"ValidFrom\" : \"2023-04-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 330.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 330 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-04-24T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"844\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4064,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000622\",\n \"Name\" : \"SEGUNDA VISA DE OBJETO DETERMINADO 30 DÍAS AEROPUERTO - RONALD JORDANO OLIVARES BARRAZA\",\n \"ValidFrom\" : \"2023-04-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 330.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 330 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-04-24T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"845\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4065,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000627\",\n \"Name\" : \"TERCERA AMPLIACION DE VISA DE OBJETO DETERMINADO 30 DIAS - RAUL ALBERTO ZAMORA OGAZ\",\n \"ValidFrom\" : \"2023-05-08T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 358.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 358.64 INCLUYEN GASTOS E IMPUESTOS DE LEY. FACTURADO EN SAP 31/08/2024 SEGUN\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-05-08T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"846\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4106,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000628\",\n \"Name\" : \"SEGUNDA AMPLIACION DE VISA DE OBJETO DETERMINADO 30 DIAS - DIEGO ALEJANDRO SANDOVAL RIVERA\",\n \"ValidFrom\" : \"2023-05-08T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 358.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 358.64 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-05-08T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"847\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4107,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000629\",\n \"Name\" : \"AMPLIACION DE VISA TRANSITORIA 30 DIAS - IVO STEFAN HERNANDEZ SEGOVIA\",\n \"ValidFrom\" : \"2023-05-08T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 358.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 358.64 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-05-08T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"848\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4108,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000630\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO 30 DÍAS AEROPUERTO - ALEXANDER DANIEL DAVID VALLEJOS VERGARA\",\n \"ValidFrom\" : \"2023-05-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 330.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 330 INCLUYEN GASTOS E IMPUESTOS DE LEY./segun triveño Inactivar - Este clien\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-05-09T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"849\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4111,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000632\",\n \"Name\" : \"SEGUNDA AMPLIACION DE VISA DE OBJETO DETERMINADO 30 DIAS - MIGUEL ANGEL HEREDIA REYES\",\n \"ValidFrom\" : \"2023-05-16T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 358.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 358.64 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-05-16T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"850\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4115,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000650\",\n \"Name\" : \"tercera visa de objeto determinado 30 dias aeropuerto - RAUL ALBERTO ZOMORA OGAZ\",\n \"ValidFrom\" : \"2023-06-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 330.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 330 INCLUYEN GASTOS E IMPUESTOS DE LEY./segun triveño Inactivar - por acuerd\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-06-07T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"851\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4174,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000651\",\n \"Name\" : \"TERCERA AMPLIACION DE VISA DE OBJETO DETERMINADO 30 DIAS AEROPUERT - DIEGO ALEJANDRO SANDOVAL RIVERA\",\n \"ValidFrom\" : \"2023-06-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 330.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 330 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-06-07T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"852\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4175,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000652\",\n \"Name\" : \"TERCERA AMPLIACION DE VISA TRANSITORIA 30 DIAS - IVO STEFAN HERNANDEZ SEGOVIA\",\n \"ValidFrom\" : \"2023-06-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 358.640,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 358.64 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-06-07T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"853\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4176,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000657\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO 30 DÍAS AEROPUERTO - RISTO ANDRES MARTINEZ RAMIREZ\",\n \"ValidFrom\" : \"2023-06-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 330.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 330 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-06-29T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"854\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4204,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000664\",\n \"Name\" : \"VISA MERCOSUR DE 2 AÑOS - DIEGO ALEJANDRO SANDOVAL RIVERA\",\n \"ValidFrom\" : \"2023-07-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 913.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 913.26 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-07-12T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"855\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4219,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000666\",\n \"Name\" : \"Actualización corporativa 2023\",\n \"ValidFrom\" : \"2023-07-19T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1500.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-07-19T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"856\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4221,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000676\",\n \"Name\" : \"CÉDULA DE EXTRANJERO - DIEGO ALEJANDRO SANDOVAL RIVERA\",\n \"ValidFrom\" : \"2023-07-26T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1901.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 1901.71 INCLUYEN GASTOS E IMPUESTOS DE LEY./segun triveño Inactivar - por acu\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-07-26T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"857\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4236,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:03-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:04-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=220\u0026%24top=20 | Status: 200 | Duration: 114.7675ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:04 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000130-SR-000896\",\n \"Name\" : \"REPRESENTACION LEGAL (FM)\",\n \"ValidFrom\" : \"2018-04-03T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2018-04-03T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 104,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-000897\",\n \"Name\" : \"ACTUALIZACION DE PODERES\",\n \"ValidFrom\" : \"2022-05-10T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1500.0,\n \"U_Comentarios\" : \"Cobrar a Paola Colín Legal \u0026 Compliance Counsel North Latam Vestas Mediterranean Mobile:+52 5548775047 palsa@vestas.com\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-05-10T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 3381,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-001004\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO 30 DÍAS AEROPUERTO - RONALD JORDAN OLIVARES BARRAZA\",\n \"ValidFrom\" : \"2024-02-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2304\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-001191\",\n \"Name\" : \"PERMANENCIA TRANSITORIA POR TRABAJO 30 DIAS / NICOLAS IGNACIO PATRICIO MONTERREY ENCALADA\",\n \"ValidFrom\" : \"2024-04-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"100% Final\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2898\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-001225\",\n \"Name\" : \"VISA TRANSITORIA DE 180 DIAS POR TRABAJO - GIBRAN CLISERIO SANTIAGO POSADA\",\n \"ValidFrom\" : \"2024-05-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 864.78 INCLUIYEN GASTOS E IMPUESTOS DE LEY./segun triveño Inactivar - el cl\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2934\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-001227\",\n \"Name\" : \"VISA TRANSITORIA DE 30 DIAS AEROPUERTO - JESUS MAURICIO MORALES REBOLLEDO\",\n \"ValidFrom\" : \"2024-05-08T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"100% Final\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2936\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-001228\",\n \"Name\" : \"VISA TRANSITORIA DE 30 DIAS AEROPUERTO - ALVARO POBLETE CONTRERAS\",\n \"ValidFrom\" : \"2024-05-08T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"100% Final\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2937\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-001319\",\n \"Name\" : \"PERMANENCIA TRANSITORIA POR TRABAJO 30 DIAS - ELOY PEREZ BLANCO\",\n \"ValidFrom\" : \"2024-06-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"El tramite Migratorio se cobrara la suma de USD 637,95.- cuando este concluido, los honorarios inclu\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3090\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-001333\",\n \"Name\" : \"SEGUNDA VISA DE OBJETO DETERMINADO 30 DÍAS AEROPUERTO - RONALD JORDANO OLIVARES BARRAZA\",\n \"ValidFrom\" : \"2024-07-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3108\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-001334\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO 30 DÍAS - ULISES ISRAEL BRITO PRADO\",\n \"ValidFrom\" : \"2024-07-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"LA FACTURACIÓN DE USD.- 637,95 DEBE SALIR A NOMBRE DEL CLIENTE KPMG Oy Ab's\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3109\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-001341\",\n \"Name\" : \"Permanencia transitoria de 30 días - ELOY PEREZ BLANCO\",\n \"ValidFrom\" : \"2024-07-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"El cliente a facturar es KPMG siguiendo instrucciones del cliente\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3118\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-001378\",\n \"Name\" : \"VISA TRANSITORIA DE 30 DÍAS POR TRABAJO-CAMILO ANDRES LINCO LINCO\",\n \"ValidFrom\" : \"2024-07-19T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los gastos de USD. 637.95 incluyen gastos e impuestos de ley\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3159\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-001379\",\n \"Name\" : \"VISA TRANSITORIA DE 30 DÍAS POR TRABAJO - JAVIER ALEJANDRO ORREGO RIVERA\",\n \"ValidFrom\" : \"2024-07-19T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorarios de USD. 637.95 incluyen gastos e impuestos de ley.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3160\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-001433\",\n \"Name\" : \"Domicilio Legal\",\n \"ValidFrom\" : \"2024-08-16T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Facturar a partir del 01 de septiembre de 2024. Por favor enviar las facturas a los siguientes corre\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3267\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-001444\",\n \"Name\" : \"AMPLIACIÓN DE PERMANENCIA TRANSITORIA DE 30 DIAS POR TRABAJO - JAVIER ALEJANDRO ORREGO RIVERA\",\n \"ValidFrom\" : \"2024-08-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorarios de USD. 690.66 incluyen gastos e impuestos de ley.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3279\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-001445\",\n \"Name\" : \"AMPLIACIÓN DE PERMANENCIA TRANSITORIA DE 30 DIAS POR TRABAJO - CARLOS RODRIGO CORTES CERDA\",\n \"ValidFrom\" : \"2024-08-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorarios de USD. 690.66 incluyen gastos e impuestos de ley.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3280\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-001446\",\n \"Name\" : \"VISA TRANSITORIA DE 30 DIAS AEROPUERTO - OSCAR DANIEL ASTUDILLO NUDELMAN\",\n \"ValidFrom\" : \"2024-08-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorarios de USD. 637.95 incluyen gastos e impuestos de ley.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3281\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-001447\",\n \"Name\" : \"VISA transitoria de 30 días por trabajo - FRANCISCO ERNAN HUENUPAN ASENJO\",\n \"ValidFrom\" : \"2024-08-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorarios USD. 637.95 incluyen gastos e impuestos de ley.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3282\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-001448\",\n \"Name\" : \"VISA TRANSITORIA DE 30 DIAS AEROPUERTO - ANDRES INGNACIO PIZARRO CHACANA\",\n \"ValidFrom\" : \"2024-08-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorarios de USD. 637.95 incluyen gastos e impuestos de ley. FACTURADO EN SAP 27/08/2024 SEGUN\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3283\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-001455\",\n \"Name\" : \"PERMANECIA TRANSITORIA DE 30 DIAS AEROPUERTO - CARLOS CORTES CERDA\",\n \"ValidFrom\" : \"2024-08-26T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 637.95 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3291\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:04-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:04-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=240\u0026%24top=20 | Status: 200 | Duration: 104.7135ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:04 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000130-SR-001456\",\n \"Name\" : \"PERMANENCIA TRANSITORIA DE 30 DIAS POR TRABAJO - ANDRES IGNACIO PIZARRO CHACANA\",\n \"ValidFrom\" : \"2024-08-26T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorarios de USD. 637.95 incluyen gastos e impuestos de ley.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3292\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-001526\",\n \"Name\" : \"PERMANENCIA TRANSITORIA POR TRABAJO 30 DÍAS - MARCO ANTONIO NAVARRO SANCHEZ\",\n \"ValidFrom\" : \"2024-08-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3372\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-001527\",\n \"Name\" : \"PERMANENCIA TRANSITORIA POR TRABAJO 30 DÍAS - RISTO ANDRES MARTINEZ RAMIREZ\",\n \"ValidFrom\" : \"2024-08-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3373\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-001528\",\n \"Name\" : \"PERMANENCIA TRANSITORIA 30 DÍAS - ALFONSO MARAGOTO POLO ALFO\",\n \"ValidFrom\" : \"2024-08-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3374\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-001634\",\n \"Name\" : \"VISA TRANSITORIA DE 30 DIAS AEROPUERTO - ALEJANDRO ANTONIO MALDONADO IMIO\",\n \"ValidFrom\" : \"2024-10-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorarios de USD. 637.94 incluyen gastos e impuestos de ley.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3487\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-001825\",\n \"Name\" : \"Visa transitoria de 30 dias Aeropuerto - IGNACIO NICOLAS CORTES ROMO\",\n \"ValidFrom\" : \"2025-01-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3832\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-001826\",\n \"Name\" : \"Permanencia transitoria de 30 días Aeropuerto - CLAUDIO ALEJANDRO CUELLO MUÑOZ\",\n \"ValidFrom\" : \"2025-01-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3833\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000130-SR-002030\",\n \"Name\" : \"Permanencia transitoria 30 díasIGNACIO NICOLAS CORTES ROMO aeropuerto -\",\n \"ValidFrom\" : \"2025-05-18T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"130\",\n \"U_ClienNom\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4314\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000131-SR-000010\",\n \"Name\" : \"DOMICILIO LEGAL (FM)\",\n \"ValidFrom\" : \"2018-01-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"131\",\n \"U_ClienNom\" : \"VOITH HYDRO LTDA. SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2018-01-01T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Andres Moreno Gutierrez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andres Moreno Gutierrez\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 107,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000131-SR-000032\",\n \"Name\" : \"CIERRE DE SUCURSAL VOITH\",\n \"ValidFrom\" : \"2018-09-19T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"131\",\n \"U_ClienNom\" : \"VOITH HYDRO LTDA. SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2018-09-19T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Rene Claure Veizaga\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Claure Veizaga\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 108,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000132-SR-000036\",\n \"Name\" : \"Cuestionario sobre garantías aplicables en licitaciones públicas\",\n \"ValidFrom\" : \"2018-12-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 600.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"132\",\n \"U_ClienNom\" : \"ZTE BOLIVIA S.R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2018-12-13T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Andres Moreno Gutierrez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"888\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andres Moreno Gutierrez\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 956,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000132-SR-000037\",\n \"Name\" : \"Asesoramiento proceso infracción leyes laborales\",\n \"ValidFrom\" : \"2018-12-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 800.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"132\",\n \"U_ClienNom\" : \"ZTE BOLIVIA S.R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2018-12-13T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Andres Moreno Gutierrez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"889\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andres Moreno Gutierrez\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 957,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000135-SR-000319\",\n \"Name\" : \"Servicios Legales Mensuales Retainer (FM)\",\n \"ValidFrom\" : \"2020-12-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1305.0,\n \"U_Comentarios\" : \"Las horas no utilizadaas en el mes seran acumulables solo al mes siguiente,\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"135\",\n \"U_ClienNom\" : \"PAN AMERICAN SILVER BOLIVIA S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa retainer\",\n \"U_FechaCreacionP\" : \"2020-12-30T00:00:00Z\",\n \"U_AreaProyecto\" : \"Energía y Recursos Naturales\",\n \"U_AbogadoEncargado\" : \"Daniel Arredondo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 15,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"144\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Daniel Arredondo\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 2432,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000135-SR-001434\",\n \"Name\" : \"Servicios Anuales por Hora\",\n \"ValidFrom\" : \"2024-08-16T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"El honorario pactado es de USD 7,500 por 50 horas anuales y con facturación inmediata total al inic\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"135\",\n \"U_ClienNom\" : \"PAN AMERICAN SILVER BOLIVIA S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Daniel Arredondo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3268\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Daniel Arredondo\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000135-SR-002026\",\n \"Name\" : \"Servicios legales por hora\",\n \"ValidFrom\" : \"2025-05-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Se crea un nuevo asunto para PASBOL por finalizacion de las horas anuales contratadas.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"135\",\n \"U_ClienNom\" : \"PAN AMERICAN SILVER BOLIVIA S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Daniel Arredondo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"4310\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Daniel Arredondo\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000137-SR-000986\",\n \"Name\" : \"Servicios Legales Mensuales (FM)\",\n \"ValidFrom\" : \"2024-01-26T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"137\",\n \"U_ClienNom\" : \"FLUOR DANIEL SOUTH AMERICA LIMITED (SUC. BOLIVIA)\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"1510\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000137-SR-001316\",\n \"Name\" : \"Cierre de Sucursal en Bolivia\",\n \"ValidFrom\" : \"2024-06-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"137\",\n \"U_ClienNom\" : \"FLUOR DANIEL SOUTH AMERICA LIMITED (SUC. BOLIVIA)\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Rene Claure Veizaga\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3087\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Claure Veizaga\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000137-SR-001317\",\n \"Name\" : \"Cierre de Sucursal en Bolivia\",\n \"ValidFrom\" : \"2024-06-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"137\",\n \"U_ClienNom\" : \"FLUOR DANIEL SOUTH AMERICA LIMITED (SUC. BOLIVIA)\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Rene Claure Veizaga\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3088\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Claure Veizaga\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000145-SR-000269\",\n \"Name\" : \"Reestructuración laboral - Nacional Seguros Vida y Salud\",\n \"ValidFrom\" : \"2020-08-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 6500.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"145\",\n \"U_ClienNom\" : \"NACIONAL SEGUROS VIDA Y SALUD S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-08-12T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Andres Moreno Gutierrez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"446\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andres Moreno Gutierrez\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2212,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000145-SR-000488\",\n \"Name\" : \"Informes y reuniones: Reclamo Agramont\",\n \"ValidFrom\" : \"2022-04-14T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 980.0,\n \"U_Comentarios\" : \"Favor enviar una proforma o prefactura o ND para aprobación, antes de enviar la factura - Remitirla\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"145\",\n \"U_ClienNom\" : \"NACIONAL SEGUROS VIDA Y SALUD S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-04-14T00:00:00Z\",\n \"U_AreaProyecto\" : \"Seguros y Reaseguros\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"447\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3299,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:04-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:04-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=260\u0026%24top=20 | Status: 200 | Duration: 97.7643ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:04 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000145-SR-000505\",\n \"Name\" : \"RESPUESTA RECURSO DE NULIDAD - ARBITRAJE ROBERTO PAZ PARADA\",\n \"ValidFrom\" : \"2022-05-23T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 10000.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"145\",\n \"U_ClienNom\" : \"NACIONAL SEGUROS VIDA Y SALUD S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-05-23T00:00:00Z\",\n \"U_AreaProyecto\" : \"Arbitraje\",\n \"U_AbogadoEncargado\" : \"Rene Claure Veizaga\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Claure Veizaga\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 3395,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000145-SR-000613\",\n \"Name\" : \"Asesoría especializada en seguros retainer y Arbitrajes U 150K U$\",\n \"ValidFrom\" : \"2023-04-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2011.450,\n \"U_Comentarios\" : \"Facturar el primer mes ahora y luego dentro de los primeros días de cada mes\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"145\",\n \"U_ClienNom\" : \"NACIONAL SEGUROS VIDA Y SALUD S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-04-11T00:00:00Z\",\n \"U_AreaProyecto\" : \"Seguros y Reaseguros\",\n \"U_AbogadoEncargado\" : \"Andrés Moreno\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"449\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andrés Moreno\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 4046,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000145-SR-000837\",\n \"Name\" : \"Caso Brianson\",\n \"ValidFrom\" : \"2022-06-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2940.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"145\",\n \"U_ClienNom\" : \"NACIONAL SEGUROS VIDA Y SALUD S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2022-06-29T00:00:00Z\",\n \"U_AreaProyecto\" : \"Arbitraje\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"1325\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 3443,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000145-SR-000839\",\n \"Name\" : \"Negociación y conciliación previa - Reclamo Agramont\",\n \"ValidFrom\" : \"2022-08-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 15000.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"145\",\n \"U_ClienNom\" : \"NACIONAL SEGUROS VIDA Y SALUD S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2022-08-12T00:00:00Z\",\n \"U_AreaProyecto\" : \"Arbitraje\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"1326\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 3525,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000145-SR-001616\",\n \"Name\" : \"Amparo Constitucional Shirley Katherine Gonzales Tilila - DH Banco Económico\",\n \"ValidFrom\" : \"2024-10-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"El contacto de facturación es Wilson Suarez wsuarez@nacionalseguros.com.bo\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"145\",\n \"U_ClienNom\" : \"NACIONAL SEGUROS VIDA Y SALUD S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Constitucional\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3469\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000145-SR-001620\",\n \"Name\" : \"Defensa Administrativa Caso Agramont\",\n \"ValidFrom\" : \"2024-10-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"145\",\n \"U_ClienNom\" : \"NACIONAL SEGUROS VIDA Y SALUD S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Seguros y Reaseguros\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3473\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000145-SR-002005\",\n \"Name\" : \"Amparo Constitucional Rubín de Celis\",\n \"ValidFrom\" : \"2025-05-06T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"145\",\n \"U_ClienNom\" : \"NACIONAL SEGUROS VIDA Y SALUD S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Constitucional\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"4279\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000151-SR-001678\",\n \"Name\" : \"Preparación, elaboración actas asamblea extraordinaria revocatoria poderes nuevo representante leg\",\n \"ValidFrom\" : \"2024-10-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Según correo de Dr. Carlos Merino de fecha 03-12-24\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"151\",\n \"U_ClienNom\" : \"RADIO FIDES TRINIDAD S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Carlos Merino\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3585\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Carlos Merino\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000151-SR-001679\",\n \"Name\" : \"Revocatoria y elaboraciòn de acta de asamblea para nuevo representante legal\",\n \"ValidFrom\" : \"2024-10-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"por duplicidad de asunto creado\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"151\",\n \"U_ClienNom\" : \"RADIO FIDES TRINIDAD S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Carlos Merino\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3586\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Carlos Merino\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000151-SR-002034\",\n \"Name\" : \"AUMENTO DE CAPITAL Y ABSORCION DE PERDIDAS Y REDUCCION DE CAPITAL\",\n \"ValidFrom\" : \"2025-05-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"151\",\n \"U_ClienNom\" : \"RADIO FIDES TRINIDAD S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Carlos Merino\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"4344\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Carlos Merino\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000153-SR-000581\",\n \"Name\" : \"Reducción de Capital\",\n \"ValidFrom\" : \"2023-02-08T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2180.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"153\",\n \"U_ClienNom\" : \"BRINK'S BOLIVIA S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-02-08T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"236\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3833,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000153-SR-000663\",\n \"Name\" : \"PERMANENCIA TEMPORAL DE 1 AÑO POR FAMILIA - GUNTHER ANTONIO BORGES TORREALBA\",\n \"ValidFrom\" : \"2023-07-10T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1357.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 1357 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"153\",\n \"U_ClienNom\" : \"BRINK'S BOLIVIA S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-07-10T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"237\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4216,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000153-SR-000922\",\n \"Name\" : \"Servicio Legales por hora (FM)\",\n \"ValidFrom\" : \"2020-04-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"153\",\n \"U_ClienNom\" : \"BRINK'S BOLIVIA S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-04-01T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"Pamela Muñoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"1415\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Pamela Muñoz\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000153-SR-001199\",\n \"Name\" : \"Provisión de Cuatro Directores y Dos síndicos\",\n \"ValidFrom\" : \"2024-04-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Se debe cerrar al 31 de marzo 2025\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"153\",\n \"U_ClienNom\" : \"BRINK'S BOLIVIA S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2906\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000153-SR-001339\",\n \"Name\" : \"Desvinculación personal de confianza (Julio 2024)\",\n \"ValidFrom\" : \"2024-07-04T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"153\",\n \"U_ClienNom\" : \"BRINK'S BOLIVIA S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3116\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000153-SR-001340\",\n \"Name\" : \"Modificaciones regulatorias y corporativas - reporte regulador (Julio 2024)\",\n \"ValidFrom\" : \"2024-07-04T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"153\",\n \"U_ClienNom\" : \"BRINK'S BOLIVIA S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Mercantil-Banca\u0026Finanzas\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3117\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000153-SR-001778\",\n \"Name\" : \"Renovación licencia de funcionamiento La Paz\",\n \"ValidFrom\" : \"2024-12-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"153\",\n \"U_ClienNom\" : \"BRINK'S BOLIVIA S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Administrativo\",\n \"U_AbogadoEncargado\" : \"Ariel Zeballos\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3763\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Zeballos\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000153-SR-001857\",\n \"Name\" : \"Subsanación de Observaciones ASFI 2025\",\n \"ValidFrom\" : \"2025-01-31T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"153\",\n \"U_ClienNom\" : \"BRINK'S BOLIVIA S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3870\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000153-SR-001916\",\n \"Name\" : \"Elaboración Informe Legal sobre Depósitos en Dólares Americanos\",\n \"ValidFrom\" : \"2025-03-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"153\",\n \"U_ClienNom\" : \"BRINK'S BOLIVIA S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Mercantil-Banca\u0026Finanzas\",\n \"U_AbogadoEncargado\" : null,\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3953\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000153-SR-001972\",\n \"Name\" : \"Informe Pagos Fuera de Bolivia\",\n \"ValidFrom\" : \"2025-04-08T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"153\",\n \"U_ClienNom\" : \"BRINK'S BOLIVIA S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Luis Valda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4193\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Valda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:04-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:04-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=280\u0026%24top=20 | Status: 200 | Duration: 122.9119ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:04 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000153-SR-001980\",\n \"Name\" : \"Renovación licencia Santa Cruz\",\n \"ValidFrom\" : \"2025-04-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"153\",\n \"U_ClienNom\" : \"BRINK'S BOLIVIA S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Administrativo\",\n \"U_AbogadoEncargado\" : \"Ariel Zeballos\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"4208\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Zeballos\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000153-SR-002000\",\n \"Name\" : \"trámite licencia funcionamiento DENACEV\",\n \"ValidFrom\" : \"2025-04-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"el monto ya incluye el grossing up.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"153\",\n \"U_ClienNom\" : \"BRINK'S BOLIVIA S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Administrativo\",\n \"U_AbogadoEncargado\" : \"Ariel Zeballos\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"4271\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Zeballos\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000153-SR-002089\",\n \"Name\" : \"Informe Legal - Deuda Bpoint Bolivia - Brink´s Panamá\",\n \"ValidFrom\" : \"2025-06-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"153\",\n \"U_ClienNom\" : \"BRINK'S BOLIVIA S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Mercantil-Banca\u0026Finanzas\",\n \"U_AbogadoEncargado\" : null,\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"4491\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000158-SR-001137\",\n \"Name\" : \"Proceso contra empresa SELM\",\n \"ValidFrom\" : \"2024-03-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Este honorario debe ser ajustado Dr René una vez el Dr. Ramiro nos comparta el monto acordado.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"158\",\n \"U_ClienNom\" : \"CASTELLANOS CONSTRUCCIONES S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Civil\",\n \"U_AbogadoEncargado\" : \"Rene Claure Veizaga\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2739\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Claure Veizaga\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000165-SR-000334\",\n \"Name\" : \"COBRANZA EMBOTELLADORA REFRESCOS INTERNACIONALES \\\"POP\\\"\",\n \"ValidFrom\" : \"2021-02-19T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 300.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"165\",\n \"U_ClienNom\" : \"CRAMER BOLIVIA S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-02-19T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"308\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 2521,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000165-SR-001167\",\n \"Name\" : \"Ampliación del Objeto Social\",\n \"ValidFrom\" : \"2024-04-08T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"50% Inicio/50% Final\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"165\",\n \"U_ClienNom\" : \"CRAMER BOLIVIA S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"2830\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000165-SR-001253\",\n \"Name\" : \"Elaboración documentos corporativos gestión 2023\",\n \"ValidFrom\" : \"2024-05-31T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"165\",\n \"U_ClienNom\" : \"CRAMER BOLIVIA S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"2999\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000165-SR-001700\",\n \"Name\" : \"Nuevo Contrato CRAMER SASI - Contrato Alquiler\",\n \"ValidFrom\" : \"2024-10-28T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Cobramos al final. Asimismo el honorario variará y deberemos modificar en el TM al final del servic\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"165\",\n \"U_ClienNom\" : \"CRAMER BOLIVIA S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"3610\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000165-SR-001730\",\n \"Name\" : \"Análisis Corporativo Tributario\",\n \"ValidFrom\" : \"2024-11-14T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"165\",\n \"U_ClienNom\" : \"CRAMER BOLIVIA S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"3694\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000186-SC-000996\",\n \"Name\" : \"Alquiler oficinas Sucre para Licencia de Funcionamiento\",\n \"ValidFrom\" : \"2024-10-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Bs. 700\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"186\",\n \"U_ClienNom\" : \"HALLIBURTON LATIN AMERICA S.R.L. (Sucursal Bolivia).\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Paul Aramayo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3508\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Paul Aramayo\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000187-SC-000096\",\n \"Name\" : \"Servicios Legales Mensuales (FM)\",\n \"ValidFrom\" : \"2018-10-31T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"187\",\n \"U_ClienNom\" : \"INDUSTRIAS AJEBOLIVIA S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"1917\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000187-SR-000799\",\n \"Name\" : \"DEMANDA EJECUTIVA - ROCIO KAREN SUAREZ RODRIGUEZ - TRINIDAD\",\n \"ValidFrom\" : \"2019-10-03T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 350.0,\n \"U_Comentarios\" : \"LA CUANTÍA TOTAL DEMANDADA ES DE BS. 493.078,14.- Para el hito 2 el honorario es el siguiente: Para recuperación de cartera hasta antes de la citación con la demanda, de acuerdo a los siguientes r\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"187\",\n \"U_ClienNom\" : \"INDUSTRIAS AJEBOLIVIA S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2019-10-03T00:00:00Z\",\n \"U_AreaProyecto\" : \"Civil (Contratación, informes y otros)\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa por hitos\",\n \"U_CodAnterior\" : 1704,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000187-SR-000813\",\n \"Name\" : \"DEMANDA EJECUTIVA CONTRA MARIELA VASQUEZ MENDOZA\",\n \"ValidFrom\" : \"2021-04-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 350.0,\n \"U_Comentarios\" : \"La cuantía demandada es de Bs. 44.220,00.- Adicionalmente, por favor cobrar un honorario de éxito, de acuerdo a lo establecido en la Iguala Profesional.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"187\",\n \"U_ClienNom\" : \"INDUSTRIAS AJEBOLIVIA S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2021-04-13T00:00:00Z\",\n \"U_AreaProyecto\" : \"Civil (Contratación, informes y otros)\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa por hitos\",\n \"U_CodAnterior\" : 2619,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000187-SR-000814\",\n \"Name\" : \"PROCESO EJECUTIVO SAMANTA ROCIO TORRALBA JIMENEZ\",\n \"ValidFrom\" : \"2021-04-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 350.0,\n \"U_Comentarios\" : \"Cuantía demandada: Bs. 73.942,87.-\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"187\",\n \"U_ClienNom\" : \"INDUSTRIAS AJEBOLIVIA S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2021-04-13T00:00:00Z\",\n \"U_AreaProyecto\" : \"Civil (Contratación, informes y otros)\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa por hitos\",\n \"U_CodAnterior\" : 2621,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000187-SR-000815\",\n \"Name\" : \"PROCESO EJECUTIVO RODRIGO ROCHA PACO\",\n \"ValidFrom\" : \"2021-04-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 350.0,\n \"U_Comentarios\" : \"Se cobrará adicionalmente honorario de éxito de acuerdo a Iguala\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"187\",\n \"U_ClienNom\" : \"INDUSTRIAS AJEBOLIVIA S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2021-04-21T00:00:00Z\",\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa por hitos\",\n \"U_CodAnterior\" : 2649,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000187-SR-000892\",\n \"Name\" : \"Patrocinio proceso judicial laboral interpuesto por Zoilo Cortez Guzmán\",\n \"ValidFrom\" : \"2023-12-05T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"187\",\n \"U_ClienNom\" : \"INDUSTRIAS AJEBOLIVIA S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2023-12-05T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Paul Aramayo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"1310\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Paul Aramayo\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 4628,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000187-SR-000945\",\n \"Name\" : \"PROCESO EJECUTIVO RAMIRO GONZALO GUILLEN TAPIA\",\n \"ValidFrom\" : \"2021-04-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"BS\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"Cuantía demanda: Bs. 416.588,03.- Cuanto termine el proceso cobrar honorario de éxito conforme a Iguala\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"187\",\n \"U_ClienNom\" : \"INDUSTRIAS AJEBOLIVIA S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2021-04-13T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Laboral y de Seguridad Social\",\n \"U_AbogadoEncargado\" : \"Paul Aramayo Salinas\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"BOL\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa por hitos\",\n \"U_CodAnterior\" : 2620,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000187-SR-001315\",\n \"Name\" : \"Servicios Legales Mensuales (FM)\",\n \"ValidFrom\" : \"2024-06-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"187\",\n \"U_ClienNom\" : \"INDUSTRIAS AJEBOLIVIA S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3086\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000187-SR-001862\",\n \"Name\" : \"Servicios Legales Mensuales por hora (on demand)\",\n \"ValidFrom\" : \"2025-02-03T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Se acordó USD. 150.- la hora más impuestos, independientemente del cargo del abogado que trabaje.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"187\",\n \"U_ClienNom\" : \"INDUSTRIAS AJEBOLIVIA S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3877\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000187-SR-001864\",\n \"Name\" : \"Síndicos Titular y Suplente\",\n \"ValidFrom\" : \"2025-02-03T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"el honorario actual se cobra hasta el mes de agosto 2025 a partir de septiembre 2025 se debe cambiar\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"187\",\n \"U_ClienNom\" : \"INDUSTRIAS AJEBOLIVIA S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3879\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:04-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:04-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=300\u0026%24top=20 | Status: 200 | Duration: 100.9376ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:04 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000188-SR-000039\",\n \"Name\" : \"Servicios Legales Mensuales (FM)\",\n \"ValidFrom\" : \"2019-02-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1530.0,\n \"U_Comentarios\" : \"Se debe adjuntar Reporte de horas\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-02-12T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"Paul Aramayo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"521\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Paul Aramayo\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 1143,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000188-SR-000041\",\n \"Name\" : \"PERMANENCIA TEMPORAL POR TRABAJO DE UN AÑO - JOSE LUIS LOPEZ MEDINA\",\n \"ValidFrom\" : \"2019-02-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 9095.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 9.905,49.- INCLUYEN GASTOS E IMPUESTOS DE LEY. FACTURADO SAP 18/03/2019 FAC 28\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-02-22T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"522\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1149,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000188-SR-000141\",\n \"Name\" : \"AUTORIZACIÓN DE CARTA DE INVITACIÓN - ALI MAGHSOUDI\",\n \"ValidFrom\" : \"2019-08-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2298.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 2.298,39.- INCLUYEN GASTOS E IMPUESTOS DE LEY. FACTURAO EN SAP 22 AGOSTO 2019\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-08-09T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"523\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1556,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000188-SR-000186\",\n \"Name\" : \"AUTORIZACIÓN DE CARTA DE INVITACIÓN - KJELL IVAR OTTOSSON\",\n \"ValidFrom\" : \"2019-09-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2298.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 2.298,39.- INCLUYEN GASTOS E IMPUESTOS DE LEY. FACTURADO EN SAP EL 14 OCTUBRE\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-09-13T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"524\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1667,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000188-SR-000216\",\n \"Name\" : \"RENOVACION PERMANENCIA TEMPORAL DE 1 AÑO SIN CONTRATO - GENEBRALDO ANTONIO URDANETA MONROY\",\n \"ValidFrom\" : \"2019-11-18T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 9444.0,\n \"U_Comentarios\" : \"MONTO BS . 9444,15 - INCLUYE HONORARIOS MAS IMPUESTOS DE LEY. FACTURADO EN SAP EN FECHA 16 ENERO 202\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-11-18T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"525\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1784,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000188-SR-000222\",\n \"Name\" : \"CEDULA DE EXTRANJERO- GENEBRALDO ANTONIO URDANETA MONROY\",\n \"ValidFrom\" : \"2019-12-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1794.0,\n \"U_Comentarios\" : \"MONTO FACTURADO BS. 1794.47, HONORARIOS MAS IMPUESTOS DE LEY. FACTURADO EN SAP EN FECHA 16 ENERO 202\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-12-20T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"526\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1849,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000188-SR-000408\",\n \"Name\" : \"PERMANENCIA TRANSITORIA POR TRABAJO DE 30 DIAS - OLEGARIO AGUILAR ARMENTA\",\n \"ValidFrom\" : \"2021-08-10T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2298.0,\n \"U_Comentarios\" : \"LOS HONORARIOS BS. 2298.39 INCLUYEN GASTOS E IMPUESTOS DE LEY.FACTURADO EN SAP EN FECHA 25 AGOSTO 20\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-08-10T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"527\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2873,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000188-SR-000518\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO 30 DIAS AEROPUERTO - DIEGO HECTOR VAZQUEZ\",\n \"ValidFrom\" : \"2022-08-18T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2298.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS.2298.39 INCLUYEN GASTOS E IMPUESTOS DE LEY./ Según Triveño inactivar - no se\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-08-18T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"528\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3541,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000188-SR-000747\",\n \"Name\" : \"OBTENCIÓN DE 13 ANTECEDENTES REJAP PARA LA ADUANA NACIONAL - PERSONAL SIEMENS ENERGY\",\n \"ValidFrom\" : \"2023-10-19T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"GASTOS DE IMPUESTOS Y HONORARIOS POR DEFINIR.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-10-19T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"529\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4531,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000188-SR-000910\",\n \"Name\" : \"TRADUCCION DE DOCUMENTOS 12 PAGINAS\",\n \"ValidFrom\" : \"2022-03-31T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"BS\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 300.0,\n \"U_Comentarios\" : \"USD. 25 por cada página. Hay OC madre para esto por favor verificar correos\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-03-31T00:00:00Z\",\n \"U_AreaProyecto\" : \"Civil (Contratación, informes y otros)\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 4531,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000188-SR-001242\",\n \"Name\" : \"PERMANENCIA TRANSITORIA DE 30 DIAS POR TRABAJO - KENNETH LUNDQVIST\",\n \"ValidFrom\" : \"2024-05-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 581.12 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2975\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000188-SR-001472\",\n \"Name\" : \"PRIMER VISA OBJETO DERTEMINADO 30 DIAS- LUCCAS JIMENES PIMENTA\",\n \"ValidFrom\" : \"2024-08-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3318\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000188-SR-001473\",\n \"Name\" : \"SEGUNDA VISA DE OBJETO DETERMINADO 30 DÍAS- LUCCAS JIMENES PIMENTA\",\n \"ValidFrom\" : \"2024-08-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3319\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000188-SR-001474\",\n \"Name\" : \"VISA MERCOSUR 2 AÑOS - LUCCAS JIMENES PIMENTA\",\n \"ValidFrom\" : \"2024-08-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3320\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000188-SR-001475\",\n \"Name\" : \"CEDULA DE EXTRANJERO- LUCCAS JIMENES PIMENTA\",\n \"ValidFrom\" : \"2024-08-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3321\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000188-SR-001476\",\n \"Name\" : \"VISA MERCOSUR DE DOS AÑOS - RONNY LUIS LULA\",\n \"ValidFrom\" : \"2024-08-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3322\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000188-SR-001477\",\n \"Name\" : \"CEDULA DE EXTRANJERO- RONNY LUIS LULA\",\n \"ValidFrom\" : \"2024-08-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3323\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000188-SR-001478\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO 30 DIAS- RONNY LUIS LULA\",\n \"ValidFrom\" : \"2024-08-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3324\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000188-SR-001479\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO - 90 DIAS - RONNY LUIS LULA\",\n \"ValidFrom\" : \"2024-08-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3325\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000188-SR-001480\",\n \"Name\" : \"VISA MERCOSUR 2 AÑOS- RONY GOTARDOR ROCHA JUNIOR\",\n \"ValidFrom\" : \"2024-08-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3326\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:04-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:04-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=320\u0026%24top=20 | Status: 200 | Duration: 101.408ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:05 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000188-SR-001481\",\n \"Name\" : \"CEDULA DE EXTRANJERO - RONY GOTARDOR ROCHA JUNIOR\",\n \"ValidFrom\" : \"2024-08-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3327\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000188-SR-001482\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO 30 DIAS - TIAGO GIRIBONI DA SILVA DA ROSA\",\n \"ValidFrom\" : \"2024-08-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3328\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000188-SR-001483\",\n \"Name\" : \"PRIMER VISA DE OBJETO DETERMINADO 90 DIAS - TIAGO GIRIBONI DA SILVA DA ROSA\",\n \"ValidFrom\" : \"2024-08-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3329\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : null,\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000188-SR-001484\",\n \"Name\" : \"VISA MERCOSUR DE 2 AÑOS - TIAGO GIRIBONI DA SILVA DA ROSA\",\n \"ValidFrom\" : \"2024-08-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3330\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : null,\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000188-SR-001485\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO 30 DIAS - TIAGO MENDOCA DE BRITO\",\n \"ValidFrom\" : \"2024-08-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3331\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000188-SR-001486\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO 90 DIAS - TIAGO MENDOCA DE BRITO\",\n \"ValidFrom\" : \"2024-08-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3332\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000188-SR-001487\",\n \"Name\" : \"VISA MERCOSUR 2 AÑOS - TIAGO MENDOCA DE BRITO\",\n \"ValidFrom\" : \"2024-08-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3333\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : null,\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000188-SR-001488\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO 30 DÍAS - ANIZIO SILVA\",\n \"ValidFrom\" : \"2024-08-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3334\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000188-SR-001489\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO 180 DÍAS - ANIZIO SILVA\",\n \"ValidFrom\" : \"2024-08-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3335\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000188-SR-001490\",\n \"Name\" : \"VISA MERCOSUR DE 2 AÑOS - ANIZIO SILVA\",\n \"ValidFrom\" : \"2024-08-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3336\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000188-SR-001491\",\n \"Name\" : \"PRIMER CÉDULA DE EXTRANJERO - ANIZIO SILVA\",\n \"ValidFrom\" : \"2024-08-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3337\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000188-SR-001492\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO 30 DIAS - ODAIR TOTH JUNIOR\",\n \"ValidFrom\" : \"2024-08-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3338\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000188-SR-001493\",\n \"Name\" : \"VISA MERCOSUR DE DOS AÑOS - ODAIR TOTH JUNIOR\",\n \"ValidFrom\" : \"2024-08-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3339\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000188-SR-001494\",\n \"Name\" : \"VISA DE UN AÑO POR TRABAJO - ODAIR TOTH JUNIOR\",\n \"ValidFrom\" : \"2024-08-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3340\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000188-SR-001495\",\n \"Name\" : \"PRIMER CÉDULA DE EXTRANJERO - ODAIR TOTH JUNIOR\",\n \"ValidFrom\" : \"2024-08-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3341\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000188-SR-001496\",\n \"Name\" : \"SEGUNDA CÉDULA DE EXTRANJERO - ODAIR TOTH JUNIOR\",\n \"ValidFrom\" : \"2024-08-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3342\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000188-SR-001497\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO 30 DÍAS - CARLOS ENRIQUE GONCALVES\",\n \"ValidFrom\" : \"2024-08-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3343\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000188-SR-001498\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO - ALTAMIR APARECIDO DA SILVA\",\n \"ValidFrom\" : \"2024-08-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3344\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000188-SR-001499\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO 30 DIAS - HERMANO LUIS ALBIERO\",\n \"ValidFrom\" : \"2024-08-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3345\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000188-SR-001500\",\n \"Name\" : \"VISA MERCOSUR DE 2 AÑOS - HERMANO LUIS ALBIERO\",\n \"ValidFrom\" : \"2024-08-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3346\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:05-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:05-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=340\u0026%24top=20 | Status: 200 | Duration: 99.6033ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:05 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000188-SR-001501\",\n \"Name\" : \"CÉDULA DE EXTRANJERO - HERMANO LUIS ALBIERO\",\n \"ValidFrom\" : \"2024-08-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3347\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000188-SR-001502\",\n \"Name\" : \"AMPLIACION DE PLAZO DE DIAS FUERA- HERMANO LUIS ALBIERO\",\n \"ValidFrom\" : \"2024-08-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3348\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000188-SR-001503\",\n \"Name\" : \"VISA MERCOSUR DE 2 AÑOS - BRUNO FERNANDO SIMOES\",\n \"ValidFrom\" : \"2024-08-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3349\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000188-SR-001504\",\n \"Name\" : \"CÉDULA DE EXTRANJERO - BRUNO FERNANDO SIMOES\",\n \"ValidFrom\" : \"2024-08-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3350\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000188-SR-001505\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO POR 30 DÍAS - BRUNO FERNADO SIMOES\",\n \"ValidFrom\" : \"2024-08-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3351\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000188-SR-001506\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO 90 DÍAS - RICARDO ALVES SANTANA\",\n \"ValidFrom\" : \"2024-08-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3352\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000188-SR-001507\",\n \"Name\" : \"VISA MERCOSUR DE DOS AÑOS - RICARDO ALVES SANTANA\",\n \"ValidFrom\" : \"2024-08-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3353\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000188-SR-001508\",\n \"Name\" : \"CÉDULA DE EXTRANJERO- MAURI CARLOS GADIOLLI\",\n \"ValidFrom\" : \"2024-08-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3354\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000188-SR-001509\",\n \"Name\" : \"VISA MERCOSUR DE DOS AÑOS - RONALDO TRINDADE MOURAO\",\n \"ValidFrom\" : \"2024-08-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3355\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000188-SR-001510\",\n \"Name\" : \"CÉDULA DE EXTRANJERO - RONALDO TRINDADE MOURAO\",\n \"ValidFrom\" : \"2024-08-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3356\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000188-SR-001511\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO 30 DIAS- THIAGO BARBOSA ALMEIDA\",\n \"ValidFrom\" : \"2024-08-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3357\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000188-SR-001512\",\n \"Name\" : \"VISA MERCOSUR DE 2 AÑOS - THIAGO BARBOSA ALMEIDA\",\n \"ValidFrom\" : \"2024-08-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3358\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000188-SR-001513\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO 30 DIAS - REGINALDO PIZZAMIGLIO\",\n \"ValidFrom\" : \"2024-08-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3359\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000188-SR-001514\",\n \"Name\" : \"VISA MERCOSUR DE 2 AÑOS - REGINALDO PIZZAMIGLIO\",\n \"ValidFrom\" : \"2024-08-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3360\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000188-SR-001515\",\n \"Name\" : \"CÉDULA DE EXTRANJERO - REGINALDO PIZZAMIGLIO\",\n \"ValidFrom\" : \"2024-08-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3361\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000188-SR-001516\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO 180 DÍAS - MARCELO CARDOSO\",\n \"ValidFrom\" : \"2024-08-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3362\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000188-SR-001517\",\n \"Name\" : \"PRIMER VISA DE OBJETO DETERMINADO POR 30 DIAS - LUIZ CARLOS FELICIANO\",\n \"ValidFrom\" : \"2024-08-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3363\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000188-SR-001518\",\n \"Name\" : \"SEGUNADA VISA DE OBJETO DETERMINADO - LUIZ CARLOS FELICIANO\",\n \"ValidFrom\" : \"2024-08-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3364\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000188-SR-001519\",\n \"Name\" : \"TERCERA VISA DE OBJETO DETERMINADO POR 30 DIAS - LUIZ CARLOS FELICIANO\",\n \"ValidFrom\" : \"2024-08-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3365\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000188-SR-001520\",\n \"Name\" : \"CUARTA VISA DE OBJETO DETERMINADO - LUIZ CARLOS FELICIANO\",\n \"ValidFrom\" : \"2024-08-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3366\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:05-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:05-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=360\u0026%24top=20 | Status: 200 | Duration: 90.6554ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:05 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000188-SR-001521\",\n \"Name\" : \"VISA MERCOSUR POR 2 AÑOS - LUIZ CARLOS FELICIANO\",\n \"ValidFrom\" : \"2024-08-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3367\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000188-SR-001522\",\n \"Name\" : \"CÉDULA DE EXTRANJERO - LUIZ CARLOS FELICIANO\",\n \"ValidFrom\" : \"2024-08-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3368\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000188-SR-001523\",\n \"Name\" : \"VISA MERCOSUR POR 2 AÑOS - CARLOS ENRIQUE FONTES\",\n \"ValidFrom\" : \"2024-08-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3369\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000188-SR-001524\",\n \"Name\" : \"CÉDULA DE ESTRANJERO - CARLOS ENRIQUE FONTES\",\n \"ValidFrom\" : \"2024-08-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3370\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000188-SR-001525\",\n \"Name\" : \"PERMANENCIA TRANSITORIA POR TRABAJO 30 DÍAS - ALFONSO MARAGOTO POLO\",\n \"ValidFrom\" : \"2024-08-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Según Triveño inactivar - se creo mal el proyecto este cliente es de Vestas\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3371\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000188-SR-001560\",\n \"Name\" : \"10 Asistencias en Aeropuerto Visa on Arrival\",\n \"ValidFrom\" : \"2024-09-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Se crea el asunto 10 Asistencias en Aeropuerto Visa on Arrival para el cliente Siemens Energy S.A. s\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3412\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000188-SR-001586\",\n \"Name\" : \"PO 4500638338: SOLICITUD DE TRADUCCION DE DOCUMENTOS - BD000368U04 B30\",\n \"ValidFrom\" : \"2024-09-23T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3437\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000188-SR-001587\",\n \"Name\" : \"Traducción de documentos Visa Gelvis Valdez (OC 4500648338)\",\n \"ValidFrom\" : \"2024-09-23T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3438\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000188-SR-001588\",\n \"Name\" : \"Traducción de documentos 83 páginas\",\n \"ValidFrom\" : \"2024-09-23T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3439\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000188-SR-001723\",\n \"Name\" : \"OBTENCION DE ANTECEDENTES REJAP - 14 TRABAJADORES DE LA EMPRESA\",\n \"ValidFrom\" : \"2024-11-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorarios de USD. 265.80 incluyen gastos e impuestos de ley.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3686\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000188-SR-001870\",\n \"Name\" : \"SOPORTE DOCUMENTACION PARA VISA - GELVIS SALVADOR VALDEZ\",\n \"ValidFrom\" : \"2025-02-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"188\",\n \"U_ClienNom\" : \"SIEMENS ENERGY S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3887\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000189-SR-001120\",\n \"Name\" : \"Disolución y Liquidación - trámites finales\",\n \"ValidFrom\" : \"2024-03-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Son horas no facturables, al tratarse de un proyecto que fue pagado al inicio del mismo en su totalidad y quedaron solamente pendientes algunos trámites.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"189\",\n \"U_ClienNom\" : \"TJC BOLIVIA S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2693\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000192-SR-000251\",\n \"Name\" : \"CERTIFICACION DE NO ARRAIGO - PHILIPPE MARIE RENE MAURICE GROUEIX\",\n \"ValidFrom\" : \"2020-03-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 250.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE 250.- USD.- INCLUYEN GASTOS E IMPUESTOS DE LEY. SE ACLARA QUE SE FACTURA ESTE ITEM CON LA SRL.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"192\",\n \"U_ClienNom\" : \"TOTAL ENERGIES EP BOLIVIE SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-03-12T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 2000,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000192-SR-000376\",\n \"Name\" : \"VISADO DE CONTRATOS DE TRABAJO (8)\",\n \"ValidFrom\" : \"2021-05-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 195.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"192\",\n \"U_ClienNom\" : \"TOTAL ENERGIES EP BOLIVIE SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-05-21T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Laboral y de Seguridad Social\",\n \"U_AbogadoEncargado\" : \"Luis Moreno Gutierrez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Moreno Gutierrez\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 2699,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000192-SR-000377\",\n \"Name\" : \"VISADO DE (6) QUINQUENIOS\",\n \"ValidFrom\" : \"2021-05-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 260.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"192\",\n \"U_ClienNom\" : \"TOTAL ENERGIES EP BOLIVIE SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-05-21T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Laboral y de Seguridad Social\",\n \"U_AbogadoEncargado\" : \"Luis Moreno Gutierrez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Moreno Gutierrez\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 2700,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000192-SR-000378\",\n \"Name\" : \"VISADO DE 4 FINIQUITOS\",\n \"ValidFrom\" : \"2021-05-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 260.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"192\",\n \"U_ClienNom\" : \"TOTAL ENERGIES EP BOLIVIE SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-05-21T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Laboral y de Seguridad Social\",\n \"U_AbogadoEncargado\" : \"Luis Moreno Gutierrez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Moreno Gutierrez\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 2701,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000192-SR-000424\",\n \"Name\" : \"REGISTRO DE CONTRATOS DE SERVIDUMBRE\",\n \"ValidFrom\" : \"2021-10-17T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"BS\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"Ver Carta Contrataciòn\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"192\",\n \"U_ClienNom\" : \"TOTAL ENERGIES EP BOLIVIE SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-10-17T00:00:00Z\",\n \"U_AreaProyecto\" : \"Civil (Contratación, informes y otros)\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"BOL\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 2964,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000192-SR-000432\",\n \"Name\" : \"Asesoría y Consultoría Jurídica por hora\",\n \"ValidFrom\" : \"2021-11-08T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"Tarifa horaria fija: Precio por hora en Bs. que incluye IVA: 765,60.-\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"192\",\n \"U_ClienNom\" : \"TotalEnergies EP Bolivie Sucursal Bolivia\",\n \"U_FormaCobro\" : \"Honorario tarifa por hora\",\n \"U_FechaCreacionP\" : \"2021-11-08T00:00:00Z\",\n \"U_AreaProyecto\" : \"Energía y Recursos Naturales\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"23\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : 2987,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000192-SR-000442\",\n \"Name\" : \"CERTIFICADO DE FLUJO MIGRATORIO - KATERINE GUTIERREZ AÑEZ\",\n \"ValidFrom\" : \"2021-12-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"BS\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 985.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 985.75 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"192\",\n \"U_ClienNom\" : \"TOTAL ENERGIES EP BOLIVIE SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-12-15T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"BOL\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 3059,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000192-SR-000477\",\n \"Name\" : \"PERMANENCIA TEMPORAL DE 2 AÑOS SIN CONTRATO EXTANJERO - ELSA BONNAY\",\n \"ValidFrom\" : \"2022-02-16T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"BS\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 10725.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 10725.29 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"192\",\n \"U_ClienNom\" : \"TOTAL ENERGIES EP BOLIVIE SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-02-16T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"BOL\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 3181,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:05-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:05-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=380\u0026%24top=20 | Status: 200 | Duration: 93.6964ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:05 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000192-SR-000480\",\n \"Name\" : \"PERMANENCIA TEMPORAL DE 2 AÑOS POR FAMILIA PARA MENOR DE EDAD - JOAO PEDRO VIEIRA RIBEIRO\",\n \"ValidFrom\" : \"2022-03-08T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"BS\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 6718.0,\n \"U_Comentarios\" : \"LO HONORARIOS DE BS. 6718 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"192\",\n \"U_ClienNom\" : \"TOTAL ENERGIES EP BOLIVIE SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-03-08T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"BOL\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 3200,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000192-SR-000485\",\n \"Name\" : \"CEDULA DE EXTRANJERO - ELSA BONNAY\",\n \"ValidFrom\" : \"2022-04-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"BS\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1919.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS.1919.23 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"192\",\n \"U_ClienNom\" : \"TOTAL ENERGIES EP BOLIVIE SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-04-11T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"BOL\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 3289,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000192-SR-000486\",\n \"Name\" : \"CEDULA DE EXTRANJERO - JOAO PEDRO VIEIRA RIBEIRO\",\n \"ValidFrom\" : \"2022-04-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"BS\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1919.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 1919.23 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"192\",\n \"U_ClienNom\" : \"TOTAL ENERGIES EP BOLIVIE SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-04-11T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"BOL\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 3290,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000192-SR-000929\",\n \"Name\" : \"CONSULTA SOBRE VENCIMIENTO LICENCIA AMBIENTAL - CONTRATO 460000\",\n \"ValidFrom\" : \"2023-07-03T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"BS\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"Servicios dentro del marco del Contrato 4600001094 con EMBA. 3 HORAS\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"192\",\n \"U_ClienNom\" : \"Total Energies EP Bolivie Sucursal Bolivia\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-07-03T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Ambiental\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"BOL\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 4211,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000192-SR-000930\",\n \"Name\" : \"Consulta sobre estado migratorio de Pedro Ribeiro\",\n \"ValidFrom\" : \"2023-10-06T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"En el marco del Contrato Nº 4600001094 de asesoramiento legal por hora, corresponde a un servicio d\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"192\",\n \"U_ClienNom\" : \"TotalEnergies EP Bolivie Sucursal Bolivia\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-10-06T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"1423\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4438,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000192-SR-001563\",\n \"Name\" : \"Renovación Licencia de Funcionamiento Municipal\",\n \"ValidFrom\" : \"2024-09-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"192\",\n \"U_ClienNom\" : \"TotalEnergies EP Bolivie Sucursal Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3415\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000192-SR-001564\",\n \"Name\" : \"Gestiones de entrega de cartas en La Paz\",\n \"ValidFrom\" : \"2024-09-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"192\",\n \"U_ClienNom\" : \"TotalEnergies EP Bolivie Sucursal Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Administrativo\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3416\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000192-SR-001570\",\n \"Name\" : \"CÉDULA PARA EXTRANJERO - FABIEN ANDRE DANIEL MILLET\",\n \"ValidFrom\" : \"2024-09-18T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorarios de USD. 275.75 incluyen gastos e impuestos de ley.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"192\",\n \"U_ClienNom\" : \"TotalEnergies EP Bolivie Sucursal Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3420\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000192-SR-001574\",\n \"Name\" : \"PERMANENCIA TRANSITORIA DE 30 DIAS POR TRABAJO AEROPUERTO - JOSEPH P. SALINAS\",\n \"ValidFrom\" : \"2024-09-18T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorarios de USD. 317.83 incluyen gastos e impuestos de ley.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"192\",\n \"U_ClienNom\" : \"TotalEnergies EP Bolivie Sucursal Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3424\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000192-SR-001575\",\n \"Name\" : \"PERMANENCIA TRANSITORIA DE 30 DIAS POR TRABAJO AEROPUERTO - JUSTIN OLIVER MILLS\",\n \"ValidFrom\" : \"2024-09-18T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorarios de USD. 317.83 incluyen gastos e impuestos de ley.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"192\",\n \"U_ClienNom\" : \"TotalEnergies EP Bolivie Sucursal Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3425\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000192-SR-001594\",\n \"Name\" : \"CERTIFICADO DE FLUJO MIGRATORIO - FABIEN ANDRE DANIEL MILLET\",\n \"ValidFrom\" : \"2024-09-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorarios de USD. 141.63 incluyen gastos e impuestos de ley.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"192\",\n \"U_ClienNom\" : \"TotalEnergies EP Bolivie Sucursal Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3447\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000192-SR-001595\",\n \"Name\" : \"VISA POR TRABAJO DE 2 AÑOS SIN CONTRATO - DAMIAN AGUSTIN LOPEZ\",\n \"ValidFrom\" : \"2024-09-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorarios de USD. 1193.75 incluyen gastos e impuestos de ley.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"192\",\n \"U_ClienNom\" : \"TotalEnergies EP Bolivie Sucursal Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3448\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000192-SR-001597\",\n \"Name\" : \"CEDULA PARA EXTRANJERO - JUAN FRANCISCO MANDARA\",\n \"ValidFrom\" : \"2024-09-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorarios de USD. 275.75 inlcuyen gastos e impuestos de ley.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"192\",\n \"U_ClienNom\" : \"TotalEnergies EP Bolivie Sucursal Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3451\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000192-SR-001598\",\n \"Name\" : \"PERMANENCIA DEFINITIVA POR CONVENIO ARGENTINA-BOLIVIA - JUAN FRANCISCO MANDARA\",\n \"ValidFrom\" : \"2024-09-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorarios de USD. 2108.47 incluyen gastos e impuestos de ley.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"192\",\n \"U_ClienNom\" : \"TotalEnergies EP Bolivie Sucursal Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3452\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000192-SR-001599\",\n \"Name\" : \"RENOVACIÓN DE LICENCIA DE CONDUCIR - JUAN FRANCISCO MANDARA\",\n \"ValidFrom\" : \"2024-09-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorarios de USD. 319.31 incluyen gastos e impuestos de ley.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"192\",\n \"U_ClienNom\" : \"TotalEnergies EP Bolivie Sucursal Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3453\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000192-SR-001637\",\n \"Name\" : \"VISA DE PERMANECIA TRANSITORIA EN AEROPUERTO DE 30 DIAS - FRANCISCO JAVIER RIELO ALMEIJIDE\",\n \"ValidFrom\" : \"2024-10-10T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"SE EQUIVOCO DE SOCIEDAD\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"192\",\n \"U_ClienNom\" : \"TotalEnergies EP Bolivie Sucursal Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : null,\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3490\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000192-SR-001638\",\n \"Name\" : \"VISA TRANSITORIA POR 30 DIAS AEROPUERTO- FERNANDO GARCIA\",\n \"ValidFrom\" : \"2024-10-10T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"SE EQUIVOCARON DE SOCIEDAD\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"192\",\n \"U_ClienNom\" : \"TotalEnergies EP Bolivie Sucursal Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : null,\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3491\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000192-SR-001639\",\n \"Name\" : \"LICENCIA DE CONDUCIR PRIMERA VEZ - SERGIO MARTIN MENGONI\",\n \"ValidFrom\" : \"2024-10-10T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"SE EQUIVOCO DE SOCIEDAD\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"192\",\n \"U_ClienNom\" : \"TotalEnergies EP Bolivie Sucursal Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : null,\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3492\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000192-SR-001640\",\n \"Name\" : \"CERTIFICADOS DE ANTECEDENTES POLICIALES FELCC - PEDRO CAETANO DIAS RIBEIRO\",\n \"ValidFrom\" : \"2024-10-10T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"SE EQUIVOCO DE SOCIEDAD\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"192\",\n \"U_ClienNom\" : \"TotalEnergies EP Bolivie Sucursal Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : null,\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3493\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000192-SR-001641\",\n \"Name\" : \"CERTIFICADO DE ANTECEDENTES POLICIALES FELCN - PEDRO CAETANO DIAS RIBEIRO\",\n \"ValidFrom\" : \"2024-10-10T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"SE EQUIVOCO DE SOCIEDAD\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"192\",\n \"U_ClienNom\" : \"TotalEnergies EP Bolivie Sucursal Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : null,\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3494\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:05-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:05-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=400\u0026%24top=20 | Status: 200 | Duration: 101.8957ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:05 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000192-SR-001642\",\n \"Name\" : \"FLUJO MIGRATORIO - SERGIO MARTIN MENGONI\",\n \"ValidFrom\" : \"2024-10-10T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"SE EQUIVOCO DE SOCIEDAD\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"192\",\n \"U_ClienNom\" : \"TotalEnergies EP Bolivie Sucursal Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : null,\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3495\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000192-SR-001643\",\n \"Name\" : \"ACTAS NOTARIALES, TRADUCCION Y LEGALIZACION DE DOCMENTOS EN DIRNOPLUS - SERGIO MARTIN MENGONI Y LILI\",\n \"ValidFrom\" : \"2024-10-10T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"SE EQUIVOCO DE SOCIEDAD\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"192\",\n \"U_ClienNom\" : \"TotalEnergies EP Bolivie Sucursal Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : null,\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3496\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000192-SR-001644\",\n \"Name\" : \"CEDULA PARA EXTRANJERO - SERGIO MARTIN MENGONI\",\n \"ValidFrom\" : \"2024-10-10T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorios de USD. 275.75 incluyen gastos e impuestos de ley.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"192\",\n \"U_ClienNom\" : \"TotalEnergies EP Bolivie Sucursal Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : null,\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3497\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000192-SR-001702\",\n \"Name\" : \"PERMANENCIA TEMPORAL DE 1 AÑO POR FAMILIA CONYUGE - MONIKA KATARZYNA BACHEROWICZ\",\n \"ValidFrom\" : \"2024-10-28T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorarios de USD. 1611.19 incluyen gastos e impuestos de ley.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"192\",\n \"U_ClienNom\" : \"TotalEnergies EP Bolivie Sucursal Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3612\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000192-SR-001703\",\n \"Name\" : \"PERMANENCIA TEMPORAL POR FAMILIA MENOR DE EDAD - LOUISI MARIE MILLET\",\n \"ValidFrom\" : \"2024-10-28T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorarios de USD. 1383.70 incluyen gastos e impuestos de ley.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"192\",\n \"U_ClienNom\" : \"TotalEnergies EP Bolivie Sucursal Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3613\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000192-SR-001715\",\n \"Name\" : \"Consulta sobre Óbito en Ambulancia y Procedimiento para Obtener el Asiento de Defunción\",\n \"ValidFrom\" : \"2024-11-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"192\",\n \"U_ClienNom\" : \"TotalEnergies EP Bolivie Sucursal Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3677\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000192-SR-001753\",\n \"Name\" : \"Consultas sobre Pozos de Aguas en el marco del Contrato 4600001257\",\n \"ValidFrom\" : \"2024-12-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"192\",\n \"U_ClienNom\" : \"TotalEnergies EP Bolivie Sucursal Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Ambiental\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3722\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000192-SR-001774\",\n \"Name\" : \"Descargos contra Vista de Cargo de la Aduana Notificación NOT-2024-201711\",\n \"ValidFrom\" : \"2024-12-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Importe ajustado segun correo de fecha 20-12-24 Dr. Rene Cuellar\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"192\",\n \"U_ClienNom\" : \"TotalEnergies EP Bolivie Sucursal Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Aduanero\u0026Comercio Int.\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3758\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000192-SR-001806\",\n \"Name\" : \"Informe ingresos GSA\",\n \"ValidFrom\" : \"2024-12-23T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Corresponde a 18 horas por Bs. 700.- según el Contrato Marco que tenemos con Total\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"192\",\n \"U_ClienNom\" : \"TotalEnergies EP Bolivie Sucursal Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Energía y Recursos Naturales\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3794\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000192-SR-001829\",\n \"Name\" : \"GESTIÓN renovación licencia RENTRAA\",\n \"ValidFrom\" : \"2025-01-16T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"192\",\n \"U_ClienNom\" : \"TotalEnergies EP Bolivie Sucursal Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Ambiental\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3837\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000192-SR-001842\",\n \"Name\" : \"CARNET DE EXTRANJERO - KARINE NATALIE ORSKI EP. PAMBOU\",\n \"ValidFrom\" : \"2025-01-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 275.75 , INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"192\",\n \"U_ClienNom\" : \"TotalEnergies EP Bolivie Sucursal Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3853\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000192-SR-001844\",\n \"Name\" : \"Permanencia indefinida menores de edad - JUAN PEDRO MANDARA\",\n \"ValidFrom\" : \"2025-01-27T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"192\",\n \"U_ClienNom\" : \"TotalEnergies EP Bolivie Sucursal Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3856\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000192-SR-001845\",\n \"Name\" : \"Permanencia indefinida menor de edad - VICENTE MANDARA\",\n \"ValidFrom\" : \"2025-01-27T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"192\",\n \"U_ClienNom\" : \"TotalEnergies EP Bolivie Sucursal Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3857\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000192-SR-001846\",\n \"Name\" : \"Permanencia indefinida conyuge - SILVINA EDITH MAINELLA\",\n \"ValidFrom\" : \"2025-01-27T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"192\",\n \"U_ClienNom\" : \"TotalEnergies EP Bolivie Sucursal Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3858\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000192-SR-001850\",\n \"Name\" : \"Renovacion cedula de extranjero - Vicente Mandara\",\n \"ValidFrom\" : \"2025-01-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"192\",\n \"U_ClienNom\" : \"TotalEnergies EP Bolivie Sucursal Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3862\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000192-SR-001851\",\n \"Name\" : \"Renovación de cedula de extranjero - Juan Pedro Mandara\",\n \"ValidFrom\" : \"2025-01-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"192\",\n \"U_ClienNom\" : \"TotalEnergies EP Bolivie Sucursal Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3863\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000192-SR-001852\",\n \"Name\" : \"Renovacion Cedula de extranjero - Silvina Edith Mainella\",\n \"ValidFrom\" : \"2025-01-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"192\",\n \"U_ClienNom\" : \"TotalEnergies EP Bolivie Sucursal Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3864\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000192-SR-001875\",\n \"Name\" : \"FLUJO MIGRATORIO TERCERO - SERGIO MARTIN MENGONI\",\n \"ValidFrom\" : \"2025-02-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 141.63 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"192\",\n \"U_ClienNom\" : \"TotalEnergies EP Bolivie Sucursal Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3899\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000192-SR-001890\",\n \"Name\" : \"Renovacion Licencia de conducir - Karine Natalie Orski de Pambou\",\n \"ValidFrom\" : \"2025-02-23T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"192\",\n \"U_ClienNom\" : \"TotalEnergies EP Bolivie Sucursal Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3916\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000192-SR-001919\",\n \"Name\" : \"Permanencia temporal de 1 año menor de edad NATHALIE EMMANUELLE PAMBOU\",\n \"ValidFrom\" : \"2025-03-17T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"En este proceso Migratorio se pagaran Multas por lo cual el cliente asumirá estos montos como adici\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"192\",\n \"U_ClienNom\" : \"TotalEnergies EP Bolivie Sucursal Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3956\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:05-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:05-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=420\u0026%24top=20 | Status: 200 | Duration: 113.0314ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:05 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000192-SR-001920\",\n \"Name\" : \"Permanencia temporal de 1 año HUGUES ANDOCHE PAMBOU\",\n \"ValidFrom\" : \"2025-03-17T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"192\",\n \"U_ClienNom\" : \"TotalEnergies EP Bolivie Sucursal Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3957\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000192-SR-001966\",\n \"Name\" : \"Renovacion Cedula de extranjero - NATHALIE EMMANUELLE PAMBOU\",\n \"ValidFrom\" : \"2025-04-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"192\",\n \"U_ClienNom\" : \"TotalEnergies EP Bolivie Sucursal Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4187\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000192-SR-001967\",\n \"Name\" : \"Renovacion Cedula de identidad de extranjeros - HUGUES ANDOCHE PAMBOU\",\n \"ValidFrom\" : \"2025-04-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"192\",\n \"U_ClienNom\" : \"TotalEnergies EP Bolivie Sucursal Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4188\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000192-SR-001993\",\n \"Name\" : \"Gestión cambio radicatoria Vagoneta La Paz mas gestión vehículos en Santa Cruz\",\n \"ValidFrom\" : \"2025-04-28T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"192\",\n \"U_ClienNom\" : \"TotalEnergies EP Bolivie Sucursal Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4260\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000192-SR-001995\",\n \"Name\" : \"Actualización correo en la Aduana Nacional\",\n \"ValidFrom\" : \"2025-04-28T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"192\",\n \"U_ClienNom\" : \"TotalEnergies EP Bolivie Sucursal Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4263\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000192-SR-002014\",\n \"Name\" : \"Ampliacion de Plazo de 90 dias - DAMIAN AGUSTIN LOPEZ\",\n \"ValidFrom\" : \"2025-05-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"192\",\n \"U_ClienNom\" : \"TotalEnergies EP Bolivie Sucursal Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4288\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000192-SR-002035\",\n \"Name\" : \"Informe laboral contratación personal extranjero\",\n \"ValidFrom\" : \"2025-05-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"192\",\n \"U_ClienNom\" : \"TotalEnergies EP Bolivie Sucursal Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4345\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000192-SR-002036\",\n \"Name\" : \"Informe legal sobre ampliación servicios de provisión de carburantes\",\n \"ValidFrom\" : \"2025-05-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"192\",\n \"U_ClienNom\" : \"TotalEnergies EP Bolivie Sucursal Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Administrativo\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4346\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000192-SR-002037\",\n \"Name\" : \"SEGUNDO CERTIFICADO DE EXTENSION DE 90 DIAS ADICIONALES - SERGIO MARTIN MENGONI\",\n \"ValidFrom\" : \"2025-05-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 127.66 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"192\",\n \"U_ClienNom\" : \"TotalEnergies EP Bolivie Sucursal Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4347\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000192-SR-002038\",\n \"Name\" : \"SEGUNDO CERTIFICADO DE EXTENSION DE 90 DIAS ADICIONALES - LILIANA GABRIELA LEGUIZAMON\",\n \"ValidFrom\" : \"2025-05-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 127.66 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"192\",\n \"U_ClienNom\" : \"TotalEnergies EP Bolivie Sucursal Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4348\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000192-SR-002053\",\n \"Name\" : \"Licencia de Conducir categoria P - Fabien André Daniel Millet\",\n \"ValidFrom\" : \"2025-06-05T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"192\",\n \"U_ClienNom\" : \"TotalEnergies EP Bolivie Sucursal Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4366\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000192-SR-002054\",\n \"Name\" : \"Permiso de viaje internacional de menor - NATHALIE EMMANUELLE PAMBOU\",\n \"ValidFrom\" : \"2025-06-05T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"192\",\n \"U_ClienNom\" : \"TotalEnergies EP Bolivie Sucursal Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4367\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000192-SR-002073\",\n \"Name\" : \"Permiso de Viaje de Menor - LOUISE MARIE MILLET\",\n \"ValidFrom\" : \"2025-06-17T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"192\",\n \"U_ClienNom\" : \"TotalEnergies EP Bolivie Sucursal Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : null,\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4465\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000192-SR-002121\",\n \"Name\" : \"Poder Notarial para mudanza mas copia legalizada - SERGIO MARTIN MENGONI\",\n \"ValidFrom\" : \"2025-07-16T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"192\",\n \"U_ClienNom\" : \"TotalEnergies EP Bolivie Sucursal Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : null,\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4531\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000192-SR-002127\",\n \"Name\" : \"Flujo Migratorio - TATIANA VACA PEREIRA CHAVEZ\",\n \"ValidFrom\" : \"2025-07-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"192\",\n \"U_ClienNom\" : \"TotalEnergies EP Bolivie Sucursal Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : null,\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4537\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000195-SR-000696\",\n \"Name\" : \"AEMP\",\n \"ValidFrom\" : \"2023-08-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 350.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"195\",\n \"U_ClienNom\" : \"SABORES BOLIVIANOS ALEMANES S.R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-08-24T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Edwin Rodrigo Burgos Fernandez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"497\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Edwin Rodrigo Burgos Fernandez\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4271,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000195-SR-000932\",\n \"Name\" : \"Servicios Legales Mensuales\",\n \"ValidFrom\" : \"2023-02-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"195\",\n \"U_ClienNom\" : \"SABORES BOLIVIANOS ALEMANES S.R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-02-01T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"1463\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000195-SR-001174\",\n \"Name\" : \"Derecho tributario y planificación fiscal\",\n \"ValidFrom\" : \"2024-04-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"100% Final\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"195\",\n \"U_ClienNom\" : \"SABORES BOLIVIANOS ALEMANES S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Edwin Rodrigo Burgos Fernandez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2858\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Edwin Rodrigo Burgos Fernandez\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000216-SR-000415\",\n \"Name\" : \"NORMATIVA SOBRE VACUNACION COVID 19 Y APLICACION DE PROTOCOLOS DE BIOSEGURIDAD\",\n \"ValidFrom\" : \"2021-08-27T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"La tarifa por los servicios legales asciende a $us. 150 la hora.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"216\",\n \"U_ClienNom\" : \"EMBAJADA AMERICANA EN BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa por hora\",\n \"U_FechaCreacionP\" : \"2021-08-27T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Laboral y de Seguridad Social\",\n \"U_AbogadoEncargado\" : \"Natalio Eduardo Zegarra Ribera\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Natalio Eduardo Zegarra Ribera\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa por hora\",\n \"U_CodAnterior\" : 2906,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000216-SR-000425\",\n \"Name\" : \"ANALISIS DE POLITICA DE IMPLEMENTACION DE TELETRABAJO\",\n \"ValidFrom\" : \"2021-10-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 350.0,\n \"U_Comentarios\" : \"Según instrucción de RMB no se debe cobrar el servicio 22/10/2021\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"216\",\n \"U_ClienNom\" : \"EMBAJADA AMERICANA EN BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-10-22T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Laboral y de Seguridad Social\",\n \"U_AbogadoEncargado\" : \"Natalio Eduardo Zegarra Ribera\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Natalio Eduardo Zegarra Ribera\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 2973,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:05-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:05-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=440\u0026%24top=20 | Status: 200 | Duration: 125.4341ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:06 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000216-SR-000445\",\n \"Name\" : \"ASPECTOS GENERALES DEL SISTEMA DE SEGURIDAD SOCIAL EN BOLIVIA\",\n \"ValidFrom\" : \"2022-01-04T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"14 HORAS DE SERVICIOS PARA LA ELABORACIÓN DEL INFORME LEGAL.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"216\",\n \"U_ClienNom\" : \"EMBAJADA AMERICANA EN BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa por hora\",\n \"U_FechaCreacionP\" : \"2022-01-04T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Laboral y de Seguridad Social\",\n \"U_AbogadoEncargado\" : \"Natalio Eduardo Zegarra Ribera\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Natalio Eduardo Zegarra Ribera\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa por hora\",\n \"U_CodAnterior\" : 3089,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000216-SR-000454\",\n \"Name\" : \"INFORME LEGAL SOBRE NOTA DE SOLICITUD DE RECONSIDERACION DE DESIDO - SR. SAAVEDRA\",\n \"ValidFrom\" : \"2022-01-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"5 HORAS PARA LA ELABORACIÓN DEL INFORME LEGAL\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"216\",\n \"U_ClienNom\" : \"EMBAJADA AMERICANA EN BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa por hora\",\n \"U_FechaCreacionP\" : \"2022-01-21T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Laboral y de Seguridad Social\",\n \"U_AbogadoEncargado\" : \"Natalio Eduardo Zegarra Ribera\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Natalio Eduardo Zegarra Ribera\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa por hora\",\n \"U_CodAnterior\" : 3108,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000216-SR-000487\",\n \"Name\" : \"INFORME LEGAL SOBRE JUBILACION OBLIGATORIA 65 AÑOS - RETIRO FORZOSO\",\n \"ValidFrom\" : \"2022-04-14T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 600.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"216\",\n \"U_ClienNom\" : \"EMBAJADA AMERICANA EN BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-04-14T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Laboral y de Seguridad Social\",\n \"U_AbogadoEncargado\" : \"Natalio Eduardo Zegarra Ribera\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Natalio Eduardo Zegarra Ribera\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 3297,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000216-SR-000506\",\n \"Name\" : \"TRADUCCION AL INGLES DE NORMATIVA LABORAL SOBRE JUBILACION A 65 AÑOS Y OTRAS\",\n \"ValidFrom\" : \"2022-05-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 675.0,\n \"U_Comentarios\" : \"RECOPILACION Y TRADUCCION AL INGLES DE LA NORMATIVA QUE SUSTENTA EL INFORME LEGAL SOBRE JUBILACIÓN A LOS 65 AÑOS, Y TRADUCCIÓN DE LA NORMATIVA RELACIONADA A LA LEY MUNICIPAL 481, Y LA NORMATIVA SOBRE\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"216\",\n \"U_ClienNom\" : \"EMBAJADA AMERICANA EN BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-05-30T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Laboral y de Seguridad Social\",\n \"U_AbogadoEncargado\" : \"Natalio Eduardo Zegarra Ribera\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Natalio Eduardo Zegarra Ribera\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 3403,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000216-SR-000781\",\n \"Name\" : \"ANALISIS SOBRE LA APLICACION DEL SISTEMA DE COMPENSACIÓN VARIABLE\",\n \"ValidFrom\" : \"2023-11-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"Coordinar con Rene Claure y Natalio Zegarra para el cobro de los honorarios cuando el trabajo este f\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"216\",\n \"U_ClienNom\" : \"EMBAJADA AMERICANA EN BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-11-30T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Natalio Eduardo Zegarra Ribera\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"331\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Natalio Eduardo Zegarra Ribera\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4624,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000216-SR-001288\",\n \"Name\" : \"INFORME LEGAL TRABAJADOR CON DISCAPACIDAD CHOFER\",\n \"ValidFrom\" : \"2024-06-17T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Redacción de Informe legal\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"216\",\n \"U_ClienNom\" : \"EMBAJADA AMERICANA EN BOLIVIA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Natalio Zegarra\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3057\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Natalio Zegarra\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000216-SR-001311\",\n \"Name\" : \"INFORME LEGAL - REGULACIÓN SOBRE EL PAGO DEL QUINQUENIO\",\n \"ValidFrom\" : \"2024-06-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"216\",\n \"U_ClienNom\" : \"EMBAJADA AMERICANA EN BOLIVIA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Natalio Zegarra\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3082\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Natalio Zegarra\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000216-SR-001426\",\n \"Name\" : \"Informe pagos a proveedores\",\n \"ValidFrom\" : \"2024-08-08T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"216\",\n \"U_ClienNom\" : \"EMBAJADA AMERICANA EN BOLIVIA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Mercantil-Banca\u0026Finanzas\",\n \"U_AbogadoEncargado\" : \"Fernando Landa\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3252\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Landa\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000216-SR-001430\",\n \"Name\" : \"Legal assistance Seniority Bonus\",\n \"ValidFrom\" : \"2024-08-14T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Utilizar el siguiente código de facturación: 19BL4024P0308, LAPAZ - En Bs. 1.750\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"216\",\n \"U_ClienNom\" : \"EMBAJADA AMERICANA EN BOLIVIA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3263\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000216-SR-001547\",\n \"Name\" : \"Elaboración de informe legal sobre venta de dólares\",\n \"ValidFrom\" : \"2024-09-05T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"216\",\n \"U_ClienNom\" : \"EMBAJADA AMERICANA EN BOLIVIA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Natalio Zegarra\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3398\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Natalio Zegarra\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000216-SR-001667\",\n \"Name\" : \"INFORME - APLICACION LEY 1582 - MODIFICACION LEY DE PENSIONES\",\n \"ValidFrom\" : \"2024-10-17T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Cobrar en bolivianos al tipo de cambio oficial.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"216\",\n \"U_ClienNom\" : \"EMBAJADA AMERICANA EN BOLIVIA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Natalio Zegarra\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3573\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Natalio Zegarra\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000216-SR-001780\",\n \"Name\" : \"INFORME LEGAL SOBRE EL CONCEPTO DE SALARIO EN BOLIVIA\",\n \"ValidFrom\" : \"2024-12-16T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"El importe esta calculado con base a 4 horas de trabajo coordinado con la Embajada.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"216\",\n \"U_ClienNom\" : \"EMBAJADA AMERICANA EN BOLIVIA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Natalio Zegarra\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3765\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Natalio Zegarra\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000216-SR-001782\",\n \"Name\" : \"Asesoría legal por horas\",\n \"ValidFrom\" : \"2024-12-16T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"La tarifa a aplicar es USD 150 por hora,\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"216\",\n \"U_ClienNom\" : \"EMBAJADA AMERICANA EN BOLIVIA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3767\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000216-SR-001785\",\n \"Name\" : \"ELABORACIÓN DE CUADRO SOBRE VACACIONES Y LICENCIAS\",\n \"ValidFrom\" : \"2024-12-18T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Cobrar previa coordinación con el cliente.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"216\",\n \"U_ClienNom\" : \"EMBAJADA AMERICANA EN BOLIVIA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Natalio Zegarra\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3770\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Natalio Zegarra\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000216-SR-001882\",\n \"Name\" : \"REVISION DEL PLAN DE REDUCCION DE PERSONAL - RIF\",\n \"ValidFrom\" : \"2025-02-14T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Cobrar una vez entregado el trabajo y absueltas las consultas adicionales.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"216\",\n \"U_ClienNom\" : \"EMBAJADA AMERICANA EN BOLIVIA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Natalio Zegarra\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3907\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Natalio Zegarra\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000216-SR-001932\",\n \"Name\" : \"Fit-out agreement\",\n \"ValidFrom\" : \"2025-03-23T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"216\",\n \"U_ClienNom\" : \"EMBAJADA AMERICANA EN BOLIVIA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Civil\",\n \"U_AbogadoEncargado\" : \"Fernando Landa\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3969\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Landa\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000216-SR-002010\",\n \"Name\" : \"DEDUCCION Y REPETICION DE PAGOS Y APORTES DE JUBILADOS\",\n \"ValidFrom\" : \"2025-05-08T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Se ha establecido tres horas de honorarios.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"216\",\n \"U_ClienNom\" : \"EMBAJADA AMERICANA EN BOLIVIA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Natalio Zegarra\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"4284\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Natalio Zegarra\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000216-SR-002047\",\n \"Name\" : \"INFORME LEGAL SOBRE INCREMENTO SALARIAL 2025\",\n \"ValidFrom\" : \"2025-05-27T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Cobrar a la finalización del informe.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"216\",\n \"U_ClienNom\" : \"EMBAJADA AMERICANA EN BOLIVIA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Natalio Zegarra\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"4356\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Natalio Zegarra\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000217-SR-000292\",\n \"Name\" : \"FUSION POR ABSORCION\",\n \"ValidFrom\" : \"2020-09-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 13500.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"217\",\n \"U_ClienNom\" : \"NATIONAL OILWELL VARCO DE BOLIVIA S.R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-09-30T00:00:00Z\",\n \"U_AreaProyecto\" : \"M\u0026A\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 2295,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000217-SR-000980\",\n \"Name\" : \"NATIONAL OILWELL VARCO DE BOLIVIA S.R.L.\",\n \"ValidFrom\" : \"2019-04-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"Hora extra US$ 90\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"217\",\n \"U_ClienNom\" : \"NATIONAL OILWELL VARCO DE BOLIVIA S.R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-04-01T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Paul Aramayo Salinas\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:06-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:06-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=460\u0026%24top=20 | Status: 200 | Duration: 90.2367ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:06 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000217-SR-000982\",\n \"Name\" : \"Servicios Legales Mensuales (FM)\",\n \"ValidFrom\" : \"2024-01-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 900.0,\n \"U_Comentarios\" : \"Horas extras USD 90\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"217\",\n \"U_ClienNom\" : \"NATIONAL OILWELL VARCO DE BOLIVIA S.R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa retainer\",\n \"U_FechaCreacionP\" : \"2024-01-01T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"1505\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000218-SR-000325\",\n \"Name\" : \"Actualización de nombre de la organización\",\n \"ValidFrom\" : \"2021-01-14T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 3500.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"218\",\n \"U_ClienNom\" : \"The Church of Jesus Christ of Latter-day Saints (a Utah corporation sole)\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-01-14T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Rene Claure Veizaga\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"307\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Claure Veizaga\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2465,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000218-SR-000981\",\n \"Name\" : \"General Matters -BOL0004000250\",\n \"ValidFrom\" : \"2019-04-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"SEGUN TABLA DE PRECIOS\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"218\",\n \"U_ClienNom\" : \"The Church of Jesus Christ of Latter-day Saints (a Utah corporation sole)\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-04-01T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"Paul Aramayo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"1565\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Paul Aramayo\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000220-SR-000995\",\n \"Name\" : \"Asesoria tributaria NIC 19\",\n \"ValidFrom\" : \"2024-02-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"220\",\n \"U_ClienNom\" : \"Mediterranean Shippig Company (Bolivia) Limitada\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Edwin Rodrigo Burgos Fernandez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2293\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Edwin Rodrigo Burgos Fernandez\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000221-SR-001239\",\n \"Name\" : \"Procesos Penales, Civiles y Laborales\",\n \"ValidFrom\" : \"2024-05-17T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"NO SE DEBE FACTURAR - ESTE ASUNTO ES SOLO PARA CARGAR HORAS\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"221\",\n \"U_ClienNom\" : \"CORSAN CORVIAM CONSTRUCCION S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Litigios\",\n \"U_AbogadoEncargado\" : \"Natalio Eduardo Zegarra Ribera\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2972\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Natalio Eduardo Zegarra Ribera\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000040\",\n \"Name\" : \"PERMANENCIA TEMPORAL DE UN AÑO - SINAN OZCAN\",\n \"ValidFrom\" : \"2019-02-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 9095.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-02-15T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"530\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1146,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000042\",\n \"Name\" : \"PERMANENCIA TEMPORAL DE UN AÑO CON CARTA DE INVITACION DE TRABAJO MARIO FERMIZA PIDO\",\n \"ValidFrom\" : \"2019-02-27T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 9095.490,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 9.095,49.- INCLUYEN GASTOS E IMPUESTOS DE LEY. FACTURADO EN SAP 14/03/2019 FAC\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-02-27T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"531\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1168,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000043\",\n \"Name\" : \"PERMANENCIA TEMPORAL DE 1 AÑO - ERIC MAXIMILIAN SVEDIN BAROUTSIS\",\n \"ValidFrom\" : \"2019-02-27T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 9095.490,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 9095, 49.- INCLUYEN GASTOS E IMPUESTOS DE LEY. FACTUADO EN SAP 25/10/2021 SEGU\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-02-27T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"532\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1169,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000044\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO 90 - DÍAS AZAD KABODI\",\n \"ValidFrom\" : \"2019-02-27T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 5070.580,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 5.070,58.- INCLUYEN GASTOS E IMPUESTOS DE LEY. FACTURADO EN SAP 08/02/2019 S.C\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-02-27T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"533\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1170,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000045\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO 90 - DÍAS FABIAN KLUESENER\",\n \"ValidFrom\" : \"2019-02-27T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 5070.580,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 5.070,58.- INCLUYEN GASTOS E IMPUESTOS DE LEY. FACTURADO SAP 07/03/2019 SC SEG\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-02-27T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"534\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1171,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000047\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO 90 DÍAS - SAM ELIAS AXELSSON\",\n \"ValidFrom\" : \"2019-03-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 5368.220,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 5.368,22.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-03-13T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"535\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1202,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000048\",\n \"Name\" : \"PERMANENCIA TEMPORAL DE 1 AÑO SIN CONTRATO EXTRANJERO- JONAS KREYER\",\n \"ValidFrom\" : \"2019-03-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 9444.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 9.444,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-03-13T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"536\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1204,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000049\",\n \"Name\" : \"AMPLIACIÓN DE VISA D OBJETO DETERMINADO 30 DÍAS -SWARAJ ANAND\",\n \"ValidFrom\" : \"2019-03-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 4411.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 4.411,62.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-03-13T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"537\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1205,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000050\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO 90 DÍAS - CARSTEN NICK NEU\",\n \"ValidFrom\" : \"2019-03-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 5368.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 5.368,22.- INCLUYEN GASTOS E IMPUESTOS DE LEY. FACTURADO EN SAP 07/03/2019 SEG\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-03-13T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"538\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1206,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000051\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO 90 DÍAS - MICHAL MAKSYMILIAN LIS\",\n \"ValidFrom\" : \"2019-03-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 5368.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 5.368,22.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-03-13T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"539\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1203,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000054\",\n \"Name\" : \"PERMANENCIA POR UN AÑO SIN CONTRATO EXTRANJERO- SWARAJ ANAND\",\n \"ValidFrom\" : \"2019-03-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 9444.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 9.444,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-03-21T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"540\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1239,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000055\",\n \"Name\" : \"AMPLIACION VISA DE TURISMO- GUNCHA AFSARI\",\n \"ValidFrom\" : \"2019-03-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 3110.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 3.110,12.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-03-21T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"541\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1240,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000056\",\n \"Name\" : \"AUTORIZACIÓN DE CARTA DE INVITACIÓN - EMIL ERIK MELIN\",\n \"ValidFrom\" : \"2019-03-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2298.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 2.298,39.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-03-21T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"542\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1241,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000057\",\n \"Name\" : \"AUTORIZACIÓN DE CARTA DE INVITACIÓN - COLM CHRISTOPHER KEANE\",\n \"ValidFrom\" : \"2019-03-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2298.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 2.298,39.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-03-21T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"543\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1242,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000058\",\n \"Name\" : \"AUTORIZACIÓN DE CARTA DE INVITACIÓN - DAN OLOF BERTIL SANDHOLM\",\n \"ValidFrom\" : \"2019-03-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2298.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 2.298,39.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-03-21T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"544\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1243,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:06-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:06-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=480\u0026%24top=20 | Status: 200 | Duration: 110.9336ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:06 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000234-SR-000059\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO 30 DÍAS - LAMPPELA SEPPO JUHANI\",\n \"ValidFrom\" : \"2019-03-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 4044.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 4.044,61.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-03-21T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"545\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1244,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000060\",\n \"Name\" : \"VISA OBJETO DETERMINADO 30 DÍAS - MICHAEL SZOBOTKA\",\n \"ValidFrom\" : \"2019-03-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 4044.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 4.044,61.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-03-21T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"546\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1245,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000061\",\n \"Name\" : \"RESIDENCIA MERCOSUR POR 2 AÑOS - ALEXANDRE DOS SANTOS\",\n \"ValidFrom\" : \"2019-03-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 5849.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 5.849,10.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-03-21T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"547\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1247,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000062\",\n \"Name\" : \"RENOVACION CEDULA DE EXTRANJERO- MARIO FERMIZA PIDO\",\n \"ValidFrom\" : \"2019-03-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1794.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 1.794,47.- INCLUYEN GASTOS E IMPUESTOS DE LEY. FACTURADO SAP 14/03/2019 SEGUB\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-03-21T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"548\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1249,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000063\",\n \"Name\" : \"RENOVACION CEDULA DE EXTRANJERO- JOSE LUIS LOPEZ MEDINA\",\n \"ValidFrom\" : \"2019-03-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1794.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 1.794,47.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-03-21T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"549\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1250,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000064\",\n \"Name\" : \"RENOVACION CEDULA DE EXTRANJERO- RICARDO ALVES SANTANA\",\n \"ValidFrom\" : \"2019-03-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1794.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 1.794,47.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-03-21T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"550\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1251,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000066\",\n \"Name\" : \"CEDULA DE EXTRANJERO -ERIC MAXIMILIAN SVEDIN BAROUTSIS\",\n \"ValidFrom\" : \"2019-03-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1794.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 1.794,47.- INCLUYEN GASTOS E IMPUESTOS DE LEY. FACTURADO EN SAP 25/10/2021 SEG\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-03-22T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"551\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1255,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000067\",\n \"Name\" : \"CEDULA DE EXTRANJERO- SINAN OZCAN\",\n \"ValidFrom\" : \"2019-03-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1794.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 1.794,47.- INCLUYEN GASTOS E IMPUESTOS DE LEY. FACTURADO 25/03/2019 SEGUN FAC\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-03-22T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"552\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1256,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000068\",\n \"Name\" : \"PERMANENCIA POR UN AÑO SIN CONTRATO EXTRANJERO- GUNNAR FRANS EMIL JANSSON\",\n \"ValidFrom\" : \"2019-03-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 9444.0,\n \"U_Comentarios\" : \"LOS HONORARISO DE BS. 9.444,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-03-22T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"553\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1257,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000069\",\n \"Name\" : \"PERMANENCIA POR UN AÑO SIN CONTRATO EXTRANJERO- PAUL PHILIP WILLMANN\",\n \"ValidFrom\" : \"2019-03-26T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 9444.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 9.444,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-03-26T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"554\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1261,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000070\",\n \"Name\" : \"CEDULA DE EXTRANJERO- VAN VINH NGUYEN\",\n \"ValidFrom\" : \"2019-03-26T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1794.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 1.794,47.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-03-26T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"555\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1265,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000071\",\n \"Name\" : \"CEDULA DE EXTRANJERO- JONAS KREYER\",\n \"ValidFrom\" : \"2019-03-26T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1794.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 1.794,47.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-03-26T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"556\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1266,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000075\",\n \"Name\" : \"AUTORIZACIÓN DE CARTA DE INVITACIÓN - ABDUL IMAMNAZAR\",\n \"ValidFrom\" : \"2019-04-04T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2298.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 2,298,39.- INCLUYEN GASTOS E IMPUESTOS DE LEY\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-04-04T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"557\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1281,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000076\",\n \"Name\" : \"VISA OBJETO DETERMINADO 30 DÍAS - DARREN ROBERT HUNT\",\n \"ValidFrom\" : \"2019-04-04T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 4044.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE 4.044,61.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-04-04T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"558\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1283,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000077\",\n \"Name\" : \"VISA OBJETO DETERMINADO 30 DÍAS - UNGAR TAMAS\",\n \"ValidFrom\" : \"2019-04-04T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 4044.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 4.044,61.- INCLUYEN GASTOS E IMPUESTOS DE LEY\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-04-04T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"559\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1284,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000078\",\n \"Name\" : \"AUTORIZACIÓN DE CARTA DE INVITACIÓN - NILS JOHAN ULRIKOLSSON\",\n \"ValidFrom\" : \"2019-04-04T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2298.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 2.298,39.- INCLUYEN GASTOS E IMPUESTOS DE LEY./ Según TriveñoInactivar - Pr\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-04-04T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"560\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1285,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000079\",\n \"Name\" : \"AUTORIZACIÓN DE CARTA DE INVITACIÓN - ARIEL FAUSTINO DE GUZMAN\",\n \"ValidFrom\" : \"2019-04-04T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2298.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 2.298,39.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-04-04T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"561\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1286,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000083\",\n \"Name\" : \"AUTORIZACIÓN DE CARTA DE INVITACIÓN - KENT JOAKIM ANDERSSON\",\n \"ValidFrom\" : \"2019-04-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2298.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 2.298,30 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-04-12T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"562\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1300,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000084\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO 90 DÍAS - KENT JOAKIM ANDERSSON\",\n \"ValidFrom\" : \"2019-04-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 5368.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 5.368,22.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-04-12T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"563\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1301,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000085\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO 90 DÍAS - DAN OLOF BERTIL SANDHOLM\",\n \"ValidFrom\" : \"2019-04-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 5368.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 5.368,22.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-04-15T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"564\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1305,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:06-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:06-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=500\u0026%24top=20 | Status: 200 | Duration: 110.9372ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:06 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000234-SR-000086\",\n \"Name\" : \"AUTORIZACIÓN DE CARTA DE INVITACIÓN - JASON LLOYD THIBODEAUX\",\n \"ValidFrom\" : \"2019-04-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2298.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 2.298,39.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-04-15T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"565\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1308,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000088\",\n \"Name\" : \"VISA OBJETO DETERMINADO 30 DÍAS - OLEGORIO AGUILAR ARMENTA\",\n \"ValidFrom\" : \"2019-04-17T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 4044.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 4.044,61.- INCLUYEN GASTOS E IMPUESTOS DE LEY FACTURADO EN SAP EN FECHA 25 AG\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-04-17T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"566\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1318,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000089\",\n \"Name\" : \"PERMANENCIA TEMPORAL DE UN AÑO POR FAMILIA- GUNCHA AFSARI\",\n \"ValidFrom\" : \"2019-04-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 5675.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 5.675.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-04-22T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"567\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1324,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000090\",\n \"Name\" : \"CEDULA DE EXTRANJERO- SWARAJ ANAND\",\n \"ValidFrom\" : \"2019-04-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1794.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 1.794.- INCLUYEN GASTOS E IMPUESTOS DE LEY\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-04-22T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"568\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1325,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000091\",\n \"Name\" : \"AUTORIZACIÓN DE CARTA DE INVITACIÓN – NILS JOHAN ULRIK OLSSON\",\n \"ValidFrom\" : \"2019-04-26T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2298.40,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-04-26T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"569\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1328,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000094\",\n \"Name\" : \"PERMANENCIA POR UN AÑO SIN CONTRATO EXTRANJERO - MARKUS KOPRAX\",\n \"ValidFrom\" : \"2019-05-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 9444.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 9.444,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-05-07T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"570\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1348,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000095\",\n \"Name\" : \"PERMANENCIA POR UN AÑO SIN CONTRATO EXTRANJERO- MANFRED GALLEE\",\n \"ValidFrom\" : \"2019-05-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 9444.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 9.444,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-05-07T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"571\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1349,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000096\",\n \"Name\" : \"CÉDULA DE EXTRANJERO - GUNNAR FRANS EMIL JANSSON\",\n \"ValidFrom\" : \"2019-05-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1794.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 1.794,47.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-05-07T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"572\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1362,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000097\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO 90 DÍAS - COLM CHRISTOPHER KEANE\",\n \"ValidFrom\" : \"2019-05-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 5368.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 5.368,22.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-05-07T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"573\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1364,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000098\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO 90 DÍAS - JASON LLOYD THIBODEAUX\",\n \"ValidFrom\" : \"2019-05-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 5368.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 5.368,22.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-05-07T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"574\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1365,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000099\",\n \"Name\" : \"PERMANENCIA POR UN AÑO SIN CONTRATO EXTRANJERO- TAMAS UNGAR\",\n \"ValidFrom\" : \"2019-05-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 9444.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 9.444,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-05-07T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"575\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1366,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000100\",\n \"Name\" : \"PERMANENCIA POR UN AÑO SIN CONTRATO EXTRANJERO- ARIEL FAUSTINO DE GUZMÁN\",\n \"ValidFrom\" : \"2019-05-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 9444.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 9.444,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-05-09T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"576\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1374,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000101\",\n \"Name\" : \"CÉDULA DE EXTRANJERO- PAUL PHILIP WILLMANN\",\n \"ValidFrom\" : \"2019-05-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1794.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 1.794,47.- INCLUYE GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-05-09T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"577\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1376,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000105\",\n \"Name\" : \"REGISTRO DE CARTA DE INVITACION - THOMAS SOLL\",\n \"ValidFrom\" : \"2019-05-17T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2298.0,\n \"U_Comentarios\" : \"MONTO FACTURADO BS. 2298.39 MAS HONORARIOS E IMPUESTOS DE LEY\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-05-17T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"578\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1390,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000106\",\n \"Name\" : \"PERMANENCIA TRANSITORIA POR TURISMO O VISITA 60 DÍAS - SHRADDHA ROHIT ERRAM\",\n \"ValidFrom\" : \"2019-05-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 3095.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 3.095,92.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-05-29T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"579\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1401,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000107\",\n \"Name\" : \"PERMANENCIA TRANSITORIA POR TURISMO O VISITA 60 DIAS - JIYAAN ROHIT ERRAM\",\n \"ValidFrom\" : \"2019-05-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 3095.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 3.095,92.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-05-29T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"580\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1402,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000108\",\n \"Name\" : \"VISA OBJETO DETERMINADO 30 DÍAS - YOEL ALEXANDER GARCÍA PULIDO\",\n \"ValidFrom\" : \"2019-05-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 4044.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 4.044,61.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-05-29T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"581\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1403,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000109\",\n \"Name\" : \"PERMANENCIA TEMPORAL POR UN AÑO SIN CONTRATO EXTRANJERO - CARSTEN NICK NEU\",\n \"ValidFrom\" : \"2019-05-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 9044.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 9.044,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-05-29T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"582\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1404,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000110\",\n \"Name\" : \"AUTORIZACIÓN DE CARTA DE INVITACIÓN - LEIF ANDREAS LUNDBERG\",\n \"ValidFrom\" : \"2019-05-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2298.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 2.298,39.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-05-29T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"583\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1405,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000111\",\n \"Name\" : \"AUTORIZACIÓN DE CARTA DE INVITACIÓN - JORGE LUIS PAZ PEREZ\",\n \"ValidFrom\" : \"2019-05-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2298.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 2.298,39.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-05-29T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"584\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1406,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:06-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:06-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=520\u0026%24top=20 | Status: 200 | Duration: 107.8977ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:06 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000234-SR-000112\",\n \"Name\" : \"AUTORIZACIÓN DE CARTA DE INVITACIÓN - KJELL IVAR OTTOSSON\",\n \"ValidFrom\" : \"2019-05-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2298.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 2.298,39.- INCLUYEN GASTOS E IMPUESTOS DE LEY\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-05-29T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"585\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1407,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000113\",\n \"Name\" : \"AUTORIZACIÓN DE CARTA DE INVITACIÓN - SERGIO PEREZ FUENTES TOSTADO\",\n \"ValidFrom\" : \"2019-05-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2298.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 2.298,39.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-05-29T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"586\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1408,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000114\",\n \"Name\" : \"AUTORIZACIÓN DE CARTA DE INVITACIÓN - HABIB GILBERTO HERNANDEZ GARCIA\",\n \"ValidFrom\" : \"2019-05-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2298.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 2.298,39.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-05-29T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"587\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1409,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000116\",\n \"Name\" : \"CEDULA DE EXTRANJERO – GUNCHA AFSARI\",\n \"ValidFrom\" : \"2019-05-31T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1794.50,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-05-31T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"588\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1415,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000117\",\n \"Name\" : \"AUTORIZACIÓN DE CARTA DE INVITACIÓN - BRYAN CHRISTOPHER MANDER\",\n \"ValidFrom\" : \"2019-06-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2298.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS, 2.298,39 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-06-12T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"589\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1431,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000118\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO 90 DÍAS -KJELL IVAR OTTOSSON\",\n \"ValidFrom\" : \"2019-06-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 5368.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 5.368, 22.- INCLUYEN GASTOS E IMPUESTOS DE LEY\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-06-25T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"590\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1445,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000119\",\n \"Name\" : \"AUTORIZACIÓN DE CARTA DE INVITACIÓN - PAUL ALAN CLARK\",\n \"ValidFrom\" : \"2019-06-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2298.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 2298,39.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-06-25T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"591\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1446,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000120\",\n \"Name\" : \"AUTORIZACIÓN DE CARTA DE INVITACIÓN - PAUL ANTHONY SWINGLER\",\n \"ValidFrom\" : \"2019-06-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2298.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 2298,39.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-06-25T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"592\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1447,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000121\",\n \"Name\" : \"AUTORIZACIÓN DE CARTA DE INVITACIÓN - Kristofer Karl Gustav Horkeby\",\n \"ValidFrom\" : \"2019-07-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2298.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 2.298.39.- INCLUYEN GASTOS E IMPUESTOS DE LEY. FACTURADO EN SAP 04/07/2019 SEG\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-07-02T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"593\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1469,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000122\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO 90 DÍAS - SIMON PHILIPP LUEKE\",\n \"ValidFrom\" : \"2019-07-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 5368.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 5.368,22.- INCLUYEN GASTOS E IMPUESTOS DE LEY. FACTURADO EN SAP 04/07/2019 SEG\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-07-02T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"594\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1470,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000123\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO 90 DÍAS - SEBASTIAN HITZ\",\n \"ValidFrom\" : \"2019-07-04T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 5368.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 5.368,22.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-07-04T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"595\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1478,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000124\",\n \"Name\" : \"PERMANENCIA POR UN AÑO SIN CONTRATO EXTRANJERO- FELIX VOGEL\",\n \"ValidFrom\" : \"2019-07-04T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 9444.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 9.444,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY. FACTURADO EN SAP 25/10/2021 SEG\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-07-04T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"596\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1479,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000125\",\n \"Name\" : \"PERMANENCIA POR UN AÑO SIN CONTRATO EXTRANJERO- THOMAS SOLL\",\n \"ValidFrom\" : \"2019-07-04T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 9444.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 9.444.15.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-07-04T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"597\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1480,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000127\",\n \"Name\" : \"TRASPASO DE PERMANENCIA TEMPORAL DE 1 AÑO - WILHELM SEBASTIAN ZEH\",\n \"ValidFrom\" : \"2019-07-10T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2868.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 2.868,97.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-07-10T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"598\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1493,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000128\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO 90 DÍAS - RENE BAUMGARTNER\",\n \"ValidFrom\" : \"2019-07-10T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 5368.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 5.368,22.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-07-10T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"599\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1496,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000129\",\n \"Name\" : \"AUTORIZACIÓN DE CARTA DE INVITACIÓN - ALI MAGHSOUDI\",\n \"ValidFrom\" : \"2019-07-17T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2298.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 2.298,39.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-07-17T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"600\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1504,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000130\",\n \"Name\" : \"AUTORIZACIÓN DE CARTA DE INVITACIÓN - HOANG VAN DUONG\",\n \"ValidFrom\" : \"2019-07-17T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2298.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 2.298,39.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-07-17T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"601\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1505,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000131\",\n \"Name\" : \"VISA OBJETO DETERMINADO 30 DÍAS - RENATO SCARPELIN\",\n \"ValidFrom\" : \"2019-07-17T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 4044.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 4.044,61.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-07-17T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"602\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1509,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000135\",\n \"Name\" : \"AUTORIZACIÓN DE CARTA DE INVITACIÓN - MATTIAS CHRISTIAN BERGLUND\",\n \"ValidFrom\" : \"2019-07-31T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2298.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 2.298,39.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-07-31T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"603\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1528,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000136\",\n \"Name\" : \"AUTORIZACIÓN DE CARTA DE INVITACIÓN - EMIL AGUILON\",\n \"ValidFrom\" : \"2019-07-31T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2298.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 2.298,39.- INCLUYE GASTOS E IMPUESTOS DE LEY\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-07-31T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"604\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1529,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:06-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:06-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=540\u0026%24top=20 | Status: 200 | Duration: 121.8026ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:06 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000234-SR-000137\",\n \"Name\" : \"PERMANENCIA TEMPORAL DE 1 AÑO POR TRABAJO – STEPHAN MARCUS KREUZER\",\n \"ValidFrom\" : \"2019-08-05T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1356.920,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-08-05T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"605\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1539,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000138\",\n \"Name\" : \"Cedula de Identidad de Extranjero - ARIEL FAUSTINO DE GUZMÁN\",\n \"ValidFrom\" : \"2019-08-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 247.830,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-08-07T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"606\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1540,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000142\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO 90 DÍAS - EMIL AGUILON MAGNAYE\",\n \"ValidFrom\" : \"2019-08-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 5368.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE 5.368,22.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-08-09T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"607\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1547,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000143\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO 90 DÍAS - SERGIO DE JESUS HERRERA IZQUIERDO.\",\n \"ValidFrom\" : \"2019-08-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 5368.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE 5.368,22.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-08-09T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"608\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1548,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000144\",\n \"Name\" : \"PERMANENCIA POR UN AÑO SIN CONTRATO EXTRANJERO- MICHAEL STEFAN MATJESCHK\",\n \"ValidFrom\" : \"2019-08-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 9444.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 9.444,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-08-09T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"609\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1549,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000145\",\n \"Name\" : \"PERMANENCIA POR UN AÑO SIN CONTRATO EXTRANJERO- BAR HENNING\",\n \"ValidFrom\" : \"2019-08-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 9444.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 9.444,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-08-09T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"610\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1550,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000146\",\n \"Name\" : \"PERMANENCIA POR UN AÑO SIN CONTRATO EXTRANJERO- TINO GUSTSCHOW\",\n \"ValidFrom\" : \"2019-08-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 9444.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 9.444,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-08-09T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"611\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1551,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000147\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO 180 DÍAS - RADOSLAW PIOTR GRZEMOWSKI\",\n \"ValidFrom\" : \"2019-08-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 6018.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 6.018,89.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-08-09T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"612\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1552,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000148\",\n \"Name\" : \"PERMANENCIA POR UN AÑO SIN CONTRATO EXTRANJERO- KENNETH TEETZEN\",\n \"ValidFrom\" : \"2019-08-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 9444.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 9.444,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-08-09T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"613\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1553,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000149\",\n \"Name\" : \"PERMANENCIA POR UN AÑO SIN CONTRATO EXTRANJERO- CARLOS MANUEL SILVA RODRIGUEZ\",\n \"ValidFrom\" : \"2019-08-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 9444.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 9.444,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-08-09T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"614\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1554,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000150\",\n \"Name\" : \"AMPLIACIÓN DE VISA OBJETO DETERMINADO 30 DÍAS - JASON LLOYD THIBODEAUX\",\n \"ValidFrom\" : \"2019-08-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 4411.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 4.411,62.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-08-09T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"615\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1555,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000151\",\n \"Name\" : \"AUTORIZACIÓN DE CARTA DE INVITACIÓN - MATTIAS CHRISTIAN BERGLUND\",\n \"ValidFrom\" : \"2019-08-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"BOB\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2298.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 2.298,39.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-08-09T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"616\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"BOB\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1557,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000155\",\n \"Name\" : \"PERMANENCIA POR UN AÑO CON CARTA DE INVITACIÓN- HOANG VAN DUONG\",\n \"ValidFrom\" : \"2019-08-14T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 9444.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 9.444,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-08-14T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"617\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1577,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000159\",\n \"Name\" : \"CEDULA DE EXTRANJERO- MAKUS KOPRAX\",\n \"ValidFrom\" : \"2019-08-23T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1794.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 1794,47.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-08-23T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"618\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1597,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000160\",\n \"Name\" : \"CÉDULA DE EXTRANJERO- UNGAR TAMAS\",\n \"ValidFrom\" : \"2019-08-23T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1794.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 1.794,47.- INCLUYEN GASTOS E IMPUESTOS DE LEY. FACTURADO EN SAP 25/10/2021 SEG\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-08-23T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"619\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1598,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000161\",\n \"Name\" : \"CEDULA DE EXTRANJERO- ALEXANDRE DOS SANTOS\",\n \"ValidFrom\" : \"2019-08-23T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1794.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 1.794,47.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-08-23T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"620\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1599,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000163\",\n \"Name\" : \"SEGUNDA AUTORIZACIÓN DE CARTA DE INVITACIÓN - LEIF ANDREAS LUNDBERG\",\n \"ValidFrom\" : \"2019-08-27T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2298.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 2.298,39.- INCLUYE GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-08-27T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"621\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1612,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000164\",\n \"Name\" : \"SEGUNDA AUTORIZACIÓN DE CARTA DE INVITACIÓN - YOEL ALEXANDER GARCIA PULIDO\",\n \"ValidFrom\" : \"2019-08-27T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2298.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 2.298,39.- INCLUYE GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-08-27T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"622\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1613,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000165\",\n \"Name\" : \"SEGUNDA AUTORIZACIÓN DE CARTA DE INVITACIÓN -HABIB GILBERTO HERNANDEZ GARCIA\",\n \"ValidFrom\" : \"2019-08-27T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2298.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 2.298,39.- INCLUYE GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-08-27T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"623\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1614,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000166\",\n \"Name\" : \"SEGUNDA AUTORIZACIÓN DE CARTA DE INVITACIÓN - JORGE LUIS PAZ PEREZ\",\n \"ValidFrom\" : \"2019-08-27T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2298.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 2.298,39.- INCLUYE GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-08-27T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"624\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1615,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:07-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:07-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=560\u0026%24top=20 | Status: 200 | Duration: 99.2374ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:07 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000234-SR-000167\",\n \"Name\" : \"SEGUNDA AUTORIZACIÓN DE CARTA DE INVITACIÓN - PAUL ANTHONY SWINGLER\",\n \"ValidFrom\" : \"2019-08-27T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2298.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 2.298,39.- INCLUYE GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-08-27T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"625\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1616,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000168\",\n \"Name\" : \"AUTORIZACIÓN DE CARTA DE INVITACIÓN - PAUL HOUSTON SAPP\",\n \"ValidFrom\" : \"2019-08-27T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2298.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 2.298,39.- INCLUYE GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-08-27T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"626\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1617,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000169\",\n \"Name\" : \"AUTORIZACIÓN DE CARTA DE INVITACIÓN - COLM KHRISTOPHER KEANE\",\n \"ValidFrom\" : \"2019-08-27T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2298.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 2.298,39.- INCLUYE GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-08-27T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"627\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1618,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000171\",\n \"Name\" : \"AUTORIZACIÓN DE CARTA DE INVITACIÓN - TEH TIONG WEI\",\n \"ValidFrom\" : \"2019-09-10T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2251.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 2.251,75.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-09-10T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"628\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1642,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000172\",\n \"Name\" : \"RESIDENCIA MERCOSUR POR 2 AÑOS - CARLOS VIEIRA PATRICIO\",\n \"ValidFrom\" : \"2019-09-10T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 5790.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 5.790,49.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-09-10T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"629\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1643,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000173\",\n \"Name\" : \"PERMANENCIA POR UN AÑO SIN CONTRATO EXTRANJERO- JASON LLOYD THIBODEAUX\",\n \"ValidFrom\" : \"2019-09-10T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 9095.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 9.095,49.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-09-10T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"630\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1644,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000174\",\n \"Name\" : \"CEDULA DE EXTRANJERO- THOMAS SOLL\",\n \"ValidFrom\" : \"2019-09-10T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1794.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 1.794,47.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-09-10T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"631\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1645,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000175\",\n \"Name\" : \"CEDULA DE EXTRANJERO- HENNING BAR\",\n \"ValidFrom\" : \"2019-09-10T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1794.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 1.794,47.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-09-10T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Administrativo\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"632\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1646,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000176\",\n \"Name\" : \"RENOVACION CEDULA DE EXTRANJERO- CARLOS MANUEEL SILVA RODRIGUEZ\",\n \"ValidFrom\" : \"2019-09-10T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1794.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 1.794,47.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-09-10T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"633\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1647,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000177\",\n \"Name\" : \"PERMANENCIA POR UN AÑO SIN CONTRATO EXTRANJERO- LUIZ CARLOS FELICIANO\",\n \"ValidFrom\" : \"2019-09-10T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 9095.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 9.095,49.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-09-10T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"634\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1648,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000178\",\n \"Name\" : \"RENOVACIÓN CÉDULA DE EXTRANJERO- LUIZ CARLOS FELICIANO\",\n \"ValidFrom\" : \"2019-09-10T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1794.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 1.794,47.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-09-10T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"635\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1649,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000179\",\n \"Name\" : \"CÉDULA DE EXTRANJERO- TINO GUTSCHOW\",\n \"ValidFrom\" : \"2019-09-10T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1794.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 1.794,47.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-09-10T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"636\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1650,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000180\",\n \"Name\" : \"CEDULA DE EXTRANJERO- MICHAEL STEFAN NATJESCHK\",\n \"ValidFrom\" : \"2019-09-10T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1794.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 1.794,47.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-09-10T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"637\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1651,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000181\",\n \"Name\" : \"CÉDULA DE EXTRANJERO- STEPHAN MARCUS KREUZER\",\n \"ValidFrom\" : \"2019-09-10T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1974.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 1.794,47.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-09-10T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"638\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1652,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000182\",\n \"Name\" : \"AMPLIACIÓN DE VISA D OBJETO DETERMINADO 30 DÍAS - COLM CHRISTOPHER KEANE\",\n \"ValidFrom\" : \"2019-09-10T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 4411.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 4.411,62.- INCLUYE GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-09-10T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"639\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1653,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000183\",\n \"Name\" : \"PERMANENCIA POR UN AÑO SIN CONTRATO EXTRANJERO- COLM CHRISTOPHER KEANE\",\n \"ValidFrom\" : \"2019-09-10T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 9444.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 9.444,15.- INCLUYE GASTOS E IMPUESTOS DE LEY./ Según Triveño Inactivar - No\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-09-10T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"640\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1654,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000184\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO 90 DÍAS - JORGE LUIS PAZ PEREZ\",\n \"ValidFrom\" : \"2019-09-10T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 5368.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 5.368,22.- INCLUYEN GASTOS E IMPUESTOS DE LEY\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-09-10T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"641\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1657,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000185\",\n \"Name\" : \"CEDULA DE EXTRANJERO- VAN DUONG HOANG\",\n \"ValidFrom\" : \"2019-09-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1794.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 1.794,47.-INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-09-11T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"642\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1661,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000187\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO 90 DÍAS - MATTIAS CHRISTIAN BERGLUND\",\n \"ValidFrom\" : \"2019-09-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 5368.0,\n \"U_Comentarios\" : \"los honorarios de Bs. 5.368,22.- incluyen gastos e impuestos de ley. FACTURADO EN SAP 21/08/2019 SE\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-09-13T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"643\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1665,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000188\",\n \"Name\" : \"PERMANENCIA POR UN AÑO SIN CONTRATO EXTRANJERO- WILHELM SEBASTIAN ZEH\",\n \"ValidFrom\" : \"2019-09-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 9444.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 9.444,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-09-13T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"644\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1666,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:07-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:07-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=580\u0026%24top=20 | Status: 200 | Duration: 121.9391ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:07 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000234-SR-000191\",\n \"Name\" : \"PERMANENCIA POR UN AÑO SIN CONTRATO EXTRANJERO- SIMON PHILIPP LUEKE\",\n \"ValidFrom\" : \"2019-09-23T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 9444.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 9.444,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-09-23T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"645\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1684,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000194\",\n \"Name\" : \"CEDULA DE EXTRANJERO- JASON LLOYD THIBODEAUX\",\n \"ValidFrom\" : \"2019-09-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1794.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 1.794,47.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-09-30T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"646\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1700,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000195\",\n \"Name\" : \"Autorización de carta de invitación. - GUNNAR FRANS EMIL JANSSON\",\n \"ValidFrom\" : \"2019-09-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 322.990,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-09-30T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"647\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1698,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000198\",\n \"Name\" : \"PERMANENCIA TEMPORAL POR 1 AÑO SIN CONTRATO - GENEBRALDO ANTONIO URDANETA MONROY\",\n \"ValidFrom\" : \"2019-10-04T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1356.920,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-10-04T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"648\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1711,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000199\",\n \"Name\" : \"CÉDULA DE EXTRANJERO - GENEBRALDO ANTONIO URDANETA MONROY\",\n \"ValidFrom\" : \"2019-10-04T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 257.830,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-10-04T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"649\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1712,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000202\",\n \"Name\" : \"CEDULA DE EXTRANJERO - CARLOS VIEIRA PATRICIO\",\n \"ValidFrom\" : \"2019-10-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 257.830,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-10-07T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"650\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1713,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000203\",\n \"Name\" : \"PERMANENCIA TEMPORAL DE 1AÑO POR TRABAJO - PAUL HERRMANN\",\n \"ValidFrom\" : \"2019-10-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 9444.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-10-07T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"651\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1714,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000204\",\n \"Name\" : \"AUTORIZACIÓN DE CARTA DE INVITACIÓN - SEBASTIAN HITZ\",\n \"ValidFrom\" : \"2019-10-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2298.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 2.298,39.- INCLUYEN GASTOS E IMPUESTOS DE LEY. FACTURADO EN SAP 16/12/2019 SEG\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-10-09T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"652\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1723,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000205\",\n \"Name\" : \"AUTORIZACIÓN DE CARTA DE INVITACIÓN - ANDREAS PREIHS\",\n \"ValidFrom\" : \"2019-10-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2298.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 2.298,39.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-10-09T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"653\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1724,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000207\",\n \"Name\" : \"RENOVACIÓN CÉDULA DE EXTRANJERO- WILHELM SEBASTIAN ZEH\",\n \"ValidFrom\" : \"2019-10-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1794.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 1.794,47.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-10-11T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"654\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1729,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000208\",\n \"Name\" : \"CÉDULA DE EXTRANJERO- SIMON PHILIPP LUEKE\",\n \"ValidFrom\" : \"2019-10-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1794.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 1.794,47.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-10-11T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"655\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1730,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000209\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO 90 DÍAS - TEH TIONG WEI\",\n \"ValidFrom\" : \"2019-10-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 5368.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 5.368,22.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-10-11T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"656\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1731,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000211\",\n \"Name\" : \"PERMANENCIA POR UN AÑO SIN CONTRATO EXTRANJERO- `RADOSLAW PIOTR GRZEMOWSKI\",\n \"ValidFrom\" : \"2019-10-14T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 9444.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 9.444,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY. FATURADO EN SAP 10-03/2020 SEGU\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-10-14T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"657\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1736,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000214\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO 90 DÍAS - DIANA ZSUZSANNA FOLLATH\",\n \"ValidFrom\" : \"2019-11-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 5368.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 5.368,22.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-11-13T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"658\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1783,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000225\",\n \"Name\" : \"PERMANENCIA TEMPORAL DE 1 AÑO SIN CONTRATO - RADOSLAW PIOTR GREZEMOWSKI\",\n \"ValidFrom\" : \"2020-01-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 9444.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 9.444,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-01-15T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"659\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1876,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000227\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO 180 DÍAS - ROBERT HUBNER\",\n \"ValidFrom\" : \"2020-01-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 6018.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 6.018,89.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-01-21T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"660\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1884,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000232\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO 90 DÍAS - TIONG WEI TEH\",\n \"ValidFrom\" : \"2020-02-03T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 5368.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 5.368,85.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-02-03T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"661\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1902,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000233\",\n \"Name\" : \"RESIDENCIA MERCOSUR POR 2 AÑOS - EDUARDO DO NASCIMENTO OLIVEIRA\",\n \"ValidFrom\" : \"2020-02-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 5849.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 5.849,10.- INCLUYEN GASTOS E IMPUESTOS DE LEY./ Según Triveño Inactivar - no\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-02-07T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"662\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1917,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000234\",\n \"Name\" : \"RENOVACION CEDULA DE EXTRANJERO- RADOSLAW PIORT GREMOWSKI\",\n \"ValidFrom\" : \"2020-02-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1794.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 1.794,47.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-02-07T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"663\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1919,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000236\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO 90 DÍAS - MANUEL IVAN MURILLO\",\n \"ValidFrom\" : \"2020-02-10T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 5368.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 5.368,22.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-02-10T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"664\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1935,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:07-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:07-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=600\u0026%24top=20 | Status: 200 | Duration: 109.4725ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:07 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000234-SR-000238\",\n \"Name\" : \"PERMANENCIA DE UN AÑO SIN CONTRATO EXTRANJERO - MARIO FERMIZA PIDO\",\n \"ValidFrom\" : \"2020-02-18T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 9444.0,\n \"U_Comentarios\" : \"LOD HONORARIOS DE BS. 9.444,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-02-18T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"665\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1940,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000239\",\n \"Name\" : \"PERMANENCIA DE UN AÑO SIN CONTRATO EXTRANJERO- JOSE LUIS LOPEZ MEDINA\",\n \"ValidFrom\" : \"2020-02-18T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 9444.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 9.444,15.-INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-02-18T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"666\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1941,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000240\",\n \"Name\" : \"PERMANENCIA TEMPORAL DE 1 AÑO SIN CONTRATO EXTRANJERO - SEBASTIAN HITZ\",\n \"ValidFrom\" : \"2020-02-18T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 9444.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 9.444,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-02-18T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"667\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1942,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000241\",\n \"Name\" : \"CÉDULA DE EXTRANJERO- EDUARDO DO NASCIMENTO OLIVEIRA\",\n \"ValidFrom\" : \"2020-02-18T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1794.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS.1.794,47.- INCLUYEN GASTOS E IMPUESTOS DE LEY.- Según Triveño Inactivar - no\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-02-18T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"668\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1952,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000243\",\n \"Name\" : \"AUTORIZACIÓN DE CARTA DE INVITACIÓN - ALAA ZITOUN\",\n \"ValidFrom\" : \"2020-03-04T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2298.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 2.298,39.- INCLUYEN GASTOS E IMPUESTOS DE LEY./ Según Triveño Inactivar - no\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-03-04T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"669\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1984,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000244\",\n \"Name\" : \"AMPLIACIÓN DE PERMANENCIA POR TRABAJO 30 DÍAS - ALAA ZITOUN\",\n \"ValidFrom\" : \"2020-03-04T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 4411.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 4.411,62.- INCLUYEN GASTOS E IMPUESTOS DE LEY./ Según Triveño Inactivar - n\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-03-04T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"670\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1985,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000249\",\n \"Name\" : \"PERMANENCIA POR UN AÑO SIN CONTRATO EXTRANJERO- SINAN OZCAN\",\n \"ValidFrom\" : \"2020-03-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 9444.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 9.444,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY. FACTURADO EN SAP 25/03/2019 SEG\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-03-12T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"671\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2001,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000250\",\n \"Name\" : \"CÉDULA DE EXTRANJERO - SEBASTIAN HITZ\",\n \"ValidFrom\" : \"2020-03-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1794.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 1.794,47.- INCLUYEN GASTOS E IMPUESTOS DE LEY. FACURADO EN SAP 09/04/2020 SEGU\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-03-12T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"672\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2003,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000270\",\n \"Name\" : \"PERMANENCIA TEMPORAL DE 1 AÑO SIN CONTRATO - LUCCAS GIMENEZ PIMENTA\",\n \"ValidFrom\" : \"2020-08-14T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 9444.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 9.444,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY,\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-08-14T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"673\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2217,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000271\",\n \"Name\" : \"RESIDENCIA MERCOSUR POR 2 AÑOS - ARTIME SERGIO DA SILVA\",\n \"ValidFrom\" : \"2020-08-14T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 5849.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 5.849,10.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-08-14T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"674\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2218,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000273\",\n \"Name\" : \"PERMANENCIA TRANSITORIA POR TRABAJO 180 DIAS- HUGO LEONARDO DANDARO\",\n \"ValidFrom\" : \"2020-08-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 6018.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 6.018,89.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\\r\\rSIEMENS BRASIL\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-08-24T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"675\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2221,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000274\",\n \"Name\" : \"RENOVACION CEDULA DE EXTRANJERO- LUCCAS GIMENEZ PIMENTA\",\n \"ValidFrom\" : \"2020-08-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1794.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 1.794,47.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-08-24T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"676\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2225,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000282\",\n \"Name\" : \"PERMANENCIA POR UN AÑO SIN CONTRATO EXTRANJERO- ALIN-STEFAN MARGAU\",\n \"ValidFrom\" : \"2020-09-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 9444.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 9.444,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\\r\\rNOTA: A SOLICITUD DEL CLIENTE\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-09-20T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"677\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2273,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000283\",\n \"Name\" : \"PERMANENCIA DE UN AÑO SIN CONTRATO EXTRANJERO- JASON LLOYD THIBODEAUX\",\n \"ValidFrom\" : \"2020-09-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 9444.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 9.444,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\\r\\rNOTA: A SOLICITUD DEL CLIENTE\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-09-20T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"678\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2274,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000284\",\n \"Name\" : \"PERMANENCIA TEMPORAL DE 1 AÑO SIN CONTRATO - STEVAN JAKSIC\",\n \"ValidFrom\" : \"2020-09-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 9444.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 9.444,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\\r\\rNOTA: A SOLICITUD DEL CLIENTE\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-09-20T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"679\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2275,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000285\",\n \"Name\" : \"AUTORIZACIÓN DE CARTA DE INVITACIÓN - OLEGORIO AGUILAR ARMENTA\",\n \"ValidFrom\" : \"2020-09-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2298.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 2.298,39.- INCLUYEN GASTOS E IMPUESTOS DE LEY. FACTURADO EN SAP EN FECHA 25 AG\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-09-20T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"680\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2281,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000286\",\n \"Name\" : \"AUTORIZACIÓN DE CARTA DE INVITACIÓN - TOBIAS HENGST\",\n \"ValidFrom\" : \"2020-09-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2298.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 2.298,39.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-09-20T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"681\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2282,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000287\",\n \"Name\" : \"PERMANENCIA TRANSITORIA POR TRABAJO 30 DÍAS - JAIR CLAUBER MACHADO FONSECA\",\n \"ValidFrom\" : \"2020-09-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 4411.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 4.411,62.- INCLUYEN GASTOS E IMPUESTOS DE LEY./ Según Triveño Inactivar - No\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-09-20T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"682\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2283,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000305\",\n \"Name\" : \"RENOVACIÓN PERMANENCIA TEMPORAL POR 1 AÑO SIN CONTRATO - GENEBRALDO ANTONIO URDANETA MONROY\",\n \"ValidFrom\" : \"2020-12-03T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 9444.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 9444.- INCLUYEN GASTOS E IMPUESTOS DE LEY. FATURADO EN SAP 04/10/2019 SEGUN FA\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-12-03T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"683\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2385,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000306\",\n \"Name\" : \"PERMANENCIA POR UN AÑO SIN CONTRATO EXTRANJERO- ROBERT BEUCHEL\",\n \"ValidFrom\" : \"2020-12-06T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 9444.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 9.444.15.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-12-06T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"684\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2387,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:07-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:07-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=620\u0026%24top=20 | Status: 200 | Duration: 119.5642ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:07 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000234-SR-000307\",\n \"Name\" : \"PERMANENCIA POR UN AÑO SIN CONTRATO EXTRANJERO - TEH TIONG WEI\",\n \"ValidFrom\" : \"2020-12-06T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 9444.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE 9.444,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-12-06T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"685\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2388,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000310\",\n \"Name\" : \"PERMANENCIA DE UN AÑO SIN CONTRATO EXTRANJERO - WILHELM SEBASTIAN ZEH\",\n \"ValidFrom\" : \"2020-12-10T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 9444.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 9.444,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-12-10T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"686\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2404,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000315\",\n \"Name\" : \"CÉDULA DE EXTRANJERO - STEVAN JAKSIC\",\n \"ValidFrom\" : \"2020-12-23T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1794.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 1.794,47.- INCLUYE GASTOS E IMPUESTOS DE LEY\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-12-23T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"687\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2419,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000316\",\n \"Name\" : \"CÉDULA DE EXTRANJERO - JASON LLOYD THIBODEAUX\",\n \"ValidFrom\" : \"2020-12-23T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1794.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 1.794,47.- INCLUYE GASTOS E IMPUESTOS DE LEY\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-12-23T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"688\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2420,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000317\",\n \"Name\" : \"CÉDULA DE EXTRANJERO - ALIN STEFAN MARGAU\",\n \"ValidFrom\" : \"2020-12-23T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1794.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 1.794,47.- INCLUYE GASTOS E IMPUESTOS DE LEY\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-12-23T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"689\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2421,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000322\",\n \"Name\" : \"CÉDULA DE EXTRANJERO - ROBERT BEUCHEL\",\n \"ValidFrom\" : \"2021-01-06T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1794.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 1.794, 47.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-01-06T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"690\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2448,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000323\",\n \"Name\" : \"RENOVACIÓN CÉDULA DE EXTRANJERO - WILHELM SEBASTIAN ZEH\",\n \"ValidFrom\" : \"2021-01-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1794.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 1.794, 47.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-01-07T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"691\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2449,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000324\",\n \"Name\" : \"CÉDULA DE EXTRANJERO - TIONG WEI TEH\",\n \"ValidFrom\" : \"2021-01-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1794.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 1.794, 47.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-01-07T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"692\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2450,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000329\",\n \"Name\" : \"RENOVACIÓN CÉDULA DE EXTRANJERO - GENEBRALDO ANTONIO URDANETA MONROY\",\n \"ValidFrom\" : \"2021-01-28T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1794.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 1.794,47.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-01-28T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"693\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2494,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000331\",\n \"Name\" : \"PERMANENCIA DE UN AÑO SIN CONTRATO EXTRANJERO- WILLIAN PEREIRA CALIMAN\",\n \"ValidFrom\" : \"2021-02-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 9444.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 9.444,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY. /según Triveño Inactivar - n\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-02-09T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"694\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2505,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000332\",\n \"Name\" : \"CÉDULA DE EXTRANJERO - WILLIAN PEREIRA CALIMAN\",\n \"ValidFrom\" : \"2021-02-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1794.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 1.794,47. INCLUYEN GASTOS E IMPUESTOS DE LEY./ Según Triveño Inactivar - no\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-02-09T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"695\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2506,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000340\",\n \"Name\" : \"RENOVACIÓN DE PERMANENCIA TEMPORAL DE 1 AÑO SIN CONTRATO EXTRANERO - MARIO FERMIZA PIDO\",\n \"ValidFrom\" : \"2021-03-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 9444.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 9.444,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-03-25T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"696\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2574,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000341\",\n \"Name\" : \"PERMANENCIA TEMPORAL DE 1 AÑO SIN CONTRATO - SUNILKUMAR NAGINBHAI DAVE\",\n \"ValidFrom\" : \"2021-03-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 9444.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 9.444,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-03-25T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"697\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2575,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000356\",\n \"Name\" : \"PERMANENCIA TEMPORAL DE 1 AÑO SIN CONTRATO - JASMINE MORAWETZ\",\n \"ValidFrom\" : \"2021-04-19T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 9444.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 9,444,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-04-19T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"698\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2642,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000357\",\n \"Name\" : \"PERMANENCIA TRANSITORIA POR TRABAJO 90 DIAS- JULIO CESAR PIRES BISPO\",\n \"ValidFrom\" : \"2021-04-19T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 5368.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 5,368,22.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-04-19T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"699\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2643,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000358\",\n \"Name\" : \"PERMANENCIA TRANSITORIA POR TRABAJO 90 DÍAS- MIGUEL ANGELO OLIVEIRA\",\n \"ValidFrom\" : \"2021-04-19T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 5368.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 5,368,22.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-04-19T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"700\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2644,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000369\",\n \"Name\" : \"PERMANENCIA DE UN AÑO SIN CONTRATO EXTRANJERO - SUBODH KUMAR SINGHAL\",\n \"ValidFrom\" : \"2021-04-28T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 9444.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 9.444,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-04-28T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"701\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2656,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000373\",\n \"Name\" : \"RENOVACIÓN CÉDULA DE EXTRANJERO - MARIO FERMIZA PIDO\",\n \"ValidFrom\" : \"2021-05-18T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1794.0,\n \"U_Comentarios\" : \"LOS HONORSRIOS DE BS. 1.794,47 INCLUYEN GASTOS E IMPUESTOS DE LEY. FACTURADO EN SAP 14/03/2019 SEGUN\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-05-18T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"702\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2690,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000374\",\n \"Name\" : \"CÉDULA DE EXTRANJERO - JAZMINE MORAWETZ\",\n \"ValidFrom\" : \"2021-05-18T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1794.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 1.794,47.- INCLUYE GASTOS E IMPUESTOS DE LEY. FACTURADO EN SAP 08/06/2021 SEGU\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-05-18T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"703\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2691,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000379\",\n \"Name\" : \"CÉDULA DE EXTRANJERO - SUBODH KUMAR SINGHAL\",\n \"ValidFrom\" : \"2021-05-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1794.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 1794,47 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-05-25T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"704\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2703,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:07-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:07-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=640\u0026%24top=20 | Status: 200 | Duration: 116.5872ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:07 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000234-SR-000380\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO 30 DÍAS AEROPUERTO - HECTOR LUIS BELISARIO CARDENAS\",\n \"ValidFrom\" : \"2021-05-26T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2298.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 2.298,39.- INCLUYEN GASTOS E IMPUESTOS DE LEY. FACTURADO EN SAP EN FECHA 25 AG\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-05-26T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"705\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2706,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000396\",\n \"Name\" : \"CEDULA EXTRANJERA - SUNILKUMAR NAGINBHAI DAVE\",\n \"ValidFrom\" : \"2021-07-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1794.0,\n \"U_Comentarios\" : \"LOS HONORARIOS BS. 1794.47 INCLUYEN GASTOS E IMPUESTOS DE LEY\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-07-07T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"706\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2786,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000397\",\n \"Name\" : \"REGISTRO DE CARTA DE INVITACION - RADOSLAW PIOTR GREMOWSKI\",\n \"ValidFrom\" : \"2021-07-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2298.0,\n \"U_Comentarios\" : \"LOS HONORARIOS BS. 2298.39 INCLUYEN GASTOS E IMPUESTOS DE LEY. FACTURADO EN SAP 25/10/2021 SEGUN FAC\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-07-07T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"707\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2780,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000398\",\n \"Name\" : \"PERMANENCIA TRANSITORIA POR TRABAJO 30 DÍAS AEROPUERTO- EUSEBIO CORTEZ ZEGARRA\",\n \"ValidFrom\" : \"2021-07-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2298.0,\n \"U_Comentarios\" : \"LOS HONORARIOS BS. 2298.39 INCLUYEN GASTOS E IMPUESTOS DE LEY. FACTURADO EN SAP 18/11/2021 SEGUN FAC\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-07-07T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"708\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2781,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000414\",\n \"Name\" : \"ANTECEDENTES APOSTILLADOS PARA VIAJE - HEINRICH DIRK FEULNER Y JUAN FRANCISCO PRADO CRESPO\",\n \"ValidFrom\" : \"2021-08-19T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 14198.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 14198,85 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-08-19T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"709\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2896,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000416\",\n \"Name\" : \"CÉDULA DE EXTRANJERO - ALEX GILBERT A. DENIS\",\n \"ValidFrom\" : \"2021-08-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1794.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 1794.47 INCLUYEN GASTOS E IMPUESTOS DE LEY./ Según triveño inactivar - este\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-08-30T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"710\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2910,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000417\",\n \"Name\" : \"CÉDULA DE EXTRANJERO - JUAN FRANCISCO ARIAS RAMIREZ\",\n \"ValidFrom\" : \"2021-08-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1794.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 1794.47 INCLUYEN GASTOS E IMPUESTOS DE LEY. / Según Triveño inactivar - est\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-08-30T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"711\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2911,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000421\",\n \"Name\" : \"OBTENCION DE FLCN Y REJAP PARA LA ADUANA NACIONAL - PERSONAL SIEMENS ENERGY\",\n \"ValidFrom\" : \"2021-10-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 5090.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-10-01T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"712\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2944,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000426\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO AEROPUERTO - MANUEL ANGEL SANZ RODRIGUEZ\",\n \"ValidFrom\" : \"2021-10-26T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2298.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 2298.39 INCLUYEN GASTOS E IMPUESTOS DE LEY. FACTURADO EN SAP 18/11/2021 SEGUN\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-10-26T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"713\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2974,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000427\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO AEROPUERTO - TIM RAYMOND FRACE\",\n \"ValidFrom\" : \"2021-10-26T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2298.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 2298.33 INCLUYEN GASTOS E IMPUESTOS DE LEY. FACTURADO EN SAP 18/11/2021 SEGUN\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-10-26T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"714\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2975,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000428\",\n \"Name\" : \"PERMANENCIA TRANSITORIA POR TRABAJO 30 DÍAS AEROPUERTO- TIM HOLD\",\n \"ValidFrom\" : \"2021-10-26T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2298.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 2298.39 INCLUYEN GASTOS E IMPPUESTOS DE LEY. FACTURADO EN SAP 18/11/2021 SEGUN\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-10-26T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"715\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2977,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000436\",\n \"Name\" : \"PERMANENCIA DE UN AÑO SIN CONTRATO EXTRANJERO - JASON LLOYD THIBODEAUX\",\n \"ValidFrom\" : \"2021-11-19T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 9444.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 9444.15 INCLUYEN GASTOS E IMPUESTOS DE LEY FACTURADO EN SAP 09/10/2019 SEGUN F\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-11-19T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"716\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3024,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000441\",\n \"Name\" : \"RENOVACION LICENCIA DE CONDUCIR - GELVIS SALVADOR VALDEZ SUAREZ\",\n \"ValidFrom\" : \"2021-12-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2404.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 2404.04 INCLUYEN GASTOS E IMPUESTOS DE LEY./ Según Triveño Inactivar - No se\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-12-15T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"717\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3058,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000489\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO 30 DIAS AEROPUERTO - LESLIE CHARLES\",\n \"ValidFrom\" : \"2022-04-18T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 330.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 330 INCLUYEN GASTOS E IMPUESTOS DE LEY./ Según Triveño inactivar - este cli\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-04-18T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"718\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3300,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000490\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO AEROPUERTO - GRZEGORZ DARIUSZ KASIAZEK\",\n \"ValidFrom\" : \"2022-04-18T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 330.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 330 INCLUYEN GASTOS E IMPUESTOS DE LEY./ Según Triveño inactivar - este cli\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-04-18T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"719\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3301,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000497\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO 90 DIAS POR TRABAJO - GRZEGORZ DARIUSZ KASIAZEK\",\n \"ValidFrom\" : \"2022-05-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 5368.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 5368.22 INCLUYEN GASTOS E IMPUESTOS DE LEY./ Según Triveño inactivar - este\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-05-11T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"720\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3383,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000498\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO 90 DIAS POR TRABAJO - LESLIE CHARLES\",\n \"ValidFrom\" : \"2022-05-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 5368.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 5368.22 INCLUYEN GASTOS E IMPUESTOS DE LEY./ Según Triveño inactivar - este\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-05-11T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"721\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3384,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000501\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO 30 DIAS AEROPUERTO - GENEBRALDO ANTONIO URDANETA MONROY\",\n \"ValidFrom\" : \"2022-05-18T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 330.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 330 INCLUYEN GASTOS E IMPUESTOS DE LEY. FACTURADO EN SAP 19/05/2022 SEGUN FAC\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-05-18T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"722\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3389,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000502\",\n \"Name\" : \"VISA DE OBJETO DETERMINADO 180 DÍAS - CESAR AUGUSTO ESTRADA MATA\",\n \"ValidFrom\" : \"2022-05-18T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 6018.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 6018.89 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-05-18T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"723\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3390,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000234-SR-000537\",\n \"Name\" : \"VISA TRANSITORIA DE 30 DIAS AEROPUERTO - DIEGO HECTOR VAZQUEZ\",\n \"ValidFrom\" : \"2022-09-27T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2296.80,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 2296.8 INCLUYEN GASTOS E IMPUESTOS DE LEY./ Según triveño Inactivar - Proyec\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-09-27T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"724\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3600,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:07-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:08-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=660\u0026%24top=20 | Status: 200 | Duration: 96.6ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:08 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000234-SR-000909\",\n \"Name\" : \"SERVICIOS LEGALES MENSUALES (FM)\",\n \"ValidFrom\" : \"2019-02-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"BS\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"234\",\n \"U_ClienNom\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-02-01T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000235-SR-001017\",\n \"Name\" : \"Servicios legales mensuales (FM)\",\n \"ValidFrom\" : \"2024-02-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"BOB\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"235\",\n \"U_ClienNom\" : \"MB SERVICIOS REGULATORIOS SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Back Office\",\n \"U_AbogadoEncargado\" : \"Limbert Alfredo Chalco Herrera\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2322\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"BOB\",\n \"U_Soc_Responsable\" : \"Limbert Alfredo Chalco Herrera\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000236-SR-000197\",\n \"Name\" : \"Servicios Legales Mensuales(FM)\",\n \"ValidFrom\" : \"2019-10-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 500.0,\n \"U_Comentarios\" : \"SE CALCULA DESDE EL MES DE SEPTEIMBRE 2021 por esta razón las horas no se acumulan\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"236\",\n \"U_ClienNom\" : \"SPC Impresores S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa retainer\",\n \"U_FechaCreacionP\" : \"2019-10-02T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"Andrés Moreno\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 2,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"150\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andrés Moreno\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 1703,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000236-SR-000280\",\n \"Name\" : \"SPC IMPRESORES ct. HEREDEROS DE JAVIER WILSER LAREDO GARCIA - CONSIGNACIÓN BENEFICIOS SOCIALES\",\n \"ValidFrom\" : \"2020-09-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1700.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"236\",\n \"U_ClienNom\" : \"SPC Impresores S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-09-01T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Natalio Eduardo Zegarra Ribera\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"729\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Natalio Eduardo Zegarra Ribera\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2239,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000236-SR-000845\",\n \"Name\" : \"PROCESO LABORAL - ALEJANDRO SALAZAR ct. SPC IMPRESORES - JUZGADO 9º DE TRABAJO\",\n \"ValidFrom\" : \"2022-09-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 6495.60,\n \"U_Comentarios\" : \"EL PAGO DE HONORARIOS PROFESIONALES ESTA SUJETO EN FUNCIÓN AL AVANCE DEL PROCESO. SE HA SOLICITADO AL CLIENTE EL DEPOSITO DE BS. 2000 EN UNA CUENTA DE EMBA PARA GASTOS JUDICIALES\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"236\",\n \"U_ClienNom\" : \"SPC Impresores S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2022-09-20T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Natalio Eduardo Zegarra Ribera\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"1341\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Natalio Eduardo Zegarra Ribera\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 3589,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000237-SR-001202\",\n \"Name\" : \"Opinión Legal Acción Popular Cosset\",\n \"ValidFrom\" : \"2024-04-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"237\",\n \"U_ClienNom\" : \"TIGO - Telefónica Celular de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Administrativo\",\n \"U_AbogadoEncargado\" : \"Daniel Marcelo Arredondo Zelada\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2909\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Daniel Marcelo Arredondo Zelada\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000237-SR-001203\",\n \"Name\" : \"Opinión Legal Acción Popular Cosset\",\n \"ValidFrom\" : \"2024-04-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"237\",\n \"U_ClienNom\" : \"TIGO - Telefónica Celular de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Administrativo\",\n \"U_AbogadoEncargado\" : \"Daniel Marcelo Arredondo Zelada\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2910\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Daniel Marcelo Arredondo Zelada\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000239-SR-000024\",\n \"Name\" : \"25 PROCESOS ADM TRIBUTARIOS (FM)\",\n \"ValidFrom\" : \"2018-08-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"239\",\n \"U_ClienNom\" : \"AGROGRAIN LIMITED SUCURSAL URUGUAY\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2018-08-01T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Andres Moreno Gutierrez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andres Moreno Gutierrez\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 4,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000239-SR-000052\",\n \"Name\" : \"25 Procesos Judiciales Laborales y Administrativos Tributarios\",\n \"ValidFrom\" : \"2019-03-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 64032.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"239\",\n \"U_ClienNom\" : \"AGROGRAIN LIMITED SUCURSAL URUGUAY\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-03-15T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Andrés Moreno\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"167\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andrés Moreno\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 1212,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000239-SR-000410\",\n \"Name\" : \"DEFENSA TRIBUTARIA RADIP 212179000020 PERIODO ABRIL 2018\",\n \"ValidFrom\" : \"2021-08-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 6500.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"239\",\n \"U_ClienNom\" : \"AGROGRAIN LIMITED SUCURSAL URUGUAY\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-08-11T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Edwin Rodrigo Burgos Fernandez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"168\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Edwin Rodrigo Burgos Fernandez\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2878,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000239-SR-000800\",\n \"Name\" : \"Defensa Tributaria VC 291979000410\",\n \"ValidFrom\" : \"2019-10-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 25000.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"239\",\n \"U_ClienNom\" : \"AGROGRAIN LIMITED SUCURSAL URUGUAY\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2019-10-11T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Luis Valda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"1249\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Valda\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 1728,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000239-SR-001255\",\n \"Name\" : \"Defensa Radip-21247900003-Mayo2018\",\n \"ValidFrom\" : \"2024-05-31T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"HItos:\\r1. Revisión de documentación más la impugnación en primera instancia USD 10.500.- \\r2. Pro\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"239\",\n \"U_ClienNom\" : \"AGROGRAIN LIMITED SUCURSAL URUGUAY\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Luis Valda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3001\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Valda\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000243-SR-000073\",\n \"Name\" : \"GESTIÓN DE COBRANZA\",\n \"ValidFrom\" : \"2019-03-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"HONORARIOS Y FORMA DE PAGO A CONFIRMAR CON EL DR. ANDRÉS MORENO\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"243\",\n \"U_ClienNom\" : \"FABER CASTELL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-03-29T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der.Civil\",\n \"U_AbogadoEncargado\" : \"Rene Claure Veizaga\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"355\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Claure Veizaga\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1269,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000243-SR-001767\",\n \"Name\" : \"Elaboración de Contrato de Línea de Crédito con Corporación Lauro\",\n \"ValidFrom\" : \"2024-12-08T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"El cliente es Faber Castell Brasil. El cliente es extranjero\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"243\",\n \"U_ClienNom\" : \"FABER CASTELL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Zeballos\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3744\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Zeballos\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000245-SC-000170\",\n \"Name\" : \"Proceso Laboral seguido por le Sr. Guido Cuellar Cabera\",\n \"ValidFrom\" : \"2018-10-31T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"245\",\n \"U_ClienNom\" : \"SAMSUNG E\u0026A BOLIVIA S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Paul Aramayo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"1933\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Paul Aramayo\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000245-SR-000200\",\n \"Name\" : \"Servicios Legales Mensuales para etapa de inactividad\",\n \"ValidFrom\" : \"2019-10-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1500.0,\n \"U_Comentarios\" : \"ESTE HONORARIO CORRE DESDE EL 01 DE NOVIEMBRE 20019\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"245\",\n \"U_ClienNom\" : \"SAMSUNG E\u0026A BOLIVIA S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa retainer\",\n \"U_FechaCreacionP\" : \"2019-10-07T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"Ines Ayala\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 11,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"147\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ines Ayala\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 1715,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000245-SR-000201\",\n \"Name\" : \"SÍNDICO\",\n \"ValidFrom\" : \"2019-10-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 750.0,\n \"U_Comentarios\" : \"EL HONORARIO CORRE DESDE EL 01 DE NOVIEMBRE\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"245\",\n \"U_ClienNom\" : \"SAMSUNG E\u0026A BOLIVIA S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-10-07T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"Ines Ayala\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"503\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ines Ayala\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 1717,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000245-SR-000395\",\n \"Name\" : \"RENOVACION DE CEDULA EXTRANJERA - TAE JOON PARK\",\n \"ValidFrom\" : \"2021-07-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 150.0,\n \"U_Comentarios\" : \"\\\"LOS HONORARIOS DEBER SER CALCULADOS EN LA SUMA DE USD. 150 + IVA\\rACLARANDO QUE LOS HONORARIOS NO INCLUYEN NINGÚN GASTO DE TRAMITE.\\\"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"245\",\n \"U_ClienNom\" : \"SAMSUNG ENGINEERING BOLIVIA S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-07-07T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 2782,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000245-SR-001530\",\n \"Name\" : \"Proceso laboral seguido por Jorge Jiménez Guardia\",\n \"ValidFrom\" : \"2024-09-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"ESTE ASUNTO, ESTA REEMPLAZANDO A UN ASUNTO MIGRADO POR HORAS, PORQUE NO SE TENIA HONORARIO, AHORA ES\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"245\",\n \"U_ClienNom\" : \"SAMSUNG E\u0026A BOLIVIA S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Paul Aramayo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3376\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Paul Aramayo\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000245-SR-001769\",\n \"Name\" : \"Proceso Laboral seguido por le Sr. Guido Cuellar Cabera\",\n \"ValidFrom\" : \"2024-11-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"245\",\n \"U_ClienNom\" : \"SAMSUNG E\u0026A BOLIVIA S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3747\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:08-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:08-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=680\u0026%24top=20 | Status: 200 | Duration: 96.2568ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:08 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000245-SR-002063\",\n \"Name\" : \"PATROCINIO LEGAL PROCESO LABORAL EDGAR MIRANDA\",\n \"ValidFrom\" : \"2025-06-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"245\",\n \"U_ClienNom\" : \"SAMSUNG E\u0026A BOLIVIA S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Paul Aramayo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4451\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Paul Aramayo\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000248-SR-000288\",\n \"Name\" : \"VISA HIPÓLITO\",\n \"ValidFrom\" : \"2020-09-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 200.0,\n \"U_Comentarios\" : \"El pago será efectuado una vez el cliente obtenga su visa.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"248\",\n \"U_ClienNom\" : \"AMERFACHADAS CONSTRUCCIONES\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-09-21T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"173\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2285,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000248-SR-000289\",\n \"Name\" : \"VISA RODRIGO\",\n \"ValidFrom\" : \"2020-09-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 200.0,\n \"U_Comentarios\" : \"El pago será efectuado una vez el cliente obtenga su visa.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"248\",\n \"U_ClienNom\" : \"AMERFACHADAS CONSTRUCCIONES\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-09-21T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 2286,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000248-SR-000290\",\n \"Name\" : \"VISA ORLANDO\",\n \"ValidFrom\" : \"2020-09-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 200.0,\n \"U_Comentarios\" : \"El pago será efectuado una vez el cliente obtenga su visa.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"248\",\n \"U_ClienNom\" : \"AMERFACHADAS CONSTRUCCIONES\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-09-21T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"175\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2287,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000249-SR-000115\",\n \"Name\" : \"Servicios Legales Mensuales\",\n \"ValidFrom\" : \"2019-05-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1500.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"249\",\n \"U_ClienNom\" : \"PECOM SERVICIOS ENERGIA S.A. (SUCURSAL BOLIVIA)\",\n \"U_FormaCobro\" : \"Honorario tarifa retainer\",\n \"U_FechaCreacionP\" : \"2019-05-30T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 12,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"130\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 1410,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000249-SR-000911\",\n \"Name\" : \"TRAMITES DE COMPRAVENTA DE VEHICULOS\",\n \"ValidFrom\" : \"2020-09-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1200.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"249\",\n \"U_ClienNom\" : \"BOLLAND Y COMPAÑÍA S.A SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa retainer\",\n \"U_FechaCreacionP\" : \"2020-09-22T00:00:00Z\",\n \"U_AreaProyecto\" : \"Civil (Contratación, informes y otros)\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 12,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 2289,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000249-SR-001467\",\n \"Name\" : \"Residencia bajo convenio con Argentina de Gabriel Barros\",\n \"ValidFrom\" : \"2024-08-27T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"El honorario incluye impuestos y gastos. De tal manera que los gastos deben ser cubiertos por MB y n\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"249\",\n \"U_ClienNom\" : \"PECOM SERVICIOS ENERGIA S.A. (SUCURSAL BOLIVIA)\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3304\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000249-SR-001468\",\n \"Name\" : \"Obtención de Carnet de Extranjero para Gabriel Barros\",\n \"ValidFrom\" : \"2024-08-27T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"El honorario incluye impuestos y gastos. De tal manera que los gastos deben ser cubiertos por MB y n\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"249\",\n \"U_ClienNom\" : \"PECOM SERVICIOS ENERGIA S.A. (SUCURSAL BOLIVIA)\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3305\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000249-SR-001550\",\n \"Name\" : \"Soporte en venta de activos fijos\",\n \"ValidFrom\" : \"2024-09-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorarios por la prestación de los servicios descritos en el numeral 3 anterior tendrá un com\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"249\",\n \"U_ClienNom\" : \"PECOM SERVICIOS ENERGIA S.A. (SUCURSAL BOLIVIA)\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3401\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000249-SR-002102\",\n \"Name\" : \"Cierre de sucursal\",\n \"ValidFrom\" : \"2025-07-03T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Facturar a Pecom Servicios Energía SAU (Argentina)\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"249\",\n \"U_ClienNom\" : \"PECOM SERVICIOS ENERGIA S.A. (SUCURSAL BOLIVIA)\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4508\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000250-SR-000748\",\n \"Name\" : \"Regularización corporativa 2023\",\n \"ValidFrom\" : \"2023-10-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 500.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"250\",\n \"U_ClienNom\" : \"AGRONEGOCIOS LASCOT S.R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-10-20T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"169\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4541,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000250-SR-001194\",\n \"Name\" : \"Acta Anual 2024\",\n \"ValidFrom\" : \"2024-04-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"100% Final\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"250\",\n \"U_ClienNom\" : \"AGRONEGOCIOS LASCOT S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2901\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000250-SR-001683\",\n \"Name\" : \"Elaboración de Contratos para operaciones de Agencia y Representación Comercial\",\n \"ValidFrom\" : \"2024-10-23T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"250\",\n \"U_ClienNom\" : \"AGRONEGOCIOS LASCOT S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3590\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000251-SR-000093\",\n \"Name\" : \"CONSTITUCION DE ASOCIACION CIVIL\",\n \"ValidFrom\" : \"2019-04-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 3000.0,\n \"U_Comentarios\" : \"Solicitaron un tiempo para emitir la factura, pues a la fecha no tienen NIT.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"251\",\n \"U_ClienNom\" : \"YPO BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-04-29T00:00:00Z\",\n \"U_AreaProyecto\" : \"Civil (Contratación, informes y otros)\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 1335,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-000092\",\n \"Name\" : \"BNB/Hernán Alfredo Molina- Proceso coactivo\",\n \"ValidFrom\" : \"2019-04-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"revisar que hito se debe facturar\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-04-29T00:00:00Z\",\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Zeballos\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"187\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Zeballos\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 1336,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-000154\",\n \"Name\" : \"BNB/José Antonio Gutiérrez Medina- Proceso coactivo\",\n \"ValidFrom\" : \"2019-08-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"REVISAR QUE HITO SE DEBE FACTURAR\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-08-13T00:00:00Z\",\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Zeballos\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"188\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Zeballos\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 1570,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-000223\",\n \"Name\" : \"Proceso Ejecutivo VILLCA CABA DIANA KATERIN\",\n \"ValidFrom\" : \"2020-01-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 800.0,\n \"U_Comentarios\" : \"REVISAR QUE HITO CORRESPONDE FACTURAR\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-01-13T00:00:00Z\",\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"189\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 1866,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-000224\",\n \"Name\" : \"Proceso Ejecutivo YAÑEZ CACERES ESTHER\",\n \"ValidFrom\" : \"2020-01-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 800.0,\n \"U_Comentarios\" : \"REVISAR CUAL HITO CORRESPONDE FACTURAR\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-01-13T00:00:00Z\",\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"190\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 1867,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-000235\",\n \"Name\" : \"BNB/MAMANI CALLISAYA- TICONA\",\n \"ValidFrom\" : \"2020-02-10T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"REVISAR EL HITO QUE SE DEBE FACTURAR\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-02-10T00:00:00Z\",\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"191\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 1933,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-000245\",\n \"Name\" : \"Proceso Coactivo ANDRES MIRABAL USCAMAITA\",\n \"ValidFrom\" : \"2020-03-06T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 800.0,\n \"U_Comentarios\" : \"Revisar cual hito corresponde facturar dependiendo el resultado de éxito.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-03-06T00:00:00Z\",\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"192\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 1993,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:08-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:08-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=700\u0026%24top=20 | Status: 200 | Duration: 107.0776ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:08 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000252-SR-000248\",\n \"Name\" : \"BNB/CASTRO - Ximena Nancy Castro - Proceso coactivo\",\n \"ValidFrom\" : \"2020-03-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"revisar que hito sera el facturable\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-03-11T00:00:00Z\",\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Zeballos\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"193\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Zeballos\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 1999,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-000257\",\n \"Name\" : \"BNB/ CHIPANA -Santos Ramiro Chipana Sirpa- Proceso coactivo\",\n \"ValidFrom\" : \"2020-06-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"Revisar cual de los hitos corresponde facturar.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-06-09T00:00:00Z\",\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"194\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 2062,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-000258\",\n \"Name\" : \"BNB/ INSERCOM- INGENIERIA EN COMPUTACIÓN S.R.L.- Proceso coactivo\",\n \"ValidFrom\" : \"2020-06-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"Se factura 50% al inicio y 50% al final.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-06-09T00:00:00Z\",\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Zeballos\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"195\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Zeballos\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2071,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-000433\",\n \"Name\" : \"Proceso ejecutivo Samuel Cruz Trujillo\",\n \"ValidFrom\" : \"2021-11-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"Revisar cual hito debe ser facturado\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-11-11T00:00:00Z\",\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"196\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 3010,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-000434\",\n \"Name\" : \"Proceso coactivo contra Raul Enrique Montaño\",\n \"ValidFrom\" : \"2021-11-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"REVISAR CUAL HITO SE DEBE FACTURAR\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-11-11T00:00:00Z\",\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"197\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 3011,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-000435\",\n \"Name\" : \"Demanda nueva BNB/O´Connor\",\n \"ValidFrom\" : \"2021-11-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"BOB\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"HITO 5- Procesos concluidos sin recuperación\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-11-12T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der.Civil\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"198\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"BOB\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3013,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-000479\",\n \"Name\" : \"BNB/Erick Alberto Burgoa- Proceso coactivo\",\n \"ValidFrom\" : \"2022-03-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"SE VA A FACTURAR EL HITO 5. POR bS 1000\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-03-07T00:00:00Z\",\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Zeballos\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"199\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Zeballos\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3194,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-000481\",\n \"Name\" : \"BNB/ BARBEITO -Franklin Barbeito Reyes - Proceso coactivo\",\n \"ValidFrom\" : \"2022-03-17T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"REVISAR CUAL DE LOS HITOS SERA EL FACTURABLE\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-03-17T00:00:00Z\",\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Zeballos\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"200\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Zeballos\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 3205,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-000503\",\n \"Name\" : \"Proceso Coactivo Gustavo Adolfo Franco Estremadoiro\",\n \"ValidFrom\" : \"2022-05-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"Revisar hitos para cobrar\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-05-20T00:00:00Z\",\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"201\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 3394,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-000504\",\n \"Name\" : \"Proceso Coactivo Milena Danixa Ribera Castro\",\n \"ValidFrom\" : \"2022-05-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"Revisar hitos para cobrar\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-05-20T00:00:00Z\",\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"202\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 3393,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-000510\",\n \"Name\" : \"Proceso Coactivo Ronald Centenaro Ragone\",\n \"ValidFrom\" : \"2022-07-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"Revisar hitos para el cobro\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-07-20T00:00:00Z\",\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"203\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 3491,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-000517\",\n \"Name\" : \"Proceso coactivo David Sierra Chumacero\",\n \"ValidFrom\" : \"2022-08-17T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"Revisar hitos para cobrar\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-08-17T00:00:00Z\",\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"204\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 3536,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-000528\",\n \"Name\" : \"BNB/Importadora Iahm- Proceso coactivo\",\n \"ValidFrom\" : \"2022-09-19T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"REVISAR CUAL HITO SERA EL FACTURABLE\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-09-19T00:00:00Z\",\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Zeballos\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"205\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Zeballos\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 3586,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-000545\",\n \"Name\" : \"Proceso José Antonio Rojas Vargas\",\n \"ValidFrom\" : \"2022-10-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"SE INACTIVA POR SOLICITUD DEL DR RENE CUELLAR. SEÑALANDO QUE EL CLIENTE YA NO DESEA PROCEDER CON ES\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-10-15T00:00:00Z\",\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"206\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 3650,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-000548\",\n \"Name\" : \"BNB/SANCHEZ- Sául Hialmar Sánchez- Proceso coactivo\",\n \"ValidFrom\" : \"2022-10-19T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"50% para su aprobación y facturación a nombre del BNB. 15.663,21 en USD 2.250,46.- y 50% al final\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-10-19T00:00:00Z\",\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"207\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3653,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-000595\",\n \"Name\" : \"BNB/MAMANI LIMACHI.\",\n \"ValidFrom\" : \"2023-03-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"BOB\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"HITO 5- Procesos concluidos sin recuperación\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-03-07T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der.Civil\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"208\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"BOB\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4007,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-000617\",\n \"Name\" : \"BNB/GARCIA -María Manuela García Yañez- Proceso coactivo\",\n \"ValidFrom\" : \"2023-04-19T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"revisar que escenario será el facturable\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-04-19T00:00:00Z\",\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"209\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 4057,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-000625\",\n \"Name\" : \"BNB/CABRERA Proceso ejecutivo Operación No. 1010907922.\",\n \"ValidFrom\" : \"2023-05-04T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"BOB\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"HITO 5- Procesos concluidos sin recuperación\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-05-04T00:00:00Z\",\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"210\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"BOB\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4100,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-000634\",\n \"Name\" : \"Proceso c/Juan Gabriel Vargas Flores\",\n \"ValidFrom\" : \"2023-05-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"SE INACTIVA POR SOLICITUD DEL DR RENE CUELLAR. SEÑALANDO QUE EL CLIENTE YA NO DESEA AVANZAR CON EST\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-05-24T00:00:00Z\",\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"211\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 4143,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-000635\",\n \"Name\" : \"Proceso c/David Padilla Mojica y Eliana Añez Osinaga\",\n \"ValidFrom\" : \"2023-05-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"Verificar el estado de los hitos para facturar\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-05-24T00:00:00Z\",\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"212\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 4147,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:08-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:08-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=720\u0026%24top=20 | Status: 200 | Duration: 97.2955ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:08 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000252-SR-000669\",\n \"Name\" : \"PROCESO DANIELA FELY JIMÉNEZ CÉSPEDES\",\n \"ValidFrom\" : \"2023-07-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"Verificar hitos para facturar\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-07-24T00:00:00Z\",\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"213\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 4226,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-000670\",\n \"Name\" : \"PROCESO EJECUTIVO LIMBERG LAZARTE LIMONy MARIA RENE OJEDA TORREZ\",\n \"ValidFrom\" : \"2023-07-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"BOB\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"Según iguala y etapa de conclusión, de acuerdo a la cuantía demandada que es de Bs 530.348,83\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-07-24T00:00:00Z\",\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ines Ayala\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"214\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"BOB\",\n \"U_Soc_Responsable\" : \"Ines Ayala\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4227,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-000671\",\n \"Name\" : \"PROCESO COACTIVO SAMIR ABATH CARRION SALDIAS y LENNY GIOVANNA CUELLAR PEREIRA\",\n \"ValidFrom\" : \"2023-07-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"Verificar el estado de los hitos para facturar\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-07-24T00:00:00Z\",\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"215\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 4228,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-000672\",\n \"Name\" : \"PROCESO EJECUTIVO CESAR GONZALO PERALTA FERRUFINO, MARIA LOURDES TABORGA Y OTROS\",\n \"ValidFrom\" : \"2023-07-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"BOB\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"Según etapa de proceso y de acuerdo a la cuantía del proceso que asciende a Bs214,305.09\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-07-24T00:00:00Z\",\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ines Ayala\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"216\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"BOB\",\n \"U_Soc_Responsable\" : \"Ines Ayala\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4225,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-000680\",\n \"Name\" : \"BNB/TICONA - Abdón Ticona Apaza- Proceso coactivo\",\n \"ValidFrom\" : \"2023-08-08T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"por la cuantía de Bs. 127.535,00 y 175.722,00, total cuantia Bs. 303.257,00\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-08-08T00:00:00Z\",\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"217\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 4251,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-000681\",\n \"Name\" : \"BNB/PACO Jeidda Nela Paco Coariti- demanda coactiva\",\n \"ValidFrom\" : \"2023-08-08T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"REVISAR CUAL HITO DEBE SER FACTURADO\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-08-08T00:00:00Z\",\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Zeballos\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"218\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Zeballos\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 4252,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-000699\",\n \"Name\" : \"BNB/ ESCOBAR - Iván Martín Escobar Almendras- Proceso coactivo\",\n \"ValidFrom\" : \"2023-08-28T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"Cuantía: Bs. 45.443,12 y Bs. 571.287,04\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-08-28T00:00:00Z\",\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Zeballos\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"219\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Zeballos\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 4287,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-000701\",\n \"Name\" : \"Proceso coactivo contra Gabriela Villarroel\",\n \"ValidFrom\" : \"2023-08-31T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"BOB\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"De acuerdo a la iguala. Sin embargo, dado que la demandda cancelo su deuda corresponde facturar Bs. 600 a la Sra. GAbriela Villarroel con C.I. 389996 y enviar la factura vía correo a Kadir Camacho al\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-08-31T00:00:00Z\",\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"220\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"BOB\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4310,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-000702\",\n \"Name\" : \"Proceso coactivo contra Eduardo Papescu y Laida Montenegro\",\n \"ValidFrom\" : \"2023-08-31T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"BOB\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"De acuerdo a la iguala se cancela el porcentaje segun el monto de la cuantia y el momento de recuperación de la deuda. La cuantia es de Bs. 760.214,00\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-08-31T00:00:00Z\",\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"221\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"BOB\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4311,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-000744\",\n \"Name\" : \"PROCESO EJECUTIVO JOSE CASTO PEREZ PEROGIL y SULEY AMPARO MORENO\",\n \"ValidFrom\" : \"2023-10-19T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"Verificar los hitos para la facturación\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-10-19T00:00:00Z\",\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"222\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 4534,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-000745\",\n \"Name\" : \"Proceso Coactivo MARIBEL ARROYO ESCOBAR y MAURICIO MIGUEL CAMPO MONTILLA\",\n \"ValidFrom\" : \"2023-10-19T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"Los honorarios se cobran cuando se recupera, hay desistimiento o castigo\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-10-19T00:00:00Z\",\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"223\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4535,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-000750\",\n \"Name\" : \"Proceso Coactivo ERVIN REINALDO ZABALA SANCHEZ\",\n \"ValidFrom\" : \"2023-10-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"Verificar el estado de los hitos para facturar\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-10-20T00:00:00Z\",\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"224\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 4537,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-000751\",\n \"Name\" : \"Proceso Ejecutivo MARIBEL ARROYO ESCOBAR y MAURICIO MIGUEL CAMPO MONTILLA\",\n \"ValidFrom\" : \"2023-10-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"Los honorarios se cobran cuando se recupera, hay desistimiento o castigo\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-10-20T00:00:00Z\",\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"225\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4536,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-000764\",\n \"Name\" : \"BNB/Edgar Ángel LLampa Cañaviri- Proceso coactivo\",\n \"ValidFrom\" : \"2023-11-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"REVISAR CUAL HITO DEBE SER FACTURADO\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-11-20T00:00:00Z\",\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"226\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 4598,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-000765\",\n \"Name\" : \"BNB/Miriam Fernández Sossa- Proceso coactivo\",\n \"ValidFrom\" : \"2023-11-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"REVISAR CUAL HITO DEBE SER FACTURADO\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-11-20T00:00:00Z\",\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Zeballos\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"227\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Zeballos\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 4599,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-000791\",\n \"Name\" : \"Proceso Ejecutivo Robert Delfín Carmona Herrera\",\n \"ValidFrom\" : \"2023-12-08T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"Verificar el estado de los hitos para la facturación\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-12-08T00:00:00Z\",\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"228\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 4641,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-000792\",\n \"Name\" : \"Proceso Ejecutivo Andrea Daniela Lijeron de Salvatierra\",\n \"ValidFrom\" : \"2023-12-08T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"BOB\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"Los honorarios se cobraran conforme a iguala suscrita, de acuerdo a porcentajes establecidos de acuerdo a la suma recuperada y el estado del proceso en en el que se logra la recuperación de la cuantí\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-12-08T00:00:00Z\",\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"229\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"BOB\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4642,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-000795\",\n \"Name\" : \"Proceso Ejecutivo SANTA ESTHER ADAUTO VARGAS\",\n \"ValidFrom\" : \"2019-05-06T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1049.20,\n \"U_Comentarios\" : \"SE INACTIVA POR SOLICITUD DEL SOCIO RENE CUELLAR. SEÑALANDO QUE EL CLIENTE YA NO AVANZARA CON ESTE\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2019-05-06T00:00:00Z\",\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"1254\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 1342,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-000796\",\n \"Name\" : \"Proceso Ejecutivo ROXANA COIMBRA\",\n \"ValidFrom\" : \"2019-06-10T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2796.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2019-06-10T00:00:00Z\",\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"1255\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 1428,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-000801\",\n \"Name\" : \"Proceso Ejecutivo ERICK ROSENDO MORALES HUAYTA\",\n \"ValidFrom\" : \"2019-11-08T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"SE INACTIVA POR SOLICITUD DEL SOCIO RENE CUELLAR. SEÑALANDO QUE EL CLIENTE YA NO AVANZARA CON EL TR\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2019-11-08T00:00:00Z\",\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"1256\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 1782,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:08-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:08-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=740\u0026%24top=20 | Status: 200 | Duration: 95.1238ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:08 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000252-SR-000802\",\n \"Name\" : \"Proceso Coactivo JUAN CARLOS SAAVEDRA HERBAS\",\n \"ValidFrom\" : \"2019-11-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"50% para su aprobación y facturación a nombre del BNB. 9803.- en USD.1408.47.- y 50% al final\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2019-11-20T00:00:00Z\",\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"1257\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1801,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-000826\",\n \"Name\" : \"Proceso Coactivo Edwin Valverde Barriga\",\n \"ValidFrom\" : \"2022-01-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"Revisar los hitos a ser facturados\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2022-01-24T00:00:00Z\",\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"1258\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 3113,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-000827\",\n \"Name\" : \"Proceso Ejecutivo Jaime Torrez Rojas\",\n \"ValidFrom\" : \"2022-01-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"Revisar los hitos para facturar\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2022-01-24T00:00:00Z\",\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"1259\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3115,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-000828\",\n \"Name\" : \"Proceso Ejecutivo Álvaro Rodríguez\",\n \"ValidFrom\" : \"2022-02-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"BOB\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"Honorario variable, se cobra en caso se recupere, conforme la Iguala. La cuantía demandada es Usd. 37.277,78.-\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2022-02-02T00:00:00Z\",\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ines Ayala\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"1260\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"BOB\",\n \"U_Soc_Responsable\" : \"Ines Ayala\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3156,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-000834\",\n \"Name\" : \"Proceso civil ejecutivo contra Ciro Daniel Torrez Ferreira\",\n \"ValidFrom\" : \"2022-05-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"Revisar hitos para cobrar\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2022-05-07T00:00:00Z\",\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"1261\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 3375,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-000912\",\n \"Name\" : \"COBRANZA\",\n \"ValidFrom\" : \"2019-08-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"BS\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"El pago se realizará en porcentajes de acuerdo a los avances del proceso, en este sentido, cabe recalcar que el banco sólo pagará si su deudor le paga.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-08-13T00:00:00Z\",\n \"U_AreaProyecto\" : \"Civil (Contratación, informes y otros)\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"BOL\",\n \"U_Soc_Responsable\" : \"Rene Claure Veizaga\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 1571,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-001012\",\n \"Name\" : \"Proceso Coactivo - VICTOR MANUEL HEREDIA JUSTINIANO Y ELIANA ALIZON ROJAS JUSTINIANO\",\n \"ValidFrom\" : \"2024-02-14T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Revisar resultado en los hitos para cobrar\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2324\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-001013\",\n \"Name\" : \"BNB/Cintia Coral Villegas Flores- Proceso coactivo\",\n \"ValidFrom\" : \"2024-02-14T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2325\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-001014\",\n \"Name\" : \"BNB/Juan José Franco Espinoza- Proceso coactivo\",\n \"ValidFrom\" : \"2024-02-14T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Zeballos\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2326\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Zeballos\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-001020\",\n \"Name\" : \"Proceso ejecutivo - VILLEGAS\",\n \"ValidFrom\" : \"2024-02-19T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"BOB\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2335\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"BOB\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-001021\",\n \"Name\" : \"Proceso ejecutivo - FRANCO\",\n \"ValidFrom\" : \"2024-02-19T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"BOB\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2336\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"BOB\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-001026\",\n \"Name\" : \"BNB/Sergio Eduardo Yanatelli Ocampo- Proceso coactivo\",\n \"ValidFrom\" : \"2024-02-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"REVISAR CUAL HITO DEBER SER FACTURADO\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Zeballos\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2345\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Zeballos\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-001027\",\n \"Name\" : \"DEMANDA COACTIVA BNB/ FELIX MARTINEZ VALLEJOS\",\n \"ValidFrom\" : \"2024-02-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"SE FACTURA HITO 1\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2346\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-001076\",\n \"Name\" : \"PROCESO COACTIVO - JEANCYS DEL CARMEN MORILLO LUGO\",\n \"ValidFrom\" : \"2024-01-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"50% para su aprobación y facturación a nombre del BNB. 9387.- en USD.1348.70.- y 50% al final\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"1508\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-001077\",\n \"Name\" : \"Proceso Ejecutivo - PEDRO MIRANDA GARCIA Y PATRICIA HERNANDEZ PEREZ\",\n \"ValidFrom\" : \"2024-02-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Revisar los hitos para cobrar\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2289\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-001111\",\n \"Name\" : \"BNB/ OSCAR MOLLINEDO\",\n \"ValidFrom\" : \"2024-03-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"REVISAR CUAL HITO FACTURAR\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Zeballos\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2645\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Zeballos\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-001114\",\n \"Name\" : \"Proceso ejecutivo - ALVARO REYES JAGER\",\n \"ValidFrom\" : \"2024-03-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2657\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-001115\",\n \"Name\" : \"Proceso coactivo - LUIS GERMAN CLEMENTE QUISPE/BERNAR RAMOS RUEDA\",\n \"ValidFrom\" : \"2024-03-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2658\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-001135\",\n \"Name\" : \"Proceso ejecutivo Edmundo Faldin y otros\",\n \"ValidFrom\" : \"2024-03-18T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Cuantía demandada es de Bs. 457.624,70.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2712\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-001180\",\n \"Name\" : \"Proceso Coactivo BNB / GOLDY CLAUDIA CHAVARRIA COCA\",\n \"ValidFrom\" : \"2024-04-17T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"La cuantía en este proceso es de Bs. 637.663,22 al cambio en USD 91.618,27.- si se retira la demand\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2867\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:08-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:08-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=760\u0026%24top=20 | Status: 200 | Duration: 91.7424ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:08 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000252-SR-001187\",\n \"Name\" : \"PROCESO EJECUTIVO BNB/ IVAR STANLEY MAMANI VELASCO\",\n \"ValidFrom\" : \"2024-04-23T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Este Proceso fue asignado a los abogados de LP, es un proceso ejecutivo con la cuantía de Bs. 56.64\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2892\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-001243\",\n \"Name\" : \"BNB/MOLLINEDO OSCAR, Micro crédito LP\",\n \"ValidFrom\" : \"2024-05-23T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Cuantía de Bs. 126.175\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Zeballos\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2976\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Zeballos\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-001326\",\n \"Name\" : \"PROCESO EJECUTIVO - CLOVIS ARMANDO ROCA JORDAN\",\n \"ValidFrom\" : \"2024-06-28T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"LOS HONORARIOS SE COBRARA MENDIANTE IGUALA SUSCRITA Y EN PORCENTAJE DE ACUERDO A LA SUMA RECUPERADA\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3099\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-001360\",\n \"Name\" : \"PROCESO COACTIVO BNB - MARIO FERNANDO OLIVA DURAN\",\n \"ValidFrom\" : \"2024-07-16T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los Honorarios se cobran conforme iguala suscrita y en porcentajes establecidos de acuerdo a la suma\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3140\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-001361\",\n \"Name\" : \"PROCESO COACTIVO BNB - IGOR RENAN VARGAS BOZO\",\n \"ValidFrom\" : \"2024-07-16T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los Honorarios se cobran conforme iguala suscrita y en porcentajes establecidos de acuerdo a la suma\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3141\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-001453\",\n \"Name\" : \"Proceso Coactivo BNB/Yuyi Ronald Peña Mercado\",\n \"ValidFrom\" : \"2024-08-23T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los Honorarios se cobran conforme iguala suscrita y en porcentajes establecidos de acuerdo a la suma\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3289\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-001454\",\n \"Name\" : \"Proceso ejecutivo BNB/ GABRIELA VILLARROEL VILLARROEL\",\n \"ValidFrom\" : \"2024-08-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los Honorarios se cobran conforme iguala suscrita y en porcentajes establecidos de acuerdo a la suma\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3290\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-001537\",\n \"Name\" : \"Proceso ejecutivo BNB/SAAVEDRA - LP.\",\n \"ValidFrom\" : \"2024-09-03T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los Honorarios se cobran conforme iguala suscrita y en porcentajes establecidos de acuerdo a la suma\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Zeballos\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3383\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Zeballos\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-001604\",\n \"Name\" : \"Proceso Coactivo BNB/GUTIERREZ ITURRALDE - LP.\",\n \"ValidFrom\" : \"2024-09-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorarios se cobran conforme a iguala suscrita, de acuerdo al porcentaje establecidos y la suma\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Zeballos\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3458\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Zeballos\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-001605\",\n \"Name\" : \"Proceso ejecutivo BNB/ALTAMIRANO -LP.\",\n \"ValidFrom\" : \"2024-09-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorarios se cobran conforme a iguala suscrita, de acuerdo al porcentaje establecidos y la suma\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Zeballos\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3459\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Zeballos\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-001606\",\n \"Name\" : \"Proceso ejecutivo BNB/PERALES LP.\",\n \"ValidFrom\" : \"2024-09-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorarios se cobran conforme a iguala suscrita, de acuerdo al porcentaje establecidos y la suma\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Zeballos\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3460\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Zeballos\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-001621\",\n \"Name\" : \"Proceso ejecutivo BNB/ JUAN DARIO VACA COCA - SC\",\n \"ValidFrom\" : \"2024-10-03T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorarios se cobran conforme iguala suscrita, de acuerdo a porcentajes establecidos de acuerdo\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3474\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-001622\",\n \"Name\" : \"Proceso coactivo BNB/ LIMBERG LAZARTE LIMÓN Y MARÍA YANET OJEDA\",\n \"ValidFrom\" : \"2024-10-03T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorarios se cobran conforme iguala suscrita, de acuerdo a porcentajes establecidos de acuerdo\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3475\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-001633\",\n \"Name\" : \"Proceso ejecutivo BNB/GARZOFINO-LP\",\n \"ValidFrom\" : \"2024-10-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorarios se cobran conforme la iguala suscrita, de acuerdo a porcentajes establecidos y de acu\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Zeballos\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3486\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Zeballos\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-001695\",\n \"Name\" : \"Proceso ejecutivo BNB/JOSE CASTO PEREZ PEROGIL Y SULEY AMPARO MORENO - SC\",\n \"ValidFrom\" : \"2024-10-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorarios se cobraran conforme a iguala suscrita, de acuerdo a porcentajes establecidos de acue\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3605\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-001750\",\n \"Name\" : \"BNB C/ Paquiri Choque Luis LP.\",\n \"ValidFrom\" : \"2024-12-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"DUPLICIDAD DE ASUNTO\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Zeballos\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3719\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Zeballos\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-001754\",\n \"Name\" : \"BNB C/ Paquiri Choque Luis LP.\",\n \"ValidFrom\" : \"2024-12-03T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Zeballos\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3723\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Zeballos\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-001755\",\n \"Name\" : \"BNB c/ Marin Maria Jose - LP\",\n \"ValidFrom\" : \"2024-12-03T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Zeballos\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3724\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Zeballos\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-001814\",\n \"Name\" : \"BNB c/ Apaza Crispin LP\",\n \"ValidFrom\" : \"2025-01-06T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Zeballos\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3810\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Zeballos\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-001815\",\n \"Name\" : \"BNB c/ Paqui Marco Antonio LP.\",\n \"ValidFrom\" : \"2025-01-06T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Zeballos\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3811\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Zeballos\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:08-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:08-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=780\u0026%24top=20 | Status: 200 | Duration: 96.7192ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:09 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000252-SR-001819\",\n \"Name\" : \"BNB c/ De la Rosa Tincopa LP.\",\n \"ValidFrom\" : \"2025-01-08T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Zeballos\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3816\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Zeballos\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-001858\",\n \"Name\" : \"Proceso Ejecutivo BNB/ Juan Gabriel Vargas Flores\",\n \"ValidFrom\" : \"2025-02-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"FALTA LA INFORMACION DE LOS HITOS; SE COMPLETO LO HITOS POR CORREO 03/02/25 DE ARIEL TRIVEÑO\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3871\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-001859\",\n \"Name\" : \"Proceso coactivo BNB/Enrique Martorell Bravo - SC\",\n \"ValidFrom\" : \"2025-02-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3872\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-001860\",\n \"Name\" : \"Proceso Ejecutivo BNB/Roberto Villazon Inocente y Delia Cejas Velásquez\",\n \"ValidFrom\" : \"2025-02-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Se crea asunto Proceso ejecutivo Banco Nacional de Bolivia S.A. contra los Señores Roberto Villazó\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3873\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-001866\",\n \"Name\" : \"BNB c/ Mendoza Lujan LP\",\n \"ValidFrom\" : \"2025-02-03T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Zeballos\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3881\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Zeballos\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-001910\",\n \"Name\" : \"BNB c/ Villegas Castro LP\",\n \"ValidFrom\" : \"2025-03-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Zeballos\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3943\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Zeballos\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-001983\",\n \"Name\" : \"Proceso coactivo BNB/ MAURICIO EZEQUIEL ROLDAN\",\n \"ValidFrom\" : \"2025-04-16T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"El cliente BNB paga según lo recuperado y en la etapa o hito pertinente en los porcentajes que se t\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4211\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-002132\",\n \"Name\" : \"Prpoceso ejecutivo BNB - MARIA CRISTINAROMERO DIAZ Y LUIS ALBERTO PUNEIRA PEÑA - SC\",\n \"ValidFrom\" : \"2025-07-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Este asunto se facturar por Hito según la recuperación del monto adeudado al BNB y en base al porc\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : null,\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4542\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-002133\",\n \"Name\" : \"Proceso coactivo BNB - FELIX MARTINEZ VALLEJOS - SC\",\n \"ValidFrom\" : \"2025-07-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Este asunto se facturar por Hito según la recuperación del monto adeudado al BNB y en base al porc\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : null,\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4543\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-002134\",\n \"Name\" : \"Proceso ejecutivo BNB - LIMBERG LAZARTE LIMON Y MARIA YANET OJEDA TORREZ - SC\",\n \"ValidFrom\" : \"2025-07-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Este asunto se facturar por Hito según la recuperación del monto adeudado al BNB y en base al porc\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : null,\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4544\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-002135\",\n \"Name\" : \"Proceso ejecutivo BNB - RONALD CALLEJAS ROSALES Y OTROS\",\n \"ValidFrom\" : \"2025-07-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Este asunto se facturar por Hito según la recuperación del monto adeudado al BNB y en base al porc\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : null,\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4545\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000252-SR-002154\",\n \"Name\" : \"BNB c/ Machaca LP\",\n \"ValidFrom\" : \"2025-07-28T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"252\",\n \"U_ClienNom\" : \"Banco Nacional de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : null,\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"4568\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Zeballos\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000253-SR-000783\",\n \"Name\" : \"Anticipo de Legítima\",\n \"ValidFrom\" : \"2023-12-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"253\",\n \"U_ClienNom\" : \"Antonio Portugal\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-12-01T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Inmobiliario\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"177\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4625,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000253-SR-001246\",\n \"Name\" : \"Trámite de Jubilación\",\n \"ValidFrom\" : \"2024-05-28T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Ninguna\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"253\",\n \"U_ClienNom\" : \"Antonio Portugal\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2990\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000259-SR-000730\",\n \"Name\" : \"ELABORACION DE INFORME LEGAL - ASPECTOS LABORALES CIERRE E INICIO DE PROYECTO\",\n \"ValidFrom\" : \"2023-09-28T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 540.0,\n \"U_Comentarios\" : \"Este proyecto corresponde al depósito del cliente de referencia por Bs. 3758,40\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"259\",\n \"U_ClienNom\" : \"FUNDACION SPARKASSENSTIFTUNG\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-09-28T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Laboral y de Seguridad Social\",\n \"U_AbogadoEncargado\" : \"Rene Claure Veizaga\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Claure Veizaga\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 4385,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000259-SR-000739\",\n \"Name\" : \"Elaboración y visado Contrato por obra o servicio Guillermo Sempértegui\",\n \"ValidFrom\" : \"2023-10-18T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 180.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"259\",\n \"U_ClienNom\" : \"FUNDACION SPARKASSENSTIFTUNG\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-10-18T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Rene Claure Veizaga\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"370\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Claure Veizaga\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4528,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000259-SR-000740\",\n \"Name\" : \"Elaboración y visado Contrato por obra o servicio Erika Castillo\",\n \"ValidFrom\" : \"2023-10-18T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 180.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"259\",\n \"U_ClienNom\" : \"FUNDACION SPARKASSENSTIFTUNG\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-10-18T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"371\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4529,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000259-SR-000741\",\n \"Name\" : \"Elboración y visado contrato de trabajo por obra o servicio Lucía Cruz\",\n \"ValidFrom\" : \"2023-10-18T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 180.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"259\",\n \"U_ClienNom\" : \"FUNDACION SPARKASSENSTIFTUNG\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-10-18T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Rene Claure Veizaga\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"372\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Claure Veizaga\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4530,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000268-SR-000253\",\n \"Name\" : \"INFORME - IMPOSIBILIDAD DE COBRANZA\",\n \"ValidFrom\" : \"2020-03-17T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 600.0,\n \"U_Comentarios\" : \"Los honorarios deben ser descontados del monto provisiona por el cliente.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"268\",\n \"U_ClienNom\" : \"FABER CASTELL PERU\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-03-17T00:00:00Z\",\n \"U_AreaProyecto\" : \"Civil (Contratación, informes y otros)\",\n \"U_AbogadoEncargado\" : \"Rene Claure Veizaga\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Claure Veizaga\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 2007,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000269-SR-000134\",\n \"Name\" : \"SERVICIO EJECUCION MUNICIPIO DE COTOCA\",\n \"ValidFrom\" : \"2019-07-26T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 15520.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"269\",\n \"U_ClienNom\" : \"GRANJA AVICOLA INTEGRAL SOFIA LTDA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-07-26T00:00:00Z\",\n \"U_AreaProyecto\" : \"Civil (Contratación, informes y otros)\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 1520,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:09-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:09-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=800\u0026%24top=20 | Status: 200 | Duration: 103.9004ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:09 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000270-SR-001024\",\n \"Name\" : \"Servicios Legales Mensuales (FM)\",\n \"ValidFrom\" : \"2024-02-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"ESTE ASUNTO, ES SOLO PARA GASTOS REEMBOLSABLES\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"270\",\n \"U_ClienNom\" : \"BLOCCREATIVO S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"Luis Moreno\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2342\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Moreno\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000274-SR-001466\",\n \"Name\" : \"Procesos tributarios\",\n \"ValidFrom\" : \"2024-08-26T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"274\",\n \"U_ClienNom\" : \"OSCAR OLMOS\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3302\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000276-SR-000212\",\n \"Name\" : \"Inscripción de Sucesión y Fusión de Terrenos\",\n \"ValidFrom\" : \"2019-10-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 3450.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"276\",\n \"U_ClienNom\" : \"Maria Belen Arias Suarez\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-10-15T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Inmobiliario\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"431\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1746,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000278-SR-000596\",\n \"Name\" : \"Defensa Tributaria\",\n \"ValidFrom\" : \"2023-03-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 8550.0,\n \"U_Comentarios\" : \"También tenemos un honorario de éxito del 4% sobre el ahorro que se genere.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"278\",\n \"U_ClienNom\" : \"EMPACAR S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-03-07T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Edwin Rodrigo Burgos Fernandez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"341\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Edwin Rodrigo Burgos Fernandez\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4006,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000278-SR-001101\",\n \"Name\" : \"Defensa - Demanda Contenciosa Administrativa 2024\",\n \"ValidFrom\" : \"2024-03-05T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"50% al inicio y 50% al final\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"278\",\n \"U_ClienNom\" : \"EMPACAR S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Luis Valda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2634\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Valda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000278-SR-001102\",\n \"Name\" : \"HONORARIO DE EXITO - Resolución de Recurso Jerárquico\",\n \"ValidFrom\" : \"2024-03-05T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"100% al inicio\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"278\",\n \"U_ClienNom\" : \"EMPACAR S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Edwin Rodrigo Burgos Fernandez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2635\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Edwin Rodrigo Burgos Fernandez\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000278-SR-001237\",\n \"Name\" : \"Compra Venta de Activos\",\n \"ValidFrom\" : \"2024-05-17T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"50% Inicio/50% Final\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"278\",\n \"U_ClienNom\" : \"EMPACAR S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"M\u0026A\",\n \"U_AbogadoEncargado\" : \"Luis Moreno\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2970\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Moreno\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000285-SR-000598\",\n \"Name\" : \"Cierre Definitivo de Sucursal\",\n \"ValidFrom\" : \"2023-03-10T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2550.0,\n \"U_Comentarios\" : \"Conforme la propuesta se estableció: Usd. 2550+13% por IVA. (50% a la aceptación y 50% a la conclu\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"285\",\n \"U_ClienNom\" : \"HAZAMA ANDO CORPORATION\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-03-10T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"393\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4010,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000288-SR-000917\",\n \"Name\" : \"Disolución Liquidación\",\n \"ValidFrom\" : \"2021-10-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"288\",\n \"U_ClienNom\" : \"BROADTEL BOLIVIA S.R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-10-22T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der.Civil\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"1494\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 2972,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000291-SR-000158\",\n \"Name\" : \"Servicios Legales Mensuales\",\n \"ValidFrom\" : \"2019-08-23T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"291\",\n \"U_ClienNom\" : \"MBINMOBILIARIA S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-08-23T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"437\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : 1600,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000292-SR-000157\",\n \"Name\" : \"Servicios Legales Mensuales\",\n \"ValidFrom\" : \"2019-08-23T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"SOLO PARA GASTOS REEMBOLSABLES\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"292\",\n \"U_ClienNom\" : \"INVITAR S.R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-08-23T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"Luis Moreno\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"414\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Moreno\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1601,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000300-SR-000707\",\n \"Name\" : \"Elaboración de Informe Legal - Posibles Reclamos Fedeple\",\n \"ValidFrom\" : \"2023-09-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1700.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"300\",\n \"U_ClienNom\" : \"PIL ANDINA S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-09-11T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Andres Moreno Gutierrez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"475\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andres Moreno Gutierrez\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4338,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000300-SR-000708\",\n \"Name\" : \"Elaboración informe legal - Posibles medidas legales planta de leche\",\n \"ValidFrom\" : \"2023-09-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1700.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"300\",\n \"U_ClienNom\" : \"PIL ANDINA S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-09-12T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Andres Moreno Gutierrez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"476\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andres Moreno Gutierrez\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4339,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000300-SR-001816\",\n \"Name\" : \"VENTA Y/O TRANSFERENCIA ACTIVOS PLATA PIL ANDINA EL ALTO\",\n \"ValidFrom\" : \"2025-01-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"300\",\n \"U_ClienNom\" : \"PIL ANDINA S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Andrés Moreno\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3813\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andrés Moreno\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000302-SR-000192\",\n \"Name\" : \"AUDITORIA LEGAL CORPORATIVA\",\n \"ValidFrom\" : \"2019-09-26T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 9500.0,\n \"U_Comentarios\" : \"ACLARAR QUE EL TOTAL DE LOS HONORARIOS ES 9500, FRACCIONADOS EN UN PAGO INICIAL DE $US.- 4850, SEGUN\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"302\",\n \"U_ClienNom\" : \"CONSTRUCTORA COMERCIAL ARAUCARIA S.R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-09-26T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"263\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : null,\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 1694,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000303-SR-000196\",\n \"Name\" : \"Outsourcing contable\",\n \"ValidFrom\" : \"2019-09-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 3000.0,\n \"U_Comentarios\" : \"MES DE OCTUBRE INICIA SERVICIO\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"303\",\n \"U_ClienNom\" : \"TORRE PACIFICO\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-09-30T00:00:00Z\",\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"763\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1696,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000306-SR-000217\",\n \"Name\" : \"PERMANENCIA DE TRES AÑOS CON CONTRATO EXTRANJERO- STEFAN MICHAEL KOSEL\",\n \"ValidFrom\" : \"2019-11-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"Los gastos generados por el tramite serán reembolsables por el cliente.\\rhacemos notar que el tramit\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"306\",\n \"U_ClienNom\" : \"ACI Systems Alemania GmbH Sucursal Bolivia\",\n \"U_FormaCobro\" : \"Honorario tarifa por hora\",\n \"U_FechaCreacionP\" : \"2019-11-21T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"1\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : 1804,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000307-SR-000213\",\n \"Name\" : \"Negociación, estructuración y constitución sociedad aseguradora - Bco Sol S.A.\",\n \"ValidFrom\" : \"2019-10-17T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 40000.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"307\",\n \"U_ClienNom\" : \"LA BOLIVIANA CIACRUZ DE SEGUROS Y REASEGUROS S.A. (LBC)\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-10-17T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Andrés Moreno\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"427\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andrés Moreno\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1747,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000310-SR-000221\",\n \"Name\" : \"Regularización documentos Sra. Cristina Patiño\",\n \"ValidFrom\" : \"2019-12-17T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"Se establecerá el honorario al finalizar el servicio\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"310\",\n \"U_ClienNom\" : \"Fundación Simón I. Patiño\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-12-17T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Administrativo\",\n \"U_AbogadoEncargado\" : \"Ariel Zeballos\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"365\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Zeballos\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : 1838,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000310-SR-000584\",\n \"Name\" : \"DEMANDA IMPUGNACIÓN JUDICIAL 2 CONMINATORIAS REINCORPORACIÓN POR REGULARIZACIÓN BONO DE ANTIGUEDAD\",\n \"ValidFrom\" : \"2023-02-14T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 4940.0,\n \"U_Comentarios\" : \"favor facturar 50% del honorario, el 50% restante es a momento de finalización de plazo probatorio\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"310\",\n \"U_ClienNom\" : \"Fundación Simón I. Patiño\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-02-14T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Laboral y de Seguridad Social\",\n \"U_AbogadoEncargado\" : \"Juan Pablo Zegada\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"366\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Juan Pablo Zegada\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3836,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:09-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:09-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=820\u0026%24top=20 | Status: 200 | Duration: 106.4241ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:09 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000310-SR-000585\",\n \"Name\" : \"AMPARO CONSTITUCIONAL REINCORPORACION POR REGULARIZACION BONO DE ANTIGUEDAD GRUPO 6 TRABAJADORAS\",\n \"ValidFrom\" : \"2023-02-14T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2000.0,\n \"U_Comentarios\" : \"favor elaborar factura\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"310\",\n \"U_ClienNom\" : \"FUNDACION SIMON I. PATIÑO\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-02-14T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Laboral y de Seguridad Social\",\n \"U_AbogadoEncargado\" : \"Juan Pablo Zegada\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Juan Pablo Zegada\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 3837,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000310-SR-000586\",\n \"Name\" : \"AMPARO CONSTITUCIONAL REINCORPORACION POR REGULARIZACION BONO DE ANTIGUEDAD GRUPO 3 TRABAJADORAS\",\n \"ValidFrom\" : \"2023-02-14T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2000.0,\n \"U_Comentarios\" : \"favor facturar\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"310\",\n \"U_ClienNom\" : \"FUNDACION SIMON I. PATIÑO\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-02-14T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Laboral y de Seguridad Social\",\n \"U_AbogadoEncargado\" : \"Juan Pablo Zegada\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Juan Pablo Zegada\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 3838,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000311-SR-000256\",\n \"Name\" : \"REESTRUCTURACION LABORAL\",\n \"ValidFrom\" : \"2020-05-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 3200.0,\n \"U_Comentarios\" : \"\\\"POR POLÍTICA DE LA EMPRESA EL PAGO INICIAL ES DEL 30% DEL HONORARIO, 20% CONTRA AVANCE Y 50% A LA CONCLUSIÓN\\rFAVOR EMITIR FACTURA POR EL 30%\\\"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"311\",\n \"U_ClienNom\" : \"JALASOFT SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-05-29T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Laboral y de Seguridad Social\",\n \"U_AbogadoEncargado\" : \"Juan Pablo Zegada\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Juan Pablo Zegada\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 2057,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000311-SR-000384\",\n \"Name\" : \"Elaboracio de reglamento interno\",\n \"ValidFrom\" : \"2021-06-08T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2000.0,\n \"U_Comentarios\" : \"pago del 30% al inicio, 20% contra avance y 50% entrega final aprobado por el cliente.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"311\",\n \"U_ClienNom\" : \"Jalasoft SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-06-08T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"416\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2741,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000311-SR-000482\",\n \"Name\" : \"ASESORAMIENTO NEGOCIACION ADENDA PASEO ARANJUEZ\",\n \"ValidFrom\" : \"2022-03-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2000.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"311\",\n \"U_ClienNom\" : \"JALASOFT SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-03-24T00:00:00Z\",\n \"U_AreaProyecto\" : \"Comercial (Contratación, informes y otros)\",\n \"U_AbogadoEncargado\" : \"Rene Claure Veizaga\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Claure Veizaga\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 3259,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000311-SR-000543\",\n \"Name\" : \"CORRESPONDENCIA SOCIEDAD SALESIANA - INMUEBLE VILLA FATIMA COCHABAMBA\",\n \"ValidFrom\" : \"2022-10-05T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 345.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"311\",\n \"U_ClienNom\" : \"JALASOFT SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-10-05T00:00:00Z\",\n \"U_AreaProyecto\" : \"Civil (Contratación, informes y otros)\",\n \"U_AbogadoEncargado\" : \"Rene Claure Veizaga\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Claure Veizaga\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 3637,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000311-SR-000821\",\n \"Name\" : \"Cobranza Capital Anticrético\",\n \"ValidFrom\" : \"2021-09-27T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 400.0,\n \"U_Comentarios\" : \"Honorario de exito de 5% en caso de lograr arreglo extrajudicial. En caso de Juicio 12%\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"311\",\n \"U_ClienNom\" : \"Jalasoft SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2021-09-27T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Administrativo\",\n \"U_AbogadoEncargado\" : \"Alvaro Araoz Ardaya\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"1317\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Alvaro Araoz Ardaya\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 2938,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000311-SR-000848\",\n \"Name\" : \"Asesotamiento Galpon Universidad Salesiana\",\n \"ValidFrom\" : \"2022-10-14T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 345.0,\n \"U_Comentarios\" : \"Favor facturar el primer hito.\\rEl segundo hito es incierto. Dependerá de la solicitud del cliente.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"311\",\n \"U_ClienNom\" : \"Jalasoft SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2022-10-14T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der.Civil\",\n \"U_AbogadoEncargado\" : \"Alvaro Araoz Ardaya\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"1318\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Alvaro Araoz Ardaya\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 3647,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000311-SR-001362\",\n \"Name\" : \"Proceso Judicial Rosa Montero\",\n \"ValidFrom\" : \"2024-07-16T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"311\",\n \"U_ClienNom\" : \"Jalasoft SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"3142\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000311-SR-001543\",\n \"Name\" : \"PROCESO - MINISTERIO DE TRABAJO ct. JALASOFT BS 20.000\",\n \"ValidFrom\" : \"2024-09-04T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorarios solo son por la primera instancia procesal. Bs 2.400\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"311\",\n \"U_ClienNom\" : \"Jalasoft SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Natalio Zegarra\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3391\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Natalio Zegarra\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000311-SR-001568\",\n \"Name\" : \"PROCESO MINISTERIO DE TRABAJO CT. JALASOFT BS. 50.000\",\n \"ValidFrom\" : \"2024-09-17T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Patrocinio solo hasta la emisión de sentencia en primera instancia.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"311\",\n \"U_ClienNom\" : \"Jalasoft SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Natalio Zegarra\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3418\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Natalio Zegarra\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000311-SR-001781\",\n \"Name\" : \"Consulta sobre anticipo de utilidades\",\n \"ValidFrom\" : \"2024-12-16T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"311\",\n \"U_ClienNom\" : \"Jalasoft SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3766\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000312-SR-000218\",\n \"Name\" : \"Custodia de Pagarés\",\n \"ValidFrom\" : \"2019-11-28T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 500.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"312\",\n \"U_ClienNom\" : \"Bunge North America, Inc\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-11-28T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"239\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 1809,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000312-SR-001836\",\n \"Name\" : \"Revisión legal de Pagarés y de documentos de personería de firmantes\",\n \"ValidFrom\" : \"2025-01-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"312\",\n \"U_ClienNom\" : \"Bunge North America, Inc\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3847\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000312-SR-002082\",\n \"Name\" : \"Revisión de Pagarés de Enero a Junio 2025\",\n \"ValidFrom\" : \"2025-06-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Sugiero que al momento de hacer llegar la factura, les pasen los datos de la cuenta de MB SRL en el\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"312\",\n \"U_ClienNom\" : \"Bunge North America, Inc\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4480\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000314-SR-001151\",\n \"Name\" : \"Regularización inmueble El Alto (Clínica Fides)\",\n \"ValidFrom\" : \"2024-04-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"314\",\n \"U_ClienNom\" : \"ESCUELAS RADIOFONICAS FIDES\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Civil\",\n \"U_AbogadoEncargado\" : \"Carlos Merino Troche\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2774\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Carlos Merino Troche\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000314-SR-001152\",\n \"Name\" : \"Proceso Ejecutivo - Juzgado 20 de partido en lo CIviil y Comercial\",\n \"ValidFrom\" : \"2024-04-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"314\",\n \"U_ClienNom\" : \"ESCUELAS RADIOFONICAS FIDES\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Carlos Merino Troche\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2775\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Carlos Merino Troche\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000314-SR-001201\",\n \"Name\" : \"Regularización de construcciones fuera de norma\",\n \"ValidFrom\" : \"2024-04-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"314\",\n \"U_ClienNom\" : \"ESCUELAS RADIOFONICAS FIDES\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Civil\",\n \"U_AbogadoEncargado\" : \"Carlos Merino Troche\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2908\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Carlos Merino Troche\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000314-SR-001672\",\n \"Name\" : \"Transferencia de cuotas de capital\",\n \"ValidFrom\" : \"2024-10-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"314\",\n \"U_ClienNom\" : \"ESCUELAS RADIOFONICAS FIDES\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Carlos Merino\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3579\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Carlos Merino\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000314-SR-001673\",\n \"Name\" : \"Modificaciòn y adecuación de estatus y reglamento\",\n \"ValidFrom\" : \"2024-10-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"314\",\n \"U_ClienNom\" : \"ESCUELAS RADIOFONICAS FIDES\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Carlos Merino\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3580\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Carlos Merino\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:09-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:09-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=840\u0026%24top=20 | Status: 200 | Duration: 103.086ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:09 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000314-SR-001756\",\n \"Name\" : \"Preparación, elaboración actas asamblea extraordinaria revocatoria poderes nuevo representante leg\",\n \"ValidFrom\" : \"2024-12-04T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Según correo de Dr. Carlos Merino de fecha 03-12-24\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"314\",\n \"U_ClienNom\" : \"ESCUELAS RADIOFONICAS FIDES\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Carlos Merino\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3725\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Carlos Merino\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000318-SR-000220\",\n \"Name\" : \"Opinion Legal Siniestro GAML-Setram (caso Pumakatari)\",\n \"ValidFrom\" : \"2019-12-17T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 500.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"318\",\n \"U_ClienNom\" : \"COMPAÑIA DE SEGUROS Y REASEGUROS FORTALEZA S.A\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-12-17T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der.Civil\",\n \"U_AbogadoEncargado\" : \"Andrés Moreno\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"259\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andrés Moreno\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1836,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000318-SR-000422\",\n \"Name\" : \"Estructuración de Inversión en el Extranjero\",\n \"ValidFrom\" : \"2021-10-06T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 6500.0,\n \"U_Comentarios\" : \"Para cada uno de los pagos antes indicados, MB debe remitir la correspondiente factura girada a nomb\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"318\",\n \"U_ClienNom\" : \"COMPAÑIA DE SEGUROS Y REASEGUROS FORTALEZA S.A\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-10-06T00:00:00Z\",\n \"U_AreaProyecto\" : \"M\u0026A\",\n \"U_AbogadoEncargado\" : \"Andrés Moreno\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"260\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andrés Moreno\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2949,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000318-SR-000803\",\n \"Name\" : \"Arbitraje Fortaleza Vs Empetrol\",\n \"ValidFrom\" : \"2020-01-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 12000.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"318\",\n \"U_ClienNom\" : \"COMPAÑIA DE SEGUROS Y REASEGUROS FORTALEZA S.A\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2020-01-13T00:00:00Z\",\n \"U_AreaProyecto\" : \"Arbitraje\",\n \"U_AbogadoEncargado\" : \"Andres Moreno Gutierrez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"1266\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andres Moreno Gutierrez\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 1865,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000318-SR-000847\",\n \"Name\" : \"Arbitraje Indara - Cochabamba\",\n \"ValidFrom\" : \"2022-10-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 8000.0,\n \"U_Comentarios\" : \"Honorarios s/iguala profesional\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"318\",\n \"U_ClienNom\" : \"COMPAÑIA DE SEGUROS Y REASEGUROS FORTALEZA S.A\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2022-10-12T00:00:00Z\",\n \"U_AreaProyecto\" : \"Arbitraje\",\n \"U_AbogadoEncargado\" : \"Rene Claure Veizaga\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"1267\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Claure Veizaga\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 3640,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000318-SR-001193\",\n \"Name\" : \"Arbitraje INVAP SE, Sucursal Bolivia v. Fortaleza\",\n \"ValidFrom\" : \"2024-04-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"318\",\n \"U_ClienNom\" : \"COMPAÑIA DE SEGUROS Y REASEGUROS FORTALEZA S.A\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Arbitraje\",\n \"U_AbogadoEncargado\" : \"Andrés Moreno\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2900\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andrés Moreno\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000318-SR-001238\",\n \"Name\" : \"Elaboración de informe legal sobre reestructuración de personal\",\n \"ValidFrom\" : \"2024-05-17T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"100% Final\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"318\",\n \"U_ClienNom\" : \"COMPAÑIA DE SEGUROS Y REASEGUROS FORTALEZA S.A\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Rene Claure Veizaga\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2971\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Claure Veizaga\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000318-SR-001367\",\n \"Name\" : \"Informe sobre caso Póliza Banquera - Banco Fortaleza\",\n \"ValidFrom\" : \"2024-07-18T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"318\",\n \"U_ClienNom\" : \"COMPAÑIA DE SEGUROS Y REASEGUROS FORTALEZA S.A\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Seguros y Reaseguros\",\n \"U_AbogadoEncargado\" : \"Andrés Moreno\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3146\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andrés Moreno\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000319-SR-000264\",\n \"Name\" : \"PERMANENCIA TEMPORAL DE 1 AÑO SIN CONTRATO- CLAUDIA MARCELA GOMEZ MORENO\",\n \"ValidFrom\" : \"2020-07-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1228.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 1228.- DOLARES AMERICANOS INCLUYEN GASTOS E IMPUESTOS DE LEY.\\r\\rESTE CLIENTE E\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"319\",\n \"U_ClienNom\" : \"KPMG - NOKIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-07-15T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"424\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2178,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000319-SR-000313\",\n \"Name\" : \"CEDULA DE EXTRANJERO - CLAUDIA MARCELA GOMEZ MORENO\",\n \"ValidFrom\" : \"2020-12-23T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1794.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 1.794,47.- INCLUYE GASTOS E IMPUESTOS DE LEY\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"319\",\n \"U_ClienNom\" : \"KPMG - NOKIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-12-23T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"425\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2424,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000319-SR-000597\",\n \"Name\" : \"LEGALIZACIÓN DE TITULO PROFESIONAL - EDUARDO ECHEVERRIA\",\n \"ValidFrom\" : \"2023-03-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 800.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 500 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"319\",\n \"U_ClienNom\" : \"KPMG - NOKIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-03-07T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"426\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4003,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000325-SR-000230\",\n \"Name\" : \"Domicilio Legal (FM)\",\n \"ValidFrom\" : \"2020-01-28T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 300.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"325\",\n \"U_ClienNom\" : \"SMI ENVASES INDUSTRIAS BOLIVIA SA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-01-28T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"725\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 1894,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000325-SR-000919\",\n \"Name\" : \"LICENCIA DE FUNCIONAMIENTO - COCHABAMBA\",\n \"ValidFrom\" : \"2022-12-06T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 680.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"325\",\n \"U_ClienNom\" : \"SMIPLASTICO INDUSTRIAS BOLIVIA S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-12-06T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Rene Claure Veizaga\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andre Luis Tejerina Queiroz\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 3757,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000325-SR-000920\",\n \"Name\" : \"LICENCIA DE FUNCIONAMIENTO - COCHABAMBA\",\n \"ValidFrom\" : \"2023-04-03T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 800.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"325\",\n \"U_ClienNom\" : \"SMIPLASTICO INDUSTRIAS BOLIVIA S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-04-03T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Rene Claure Veizaga\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andre Luis Tejerina Queiroz\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 4039,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000325-SR-001139\",\n \"Name\" : \"Consultas sobre Impuestos Aplicables a Transferencia de Marca - Convenio 578 CAN\",\n \"ValidFrom\" : \"2024-03-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"100% al inicio\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"325\",\n \"U_ClienNom\" : \"SMI ENVASES INDUSTRIAS BOLIVIA SA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Andre Luis Tejerina Queiroz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2741\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andre Luis Tejerina Queiroz\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000325-SR-001172\",\n \"Name\" : \"Cierre de Gestión 2023\",\n \"ValidFrom\" : \"2024-04-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"100% Final\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"325\",\n \"U_ClienNom\" : \"SMI ENVASES INDUSTRIAS BOLIVIA SA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Andre Luis Tejerina Queiroz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2835\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andre Luis Tejerina Queiroz\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000325-SR-001707\",\n \"Name\" : \"Elaboración de Adenda de Contrato con Alicorp\",\n \"ValidFrom\" : \"2024-11-04T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"325\",\n \"U_ClienNom\" : \"SMI ENVASES INDUSTRIAS BOLIVIA SA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"André Tejerina\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3640\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"André Tejerina\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000327-SR-000753\",\n \"Name\" : \"Take-Two Interactive Software, Inc. - Bolivia Advice\",\n \"ValidFrom\" : \"2023-10-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"Facturar hasta el 15 del mes siguiente\\rPlease remit Invoices for this matter to our central billing\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"327\",\n \"U_ClienNom\" : \"Ogletree, Deakins, Nash, Smoak \u0026 Stewart, P.C.\",\n \"U_FormaCobro\" : \"Honorario tarifa por hora\",\n \"U_FechaCreacionP\" : \"2023-10-25T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"15\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : 4559,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000327-SR-001383\",\n \"Name\" : \"Bolivia - Service Titan\",\n \"ValidFrom\" : \"2024-07-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"USD 250 Socio\\rUSD 150 Asociado\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"327\",\n \"U_ClienNom\" : \"Ogletree, Deakins, Nash, Smoak \u0026 Stewart, P.C.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Noelia Sanjinés\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3169\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Noelia Sanjinés\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000330-SR-000804\",\n \"Name\" : \"Proceso civil ordinario contra la empresa ENTEL S.A.\",\n \"ValidFrom\" : \"2020-02-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 3750.0,\n \"U_Comentarios\" : \"1.- 15% al momento de inicio de las acciones, sea prejudicial o la solicitud formal de conciliación\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"330\",\n \"U_ClienNom\" : \"MER TELECOM BOLIVIA S.R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2020-02-20T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der.Civil\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"1319\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 1954,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:09-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:09-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=860\u0026%24top=20 | Status: 200 | Duration: 118.1188ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:09 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000333-SR-000242\",\n \"Name\" : \"Due Diligence Legal\",\n \"ValidFrom\" : \"2020-02-27T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 11500.0,\n \"U_Comentarios\" : \"Se confirmará la razon social y nit para facturar\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"333\",\n \"U_ClienNom\" : \"AUTOSTAR\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-02-27T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Andrés Moreno\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"181\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andrés Moreno\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1972,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000337-SR-000246\",\n \"Name\" : \"Asesoramiento Legal Laboral (FM)\",\n \"ValidFrom\" : \"2020-03-06T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1000.0,\n \"U_Comentarios\" : \"Confirmar con AMG la fecha de inicio del servicio\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"337\",\n \"U_ClienNom\" : \"RADIODIFUSORAS POPULARES S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa retainer\",\n \"U_FechaCreacionP\" : \"2020-03-06T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Carlos Merino Troche\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 12,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"146\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Carlos Merino Troche\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 1991,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000339-SR-000261\",\n \"Name\" : \"OBTENCION DE LICENCIAS\",\n \"ValidFrom\" : \"2020-07-08T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 4500.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"339\",\n \"U_ClienNom\" : \"DELIVERYHERO STORES ALMACENES BOLIVIA S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-07-08T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Administrativo\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 2161,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000339-SR-000291\",\n \"Name\" : \"Servicios Legales Mensuales (FM)\",\n \"ValidFrom\" : \"2020-09-28T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 500.0,\n \"U_Comentarios\" : \"Cobrar a partir de octubre (facturación en noviembre) el asunto se inactiva ya que se facturara den\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"339\",\n \"U_ClienNom\" : \"DeliveryHero Stores Almacenes Bolivia S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa retainer\",\n \"U_FechaCreacionP\" : \"2020-09-28T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"Ines Ayala\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 5,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"135\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ines Ayala\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 2294,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000339-SR-000294\",\n \"Name\" : \"OBTENCION DE LICENCIAS SUCURSAL 2\",\n \"ValidFrom\" : \"2020-10-26T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 3000.0,\n \"U_Comentarios\" : \"Del monto de los honorarios, algunos gastos no serán reembolsables.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"339\",\n \"U_ClienNom\" : \"DELIVERYHERO STORES ALMACENES BOLIVIA S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-10-26T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Administrativo\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 2324,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000339-SR-000300\",\n \"Name\" : \"OBTENCION DE LICENCIAS SUCURSAL 3 SC SUR\",\n \"ValidFrom\" : \"2020-11-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 3000.0,\n \"U_Comentarios\" : \"Del monto de los honorarios, algunos gastos no serán reembolsables.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"339\",\n \"U_ClienNom\" : \"DELIVERYHERO STORES ALMACENES BOLIVIA S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-11-25T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Administrativo\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 2373,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000339-SR-000301\",\n \"Name\" : \"OBTENCION DE LICENCIAS SUCURSALES LP SAN MIGUEL Y SOPOCACHI\",\n \"ValidFrom\" : \"2020-11-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 5700.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"339\",\n \"U_ClienNom\" : \"DELIVERYHERO STORES ALMACENES BOLIVIA S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-11-25T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Administrativo\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 2374,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000339-SR-000302\",\n \"Name\" : \"OBTENCION DE LICENCIAS SUCURSAL CBBA\",\n \"ValidFrom\" : \"2020-11-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 3700.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"339\",\n \"U_ClienNom\" : \"DELIVERYHERO STORES ALMACENES BOLIVIA S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-11-25T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Administrativo\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 2375,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000340-SR-001291\",\n \"Name\" : \"Cuestionario TENCENT\",\n \"ValidFrom\" : \"2024-06-18T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"340\",\n \"U_ClienNom\" : \"LATHAM \u0026 WATKINS\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Fintech \u0026 Nuevas Tecnologías\",\n \"U_AbogadoEncargado\" : \"Luis Moreno Gutierrez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3061\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Moreno Gutierrez\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000341-SR-001377\",\n \"Name\" : \"Acuerdo Comercial pago obligaciones Dotmed - Farlac\",\n \"ValidFrom\" : \"2024-07-19T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"341\",\n \"U_ClienNom\" : \"MEDTRONIC LOGISTICS LLC\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3158\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000341-SR-001716\",\n \"Name\" : \"Revisión de Contrato de Distribución - Cláusula pago de terceros\",\n \"ValidFrom\" : \"2024-11-08T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"341\",\n \"U_ClienNom\" : \"MEDTRONIC LOGISTICS LLC\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3678\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000341-SR-001743\",\n \"Name\" : \"Elaboración de actas de recepción y entrega de dispositivos - distribuidores\",\n \"ValidFrom\" : \"2024-11-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"341\",\n \"U_ClienNom\" : \"MEDTRONIC LOGISTICS LLC\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3710\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-000330\",\n \"Name\" : \"TRAMITES DE TRANSFERENCIA DE INMUEBLES\",\n \"ValidFrom\" : \"2021-02-04T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1600.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-02-04T00:00:00Z\",\n \"U_AreaProyecto\" : \"Civil (Contratación, informes y otros)\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 2500,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-000371\",\n \"Name\" : \"Servicios Legales Mensuales\",\n \"ValidFrom\" : \"2021-05-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 21000.0,\n \"U_Comentarios\" : \"Entra en vigencia a partir del 01 de abril\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-05-01T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"405\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 2664,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-000495\",\n \"Name\" : \"Proceso civil ejecutivo Freddy Inca Arratia.\",\n \"ValidFrom\" : \"2022-05-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 100.0,\n \"U_Comentarios\" : \"Adicionalmente al honorario mensual de seguimiento, de acuerdo a Iguala se debe cobrar al presentar\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-05-07T00:00:00Z\",\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"406\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 3376,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-000746\",\n \"Name\" : \"Segumiento Proceso Civil de cobranza de deuda MEGAPRO\",\n \"ValidFrom\" : \"2023-10-19T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 200.0,\n \"U_Comentarios\" : \"Conforme a Iguala marco de fecha 01 de marzo de 2021. Adicional al honorario fijo hay un variable qu\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-10-19T00:00:00Z\",\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Zeballos\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"407\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Zeballos\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 4532,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-000794\",\n \"Name\" : \"Constitución de SRL\",\n \"ValidFrom\" : \"2023-12-08T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-12-08T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"408\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4640,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-000818\",\n \"Name\" : \"Proceso Ejecutivo contra Linet Lesly Segales Ugarte y Nilda Blanca Ugarte García\",\n \"ValidFrom\" : \"2021-07-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 200.0,\n \"U_Comentarios\" : \"Revisar la Iguala para servicios de cobranza que hemos pactado con VENADO de fecha 01 de marzo de 20\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2021-07-22T00:00:00Z\",\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"1313\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 2858,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-000819\",\n \"Name\" : \"Proceso civil ejecutivo contra Gerson Enoc Limachi Siñani y Sandra Begonia López Coarite\",\n \"ValidFrom\" : \"2021-07-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 100.0,\n \"U_Comentarios\" : \"Por favor cobrar conforme a Iguala suscrita en fecha 01 de marzo de 2021\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2021-07-22T00:00:00Z\",\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"1314\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 2859,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-000869\",\n \"Name\" : \"Arbitraje IVSA c Multicanal\",\n \"ValidFrom\" : \"2023-04-27T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 6018.0,\n \"U_Comentarios\" : \"Se inactiva el asunto segun correo del Dr. Rene Cuellar recibido en fecha 14 de enero de 2024\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2023-04-27T00:00:00Z\",\n \"U_AreaProyecto\" : \"Arbitraje\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"1315\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 4073,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:09-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:09-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=880\u0026%24top=20 | Status: 200 | Duration: 113.5834ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:09 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000343-SR-000997\",\n \"Name\" : \"Defensa Tributaria VC 292329000704 y 292329000697\",\n \"ValidFrom\" : \"2024-02-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Luis Valda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2295\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Valda\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-001017\",\n \"Name\" : \"Proceso Civil Gabriel Vaca Aguilar Seguimiento\",\n \"ValidFrom\" : \"2024-02-14T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2329\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-001043\",\n \"Name\" : \"PROCESO 1 FRANCO MARÍN - SEGUIMIENTO\",\n \"ValidFrom\" : \"2024-02-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Mauricio Aguirre\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2370\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Mauricio Aguirre\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-001044\",\n \"Name\" : \"Proceso INTERFOOD ALIMENTOS Y BEBIDAS S.A.\",\n \"ValidFrom\" : \"2024-02-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"facturar 100% al ingreso de la demanda\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2371\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-001045\",\n \"Name\" : \"PROCESO WALTER ALBERTO PLAZA NOGALES\",\n \"ValidFrom\" : \"2024-02-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"facturar 100% al ingreso de la demanda NO SE PROCEDE A FACTURAR YA QUE EL CLIENTE DESISTIO DE LA DEM\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2372\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-001046\",\n \"Name\" : \"PROCESO OLIMPIA RIOS MEJIA Y GARANTES\",\n \"ValidFrom\" : \"2024-02-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"facturar 100% ingreso de la demanda\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2373\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-001047\",\n \"Name\" : \"PROCESO SHIRLEY MUJICA FLORES- HITOS\",\n \"ValidFrom\" : \"2024-02-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2374\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-001048\",\n \"Name\" : \"PROCESO REYNA SAIDA SILES DE CARRASCO\",\n \"ValidFrom\" : \"2024-02-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"facturar 100% ingreso demanda\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2375\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-001049\",\n \"Name\" : \"PROCESO ELIZABETH RUTH MORALES\",\n \"ValidFrom\" : \"2024-02-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"facturar 100% ingreso demanda\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2376\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-001050\",\n \"Name\" : \"PROCESO JESSICA VERONICA RODRIGUEZ VARGAS\",\n \"ValidFrom\" : \"2024-02-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"facturar 100% ingreso demanda\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2377\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-001051\",\n \"Name\" : \"PROCESO MILTON CARABALLO HUAILLA\",\n \"ValidFrom\" : \"2024-02-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"A SOLICITUD DEL SOCIO RENE CUELLAR - EL CLIENTE CANCELO EL SERVICIO\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2378\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-001052\",\n \"Name\" : \"PROCESO ELZY MARLENY ESTEPA\",\n \"ValidFrom\" : \"2024-02-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Tiene 2 hitos\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2379\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-001053\",\n \"Name\" : \"PROCESO OLGA PARISACA\",\n \"ValidFrom\" : \"2024-02-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"100% emisión de sentencia\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2380\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-001054\",\n \"Name\" : \"PROCESO FLORINDA CORONADO\",\n \"ValidFrom\" : \"2024-02-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"facturar 100% ingreso de demanda\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2381\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-001055\",\n \"Name\" : \"PROCESO RODRIGO ROBERTO VIDAL NEGRETE\",\n \"ValidFrom\" : \"2024-02-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Tiene 2 hitos\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2382\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-001056\",\n \"Name\" : \"PROCESO 1 - TOPDEALER SRL\",\n \"ValidFrom\" : \"2024-02-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Facturar 100% al ingreso de la demanda\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2383\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-001057\",\n \"Name\" : \"PROCESO 2 FRANCO MARÍN\",\n \"ValidFrom\" : \"2024-02-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Facturar 100% ingreso de demanda\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2384\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-001059\",\n \"Name\" : \"PROCESO JESSICA VERONICA RODRIGUEZ VARGAS SEGUIMIENTO\",\n \"ValidFrom\" : \"2024-02-23T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"BOB\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2386\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-001084\",\n \"Name\" : \"PROCESO 2- TOPDEALER SRL SEGUIMIENTO\",\n \"ValidFrom\" : \"2024-02-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"100% mensual\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2559\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-001093\",\n \"Name\" : \"PROCESO RODRIGO ROBERTO VIDAL NEGRETE - SEGUIMIENTO\",\n \"ValidFrom\" : \"2024-03-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2599\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:09-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:09-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=900\u0026%24top=20 | Status: 200 | Duration: 97.2597ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:10 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000343-SR-001094\",\n \"Name\" : \"PROCESO FLORINDA CORONADO - SEGUIMIENTO\",\n \"ValidFrom\" : \"2024-03-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2603\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-001095\",\n \"Name\" : \"PROCESO OLGA PARISACA - SEGUIMIENTO\",\n \"ValidFrom\" : \"2024-03-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2606\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-001096\",\n \"Name\" : \"PROCESO ELZY MARLENY ESTEPA - SEGUIMIENTO\",\n \"ValidFrom\" : \"2024-03-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2612\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-001097\",\n \"Name\" : \"PROCESO MILTON CARABALLO HUAILLA - SEGUIMIENTO\",\n \"ValidFrom\" : \"2024-03-04T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"300 $us mensual\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2622\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-001103\",\n \"Name\" : \"WALTER PLAZA NOGALES - SEGUIMIENTO\",\n \"ValidFrom\" : \"2024-03-05T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"100 $US mensual ASUNTO INACTIVADO SEGUN CORREO DE RCLL DE FECHA 07/05/2024\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2636\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-001104\",\n \"Name\" : \"REYNA SAIDA SILES DE CARRASCO - SEGUIMIENTO\",\n \"ValidFrom\" : \"2024-03-05T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"$us 100 mensual\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Mauricio Aguirre\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2637\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Mauricio Aguirre\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-001105\",\n \"Name\" : \"SHIRLEY MUJICA FLORES -SEGUIMIENTO\",\n \"ValidFrom\" : \"2024-03-05T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"$us 100 mensual - se facturo de marzo a agosto y reactivamos octubre para adelante.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Mauricio Aguirre\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2638\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Mauricio Aguirre\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-001106\",\n \"Name\" : \"OLIMPIA RIOS MEJIA Y GARANTES-SEGUIMIENTO\",\n \"ValidFrom\" : \"2024-03-05T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"$us 300 mensual\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2639\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-001107\",\n \"Name\" : \"ELIZABETH RUTH MORALES -SEGUIMIENTO\",\n \"ValidFrom\" : \"2024-03-05T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"$us 100 mensual\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2640\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-001112\",\n \"Name\" : \"Proceso Ejecutivo AGN ALIMENTOS Y BEBIDAS LTDA\",\n \"ValidFrom\" : \"2024-03-08T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Ingreso de demanda\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2646\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-001229\",\n \"Name\" : \"Modificación de RAI\",\n \"ValidFrom\" : \"2024-05-08T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"50% Inicio/50% Final\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Ambiental\",\n \"U_AbogadoEncargado\" : \"Andre Luis Tejerina Queiroz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2938\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andre Luis Tejerina Queiroz\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-001276\",\n \"Name\" : \"Proceso ejecutivo - cobro Ketal S.A.\",\n \"ValidFrom\" : \"2024-06-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Proceso ejecutivo - cobro Ketal S.A. con una cuantía de Bs. 453.285,39.- equivalente a USD. 65.127,\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Zeballos\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3046\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Zeballos\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-001277\",\n \"Name\" : \"Procedimiento Administrativo contra Alcaldía Santa Cruz\",\n \"ValidFrom\" : \"2024-06-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"se cancelará 50% al inicio y 50% al final\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Ambiental\",\n \"U_AbogadoEncargado\" : \"André Tejerina\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3047\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"André Tejerina\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-001287\",\n \"Name\" : \"SEGUIMIENTO PROCESO EJECUTIVO KETAL S.A.\",\n \"ValidFrom\" : \"2024-06-14T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Según Iguala suscrito con Venado como la cuantía de este proceso asciende a la suma de USD. 65.127\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Zeballos\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3056\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Zeballos\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-001437\",\n \"Name\" : \"Due Diligence Corporativo para Grupotec S.R.L, Servfin S.R.L., JEC Foods S.R.L., Active Foods S.R.L.\",\n \"ValidFrom\" : \"2024-08-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3271\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-001458\",\n \"Name\" : \"Proceso ejecutivo - Miguel Mamani Felipe\",\n \"ValidFrom\" : \"2024-08-26T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Se cobra el 10% de la cuantía demandada en 3 hitos.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3294\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-001459\",\n \"Name\" : \"Proceso ejecutivo - Miguel Mamani Felipe seguimiento.\",\n \"ValidFrom\" : \"2024-08-26T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Se cobrara según la iguala un seguimiento mensual de USD. 100.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Mauricio Aguirre\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3295\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Mauricio Aguirre\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-001531\",\n \"Name\" : \"PROCESO EJECUTIVO INTERFOOD - SEGUIMIENTO\",\n \"ValidFrom\" : \"2024-09-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Facturar y cobrar desde el 01 de septiembre de 2024\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Mauricio Aguirre\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3377\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Mauricio Aguirre\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-001532\",\n \"Name\" : \"PROCESO EJECUTIVO AGN - SEGUIMIENTO\",\n \"ValidFrom\" : \"2024-09-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Facturar y cobrar desde el 01 de septiembre de 2024\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Mauricio Aguirre\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3378\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Mauricio Aguirre\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-001533\",\n \"Name\" : \"PROCESO EJECUTIVO GABRIEL VACA AGUILAR - HITOS\",\n \"ValidFrom\" : \"2024-09-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3379\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:10-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:10-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=920\u0026%24top=20 | Status: 200 | Duration: 99.808ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:10 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000343-SR-001534\",\n \"Name\" : \"PROCESO ORDINARIO PASCUAL MIRABAL VEIZAGA - SEGUIMIENTO\",\n \"ValidFrom\" : \"2024-09-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"A SOLICITUD DEL DR RENE CUELLAR - YA NO SE DARA ESE SERVICIO\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3380\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-001535\",\n \"Name\" : \"PROCESO ORDINARIO PASCUAL MIRABAL - HITOS\",\n \"ValidFrom\" : \"2024-09-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"A SOLICITUD DEL DR RENE CUELLAR - YA NO SE DARA ESE SERVICIO\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3381\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-001536\",\n \"Name\" : \"PROCESO CIVIL JIMMY BLADIMIR COLQUE - HITOS\",\n \"ValidFrom\" : \"2024-09-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3382\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-001650\",\n \"Name\" : \"Proceso Ejecutivo Fredy Inca - Sentencia Definitiva\",\n \"ValidFrom\" : \"2024-10-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Bs. 3912.44\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3545\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-001651\",\n \"Name\" : \"Proceso Civil Ejecutivo Lesly Nineth Segales Ugarte y otros - Seguimiento\",\n \"ValidFrom\" : \"2024-10-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Zeballos\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3546\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Zeballos\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-001652\",\n \"Name\" : \"Proceso Civil Ejecutivo Gerson Limachi\",\n \"ValidFrom\" : \"2024-10-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Zeballos\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3547\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Zeballos\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-001653\",\n \"Name\" : \"Proceso Civil Ejecutivo MEGAPRO - HITOS\",\n \"ValidFrom\" : \"2024-10-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3548\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-001654\",\n \"Name\" : \"Proceso Civil KETAL II - Seguimiento\",\n \"ValidFrom\" : \"2024-10-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Zeballos\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3549\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Zeballos\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-001655\",\n \"Name\" : \"Proceso Civil Ketal II - Hitos\",\n \"ValidFrom\" : \"2024-10-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Zeballos\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3550\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Zeballos\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-001658\",\n \"Name\" : \"Proceso Penal Gerbet Poma- Seguimiento\",\n \"ValidFrom\" : \"2024-10-16T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"facturar desde octubre 2024\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Zeballos\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3554\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Zeballos\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-001659\",\n \"Name\" : \"Proceso Penal Gerbet Poma - Hitos\",\n \"ValidFrom\" : \"2024-10-16T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Zeballos\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3555\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Zeballos\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-001660\",\n \"Name\" : \"Proceso Civil Virginia Condori- Seguimiento\",\n \"ValidFrom\" : \"2024-10-16T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3556\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-001661\",\n \"Name\" : \"Proceso Civil Virginia Condori - Hitos\",\n \"ValidFrom\" : \"2024-10-16T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Zeballos\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3557\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Zeballos\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-001662\",\n \"Name\" : \"Proceso Civil Teodora Tarquino- Seguimiento\",\n \"ValidFrom\" : \"2024-10-16T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Mauricio Aguirre\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3558\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Mauricio Aguirre\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-001663\",\n \"Name\" : \"Proceso Civil Teodora Tarquino - Hitos\",\n \"ValidFrom\" : \"2024-10-16T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Zeballos\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3559\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Zeballos\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-001668\",\n \"Name\" : \"Revisión para cierre de la gestión 2024\",\n \"ValidFrom\" : \"2024-10-17T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Cobro del 50% al inicio - Bs. 36.192\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Luis Valda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3574\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Valda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-001696\",\n \"Name\" : \"Planificación Tributaria abril 2025\",\n \"ValidFrom\" : \"2024-10-27T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Cobro de honorarios 50% al inicio y 50% al final - ASUNTO DUPLICADO - A SOLICITUD DE LUIS VALDA\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Rodrigo Burgos\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3606\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rodrigo Burgos\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-001727\",\n \"Name\" : \"Transferencia de cuotas de capital y regularización temas societarios (Pagos)\",\n \"ValidFrom\" : \"2024-11-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3690\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-001741\",\n \"Name\" : \"Proceso Aduanero - Carga Lopatin\",\n \"ValidFrom\" : \"2024-11-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Proceder al cobro del 50% según propuesta\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Luis Valda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3707\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Valda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-001818\",\n \"Name\" : \"Resposición Documentos inmueble Colcapirhua CBBA 3519.09m2\",\n \"ValidFrom\" : \"2025-01-08T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Inmobiliario\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"3815\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:10-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:10-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=940\u0026%24top=20 | Status: 200 | Duration: 102.5357ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:10 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000343-SR-001841\",\n \"Name\" : \"Apertura de Sucursal Agencia Bánzer\",\n \"ValidFrom\" : \"2025-01-23T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3852\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-001880\",\n \"Name\" : \"Reposición documentos Predio lote Venado - Colcapirhua CB\",\n \"ValidFrom\" : \"2025-02-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Inmobiliario\",\n \"U_AbogadoEncargado\" : null,\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"3905\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-001937\",\n \"Name\" : \"Constitución 3 SRL\",\n \"ValidFrom\" : \"2025-03-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3974\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-001990\",\n \"Name\" : \"Caso Penal Hurto etapa preparatoria Venado contra German Ruiloba Veramendi y Ronald Salazar Landivar\",\n \"ValidFrom\" : \"2025-04-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Penal\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4219\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-001997\",\n \"Name\" : \"proceso ejecutivo Angela Torrez seguimiento\",\n \"ValidFrom\" : \"2025-04-28T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Zeballos\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"4265\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Zeballos\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-001998\",\n \"Name\" : \"Proceso Angela Torrez por hitos\",\n \"ValidFrom\" : \"2025-04-28T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Zeballos\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"4266\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Zeballos\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-001999\",\n \"Name\" : \"Memorial de Rectificación y Complementación a modificación del RAI\",\n \"ValidFrom\" : \"2025-04-28T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Ambiental\",\n \"U_AbogadoEncargado\" : \"André Tejerina\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"4267\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"André Tejerina\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-002011\",\n \"Name\" : \"Procedimiento Administrativo contra Alcaldía de Santa Cruz\",\n \"ValidFrom\" : \"2025-05-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Ambiental\",\n \"U_AbogadoEncargado\" : \"André Tejerina\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"4285\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"André Tejerina\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-002029\",\n \"Name\" : \"Asesoría Ambiental por horas\",\n \"ValidFrom\" : \"2025-05-16T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Ambiental\",\n \"U_AbogadoEncargado\" : \"André Tejerina\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"4313\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"André Tejerina\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-002067\",\n \"Name\" : \"Proyecto Manhattan\",\n \"ValidFrom\" : \"2025-06-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Pago 60% inicial\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Luis Valda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4458\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Valda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000343-SR-002092\",\n \"Name\" : \"Servicios legales societarios\",\n \"ValidFrom\" : \"2025-06-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"343\",\n \"U_ClienNom\" : \"INDUSTRIAS VENADO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : null,\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4494\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000344-SR-000254\",\n \"Name\" : \"Servicio Legal Menssual (FM)\",\n \"ValidFrom\" : \"2020-04-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 696.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"344\",\n \"U_ClienNom\" : \"PAGOS SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa retainer\",\n \"U_FechaCreacionP\" : \"2020-04-29T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 8,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"143\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 2037,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000344-SR-000859\",\n \"Name\" : \"Proceso Penal Diego Suárez\",\n \"ValidFrom\" : \"2023-02-16T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1500.0,\n \"U_Comentarios\" : \"En relación al horario de éxito, el mismo se cobrará en caso que Pagos recupere el daño económico en más del 50%, sea mediante Acuerdo Transaccional con la contraparte, cobertura del seguro y/o en cum\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"344\",\n \"U_ClienNom\" : \"PAGOS SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2023-02-16T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Penal\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"1327\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 3845,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000344-SR-000860\",\n \"Name\" : \"Proceso Penal Roly Mercado\",\n \"ValidFrom\" : \"2023-02-16T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2000.0,\n \"U_Comentarios\" : \"En relación al horario de éxito, el mismo se cobrará en caso que Pagos recupere el daño económi\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"344\",\n \"U_ClienNom\" : \"PAGOS SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2023-02-16T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Penal\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"1328\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 3846,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000344-SR-000872\",\n \"Name\" : \"Proceso c/Grover Aguilar y Pamela Rada (LPZ)\",\n \"ValidFrom\" : \"2023-06-05T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2000.0,\n \"U_Comentarios\" : \"La propuesta incluye un Honorario ijo de Bs. 7000 que debe ser pagados por hitos. Idependientemente de esto, hay un Honorario de Éxito de Bs. 3000 si recupera en más del 50% del monto demandado.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"344\",\n \"U_ClienNom\" : \"PAGOS SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2023-06-05T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Penal\",\n \"U_AbogadoEncargado\" : \"Ines Ayala\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"1329\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ines Ayala\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 4172,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000344-SR-001251\",\n \"Name\" : \"Calendario Legal 2024\",\n \"ValidFrom\" : \"2024-05-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Debe existir un gasto de Bs. 450 que se debe pagar el 31 de mayo del presente. El cliente tiene cono\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"344\",\n \"U_ClienNom\" : \"PAGOS SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Ines Ayala\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2997\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ines Ayala\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000345-SR-000654\",\n \"Name\" : \"Servicios Legales por horas\",\n \"ValidFrom\" : \"2023-06-19T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"a) Horas Socio: USD 150 por hora. b) Horas Asociado Senior: USD 130 por hora. c) Horas Asociado: US\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"345\",\n \"U_ClienNom\" : \"TUVES TV SATELITAL BOLIVIA S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa por hora\",\n \"U_FechaCreacionP\" : \"2023-06-19T00:00:00Z\",\n \"U_AreaProyecto\" : \"Telecomunicaciones\",\n \"U_AbogadoEncargado\" : \"Noelia Sanjinés\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"24\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Noelia Sanjinés\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : 4197,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000345-SR-001221\",\n \"Name\" : \"Cierre corporativo anual 2023\",\n \"ValidFrom\" : \"2024-05-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"100% Final\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"345\",\n \"U_ClienNom\" : \"TUVES TV SATELITAL BOLIVIA S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2930\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000345-SR-001817\",\n \"Name\" : \"Tesorería\",\n \"ValidFrom\" : \"2025-01-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"La factura se debe generar desde MB NEGOCIOS. \\rOBJETO DEL SERVICIO\\r1.\\tMediante el contrato profesion\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"345\",\n \"U_ClienNom\" : \"TUVES TV SATELITAL BOLIVIA S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3814\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000345-SR-002004\",\n \"Name\" : \"CIERRE CORPORATIVO 2024\",\n \"ValidFrom\" : \"2025-05-05T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"345\",\n \"U_ClienNom\" : \"TUVES TV SATELITAL BOLIVIA S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Noelia Sanjinés\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"4277\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Noelia Sanjinés\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:10-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:10-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=960\u0026%24top=20 | Status: 200 | Duration: 102.627ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:10 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000346-SR-000806\",\n \"Name\" : \"PROCESO ARBITRAL\",\n \"ValidFrom\" : \"2020-05-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 5000.0,\n \"U_Comentarios\" : \"Honorarios por servicio de Arbitraje BCP USD 5000 A la firma y USD 10000 a la suscripcion aprobada\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"346\",\n \"U_ClienNom\" : \"BANCO DE CREDITO DE BOLIVIA S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2020-05-21T00:00:00Z\",\n \"U_AreaProyecto\" : \"Arbitraje\",\n \"U_AbogadoEncargado\" : \"Andres Moreno Gutierrez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andres Moreno Gutierrez\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa por hitos\",\n \"U_CodAnterior\" : 2052,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000346-SR-001355\",\n \"Name\" : \"Informe Legal Fideicomiso MSC\",\n \"ValidFrom\" : \"2024-07-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"346\",\n \"U_ClienNom\" : \"BANCO DE CREDITO DE BOLIVIA S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Mercantil-Banca\u0026Finanzas\",\n \"U_AbogadoEncargado\" : \"Teddy Mercado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3133\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Teddy Mercado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000346-SR-001427\",\n \"Name\" : \"Arbitraje Mediterranean Shipping Company - MSC\",\n \"ValidFrom\" : \"2024-08-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"346\",\n \"U_ClienNom\" : \"BANCO DE CREDITO DE BOLIVIA S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Arbitraje\",\n \"U_AbogadoEncargado\" : \"Andrés Moreno\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3260\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andrés Moreno\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000346-SR-002049\",\n \"Name\" : \"SERVICIOS LEGALES INTEGRALES\",\n \"ValidFrom\" : \"2025-05-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Refacturación por Factura No. 82 emitida por Casa Grande Apart Hotel S.R.L.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"346\",\n \"U_ClienNom\" : \"BANCO DE CREDITO DE BOLIVIA S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Arbitraje\",\n \"U_AbogadoEncargado\" : \"Pamela Muñoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"4360\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Pamela Muñoz\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000346-SR-002080\",\n \"Name\" : \"Informe Legal Devolución Depósitos Recibidos en USD\",\n \"ValidFrom\" : \"2025-06-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Favor facturar los primeros días de julio 2025\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"346\",\n \"U_ClienNom\" : \"BANCO DE CREDITO DE BOLIVIA S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Mercantil-Banca\u0026Finanzas\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"4478\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000347-SR-000255\",\n \"Name\" : \"Honorarios por servicios legales mensuales\",\n \"ValidFrom\" : \"2020-05-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 3900.0,\n \"U_Comentarios\" : \"Honorarios por servicios legales mensuales USD 3900 a partir del mes de Junio 2020\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"347\",\n \"U_ClienNom\" : \"EMPRESA DE COMUNICACIÓN SOCIAL EL DEBER S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-05-29T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"343\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 2056,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000347-SR-000393\",\n \"Name\" : \"PROCESO JUDICIAL LABORAL (Mauricio Da Costa Saat)\",\n \"ValidFrom\" : \"2021-06-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 24706.740,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"347\",\n \"U_ClienNom\" : \"EMPRESA DE COMUNICACIÓN SOCIAL EL DEBER S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-06-30T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Paul Aramayo Salinas\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"344\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Paul Aramayo Salinas\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2770,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000347-SR-000889\",\n \"Name\" : \"Proceso Judicial contra SIBRA\",\n \"ValidFrom\" : \"2023-10-26T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 6000.0,\n \"U_Comentarios\" : \"Adicionalmente al honorario fijo, se pactó un honorario variable (succes fee) equivalente al 18% de\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"347\",\n \"U_ClienNom\" : \"EMPRESA DE COMUNICACIÓN SOCIAL EL DEBER S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2023-10-26T00:00:00Z\",\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"1288\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 4565,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000347-SR-000923\",\n \"Name\" : \"PRESTACION COTIDIANA DE SERVICIOS LEGALES DE NATURALEZA CORPORATIVA Y LABORAL\",\n \"ValidFrom\" : \"2020-05-26T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 16000.0,\n \"U_Comentarios\" : \"Horas ilimitadas\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"347\",\n \"U_ClienNom\" : \"EMPRESA DE COMUNICACIÓN SOCIAL EL DEBER S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2020-05-26T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Laboral y de Seguridad Social\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 2053,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000347-SR-000924\",\n \"Name\" : \"CUMPLO TODO (DUE DILIGENCE)\",\n \"ValidFrom\" : \"2021-10-16T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2000.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"347\",\n \"U_ClienNom\" : \"EMPRESA DE COMUNICACIÓN SOCIAL EL DEBER S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2021-10-16T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 2963,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000347-SR-000925\",\n \"Name\" : \"FUSION DE SAAINSA CON EL DEBER\",\n \"ValidFrom\" : \"2023-11-16T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 4000.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"347\",\n \"U_ClienNom\" : \"EMPRESA DE COMUNICACIÓN SOCIAL EL DEBER S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2023-11-16T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 4593,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000347-SR-001041\",\n \"Name\" : \"Análisis de la RA para presentación del RJ RD 172379000087\",\n \"ValidFrom\" : \"2024-02-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"100% al inicio\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"347\",\n \"U_ClienNom\" : \"EMPRESA DE COMUNICACIÓN SOCIAL EL DEBER S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Luis Valda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2368\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Valda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000347-SR-001042\",\n \"Name\" : \"Defensa de la DCA RJ 0213/2024\",\n \"ValidFrom\" : \"2024-02-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"DUPLICARON _ UNO CREO LUIS VALDA Y OTRO RODRIGO BURGOS\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"347\",\n \"U_ClienNom\" : \"EMPRESA DE COMUNICACIÓN SOCIAL EL DEBER S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Luis Valda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2369\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Valda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000347-SR-001609\",\n \"Name\" : \"Transferencias de Licencias de Radio de ED a Contactmedia\",\n \"ValidFrom\" : \"2024-09-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"347\",\n \"U_ClienNom\" : \"EMPRESA DE COMUNICACIÓN SOCIAL EL DEBER S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Telecomunicaciones\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3462\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000347-SR-001682\",\n \"Name\" : \"Proceso Civil Ejecutivo contra Daniela Rea\",\n \"ValidFrom\" : \"2024-10-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"347\",\n \"U_ClienNom\" : \"EMPRESA DE COMUNICACIÓN SOCIAL EL DEBER S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3589\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000347-SR-001822\",\n \"Name\" : \"Demanda Contencioso Administrativa - AGIT RJ 0818/2024\",\n \"ValidFrom\" : \"2025-01-08T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"50% debe cobrarse\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"347\",\n \"U_ClienNom\" : \"EMPRESA DE COMUNICACIÓN SOCIAL EL DEBER S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Luis Valda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3823\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Valda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000350-SR-000259\",\n \"Name\" : \"REVISION DE DOCUMENTOS DE WTC Y SMART STUDIO\",\n \"ValidFrom\" : \"2020-06-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 7200.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"350\",\n \"U_ClienNom\" : \"WILFRED HOEDT\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-06-11T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Inmobiliario\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 2072,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000351-SR-000260\",\n \"Name\" : \"CONSTITUCION DE GARANTIA HIPOTECARIA\",\n \"ValidFrom\" : \"2020-06-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1350.0,\n \"U_Comentarios\" : \"El pago es 30% al comienzo y 70% al final del servicio.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"351\",\n \"U_ClienNom\" : \"AGCO AMERICA DO SUL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-06-12T00:00:00Z\",\n \"U_AreaProyecto\" : \"Civil (Contratación, informes y otros)\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 2073,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000355-SR-000994\",\n \"Name\" : \"Informe Tributario - Exportación de Servicios\",\n \"ValidFrom\" : \"2024-02-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"355\",\n \"U_ClienNom\" : \"DIGITAL HARBOR INTERNATIONAL S.R.L\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Luis Valda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2292\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Valda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000359-SR-000266\",\n \"Name\" : \"Arrendamiento Oficinas\",\n \"ValidFrom\" : \"2020-08-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"Ver honorarios con Andres Moreno\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"359\",\n \"U_ClienNom\" : \"Embajada de Canadá\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-08-09T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Inmobiliario\",\n \"U_AbogadoEncargado\" : \"Daniel Marcelo Arredondo Zelada\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"332\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Daniel Marcelo Arredondo Zelada\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : 2207,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:10-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:10-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=980\u0026%24top=20 | Status: 200 | Duration: 114.2541ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:10 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000359-SR-001241\",\n \"Name\" : \"INFORME - DERECHOS LABORAL POR CONTRATACION - PLAZO 3 AÑOS\",\n \"ValidFrom\" : \"2024-05-17T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Se cobrará honorarios una vez remitido el informe/100% Final\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"359\",\n \"U_ClienNom\" : \"Embajada de Canadá\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Natalio Eduardo Zegarra Ribera\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2974\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Natalio Eduardo Zegarra Ribera\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000360-SR-000272\",\n \"Name\" : \"Honorarios por constitución de una S.R.L. y liquidación de Cooperativa\",\n \"ValidFrom\" : \"2020-08-18T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 4000.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"360\",\n \"U_ClienNom\" : \"COOPERATIVA DE SERVICIOS DE VIAJES LAURETANA R L\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-08-18T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Andrés Moreno\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"268\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andrés Moreno\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2219,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000361-SR-001099\",\n \"Name\" : \"Tenencia de Registros Sanitarios por año USD. 450\",\n \"ValidFrom\" : \"2024-03-04T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"361\",\n \"U_ClienNom\" : \"regulatory advisors S.A.S.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Registros Sanitarios-Regul.\",\n \"U_AbogadoEncargado\" : \"Fernando Jose Sanchez Peña Von Nagy\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2631\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Jose Sanchez Peña Von Nagy\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000362-SR-000278\",\n \"Name\" : \"CONSTITUCION ENTIDAD SIN FINES DE LUCRO\",\n \"ValidFrom\" : \"2020-08-31T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 3000.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"362\",\n \"U_ClienNom\" : \"CAMARA BOLIVIANA DE COMERCIO ELECTRONICO Y STARTUPS (CABOCES)\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-08-31T00:00:00Z\",\n \"U_AreaProyecto\" : \"Civil (Contratación, informes y otros)\",\n \"U_AbogadoEncargado\" : \"Luis Moreno Gutierrez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Moreno Gutierrez\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 2238,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000363-SR-000279\",\n \"Name\" : \"Servicios legales integrales generales\",\n \"ValidFrom\" : \"2020-09-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"363\",\n \"U_ClienNom\" : \"AVICONS SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa por hora\",\n \"U_FechaCreacionP\" : \"2020-09-01T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : 2240,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000367-SR-001283\",\n \"Name\" : \"Servicio de Representación Legal Mensual\",\n \"ValidFrom\" : \"2024-04-04T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"(1) Del monto pagado corresponden 2000 para Gonzalo Crespo Urquizu.\\r(2) Debe cobrarse a Sacyr desde\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"367\",\n \"U_ClienNom\" : \"SACYR INDUSTRIAL BOLIVIA SIB SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Contratación Pública\",\n \"U_AbogadoEncargado\" : \"Fernando Landa\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2822\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Landa\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000367-SR-001298\",\n \"Name\" : \"Representacion Legal Mensual (FM)\",\n \"ValidFrom\" : \"2024-06-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"367\",\n \"U_ClienNom\" : \"SACYR INDUSTRIAS BOLIVIA SIB SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Contratación Pública\",\n \"U_AbogadoEncargado\" : \"Carlos Fernando Landa Alejandro\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3068\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Carlos Fernando Landa Alejandro\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000368-SR-000281\",\n \"Name\" : \"SERVICIO PRO BONO\",\n \"ValidFrom\" : \"2020-09-18T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"SERVICIOS LEGALES QUE PRESTARA EL ESTUDIO AD HONOREM CON AUTORIZACIÓN DEL DR. REMIRO MORENO Y DR. A\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"368\",\n \"U_ClienNom\" : \"ALDEAS INFANTILES SOS INTERNACIONAL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-09-18T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"172\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Natalio Zegarra\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : 2270,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000369-SR-000808\",\n \"Name\" : \"PROCESO DE COBRO H N PLAZA HOTEL SRL\",\n \"ValidFrom\" : \"2020-10-05T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 3500.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"369\",\n \"U_ClienNom\" : \"MUGEBUSCH\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2020-10-05T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Penal\",\n \"U_AbogadoEncargado\" : \"Delfor Zapata Avendaño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Delfor Zapata Avendaño\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa por hitos\",\n \"U_CodAnterior\" : 2300,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000369-SR-000817\",\n \"Name\" : \"PROCESO DE COBRO H N PLAZA HOTEL SRL CASO 2\",\n \"ValidFrom\" : \"2021-07-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 875.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"369\",\n \"U_ClienNom\" : \"MUGEBUSCH\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2021-07-21T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Penal\",\n \"U_AbogadoEncargado\" : \"Delfor Zapata Avendaño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Delfor Zapata Avendaño\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa por hitos\",\n \"U_CodAnterior\" : 2853,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000371-SR-000087\",\n \"Name\" : \"DIVERSITY COMPLIANCE REGISTER\",\n \"ValidFrom\" : \"2019-04-16T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"Consultar honorarios con AMG\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"371\",\n \"U_ClienNom\" : \"CUMMINS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-04-16T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Laboral y de Seguridad Social\",\n \"U_AbogadoEncargado\" : \"Daniel Marcelo Arredondo Zelada\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Daniel Marcelo Arredondo Zelada\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 1310,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000371-SR-000840\",\n \"Name\" : \"NUREJ 204059956 - Patrocino Proceso Contencioso\",\n \"ValidFrom\" : \"2022-08-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 800.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"371\",\n \"U_ClienNom\" : \"Distribuidora Cummins S.A. Sucursal Bolivia\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2022-08-22T00:00:00Z\",\n \"U_AreaProyecto\" : \"Litigios\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"1282\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 3546,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000371-SR-000841\",\n \"Name\" : \"NUREJ 204026187 - Patrocinio Proceso Contencioso\",\n \"ValidFrom\" : \"2022-08-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 800.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"371\",\n \"U_ClienNom\" : \"Distribuidora Cummins S.A. Sucursal Bolivia\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2022-08-22T00:00:00Z\",\n \"U_AreaProyecto\" : \"Litigios\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"1283\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 3547,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000371-SR-000842\",\n \"Name\" : \"NUREJ 204026168 - Patrocinio Proceso Contencioso\",\n \"ValidFrom\" : \"2022-08-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 800.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"371\",\n \"U_ClienNom\" : \"Distribuidora Cummins S.A. Sucursal Bolivia\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2022-08-22T00:00:00Z\",\n \"U_AreaProyecto\" : \"Litigios\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"1284\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 3548,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000371-SR-000843\",\n \"Name\" : \"NUREJ 204026176 - Proceso Contencioso\",\n \"ValidFrom\" : \"2022-08-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 800.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"371\",\n \"U_ClienNom\" : \"Distribuidora Cummins S.A. Sucursal Bolivia\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2022-08-22T00:00:00Z\",\n \"U_AreaProyecto\" : \"Litigios\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"1285\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 3549,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000371-SR-000856\",\n \"Name\" : \"NUREJ 203994990 - Patrocinio Proceso Contencioso - Contrato 2256/2019\",\n \"ValidFrom\" : \"2023-01-17T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 4400.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"371\",\n \"U_ClienNom\" : \"Distribuidora Cummins S.A. Sucursal Bolivia\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2023-01-17T00:00:00Z\",\n \"U_AreaProyecto\" : \"Litigios\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"1286\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 3809,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000372-SR-000593\",\n \"Name\" : \"Observación Aumento de Capital ASFI\",\n \"ValidFrom\" : \"2023-03-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 500.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"372\",\n \"U_ClienNom\" : \"AESA RATINGS S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-03-02T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der.Mercantil-Banca\u0026Finanzas\",\n \"U_AbogadoEncargado\" : \"Teddy Mercado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"163\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Teddy Mercado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3997,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000372-SR-000985\",\n \"Name\" : \"Precios de Transferencia al 31.12.2023\",\n \"ValidFrom\" : \"2024-01-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Se debe facturar 50% inicio y el 50% final\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"372\",\n \"U_ClienNom\" : \"AESA RATINGS S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Edwin Rodrigo Burgos Fernandez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"1509\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Edwin Rodrigo Burgos Fernandez\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000375-SR-000981\",\n \"Name\" : \"Casos y Proyectos Flia. Moreno\",\n \"ValidFrom\" : \"2024-01-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"375\",\n \"U_ClienNom\" : \"MORENO BALDIVIESO SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"Limbert Alfredo Chalco Herrera\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"1504\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Limbert Alfredo Chalco Herrera\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000375-SR-001000\",\n \"Name\" : \"COSTOS LABORALES\",\n \"ValidFrom\" : \"2024-01-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"375\",\n \"U_ClienNom\" : \"MORENO BALDIVIESO SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Back Office\",\n \"U_AbogadoEncargado\" : \"Limbert Alfredo Chalco Herrera\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2298\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Limbert Alfredo Chalco Herrera\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:10-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:10-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=1000\u0026%24top=20 | Status: 200 | Duration: 90.9903ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:10 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000375-SR-001001\",\n \"Name\" : \"Gastos Administartivos (FM)\",\n \"ValidFrom\" : \"2024-01-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"375\",\n \"U_ClienNom\" : \"MORENO BALDIVIESO SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Back Office\",\n \"U_AbogadoEncargado\" : \"Limbert Alfredo Chalco Herrera\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2299\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Limbert Alfredo Chalco Herrera\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000375-SR-001066\",\n \"Name\" : \"Tiempo de espera en las instituciones de un proyecto.\",\n \"ValidFrom\" : \"2024-01-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"375\",\n \"U_ClienNom\" : \"MORENO BALDIVIESO SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Back Office\",\n \"U_AbogadoEncargado\" : \"Limbert Alfredo Chalco Herrera\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"1356\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Limbert Alfredo Chalco Herrera\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000375-SR-001067\",\n \"Name\" : \"Reuniones de coordinación interna que no correspodan a un cliente específico\",\n \"ValidFrom\" : \"2024-01-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"375\",\n \"U_ClienNom\" : \"MORENO BALDIVIESO SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Back Office\",\n \"U_AbogadoEncargado\" : \"Limbert Alfredo Chalco Herrera\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"1357\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Limbert Alfredo Chalco Herrera\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000375-SR-001068\",\n \"Name\" : \"Generación documentación (fotocopias, escanear, etc.) para un proyecto\",\n \"ValidFrom\" : \"2024-01-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"375\",\n \"U_ClienNom\" : \"MORENO BALDIVIESO SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Back Office\",\n \"U_AbogadoEncargado\" : \"Limbert Alfredo Chalco Herrera\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"1358\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Limbert Alfredo Chalco Herrera\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000375-SR-001069\",\n \"Name\" : \"Generación documentación interna que no sea de cliente (fotocopias, escanear, etc.)\",\n \"ValidFrom\" : \"2024-01-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"375\",\n \"U_ClienNom\" : \"MORENO BALDIVIESO SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Back Office\",\n \"U_AbogadoEncargado\" : \"Limbert Alfredo Chalco Herrera\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"1359\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Limbert Alfredo Chalco Herrera\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000375-SR-001070\",\n \"Name\" : \"Tareas comerciales de ventas (Networking, reuniones con clientes actuales o potenciales, presencia e\",\n \"ValidFrom\" : \"2024-01-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"375\",\n \"U_ClienNom\" : \"MORENO BALDIVIESO SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Back Office\",\n \"U_AbogadoEncargado\" : \"Limbert Alfredo Chalco Herrera\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"1360\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Limbert Alfredo Chalco Herrera\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000375-SR-001071\",\n \"Name\" : \"Tareas de posicionamiento. (Generación de contenido para redes, artículos, revistas, reseñas, tes\",\n \"ValidFrom\" : \"2024-01-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"375\",\n \"U_ClienNom\" : \"MORENO BALDIVIESO SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Back Office\",\n \"U_AbogadoEncargado\" : \"Limbert Alfredo Chalco Herrera\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"1361\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Limbert Alfredo Chalco Herrera\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000375-SR-001072\",\n \"Name\" : \"Tareas administrativas (Revisión de horas de los proyectos, rendición de cuentas, evaluaciones de\",\n \"ValidFrom\" : \"2024-01-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"375\",\n \"U_ClienNom\" : \"MORENO BALDIVIESO SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Back Office\",\n \"U_AbogadoEncargado\" : \"Limbert Alfredo Chalco Herrera\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"1362\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Limbert Alfredo Chalco Herrera\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000375-SR-001073\",\n \"Name\" : \"Reuniones de coordinación interna\",\n \"ValidFrom\" : \"2024-01-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"375\",\n \"U_ClienNom\" : \"MORENO BALDIVIESO SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Back Office\",\n \"U_AbogadoEncargado\" : \"Limbert Alfredo Chalco Herrera\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"1363\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Limbert Alfredo Chalco Herrera\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000375-SR-001074\",\n \"Name\" : \"Capacitaciones internas o externas.\",\n \"ValidFrom\" : \"2024-01-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"375\",\n \"U_ClienNom\" : \"MORENO BALDIVIESO SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Back Office\",\n \"U_AbogadoEncargado\" : \"Limbert Alfredo Chalco Herrera\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"1364\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Limbert Alfredo Chalco Herrera\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000375-SR-001075\",\n \"Name\" : \"Eventos internos de la firma (Festejos por día de la madre, del abogado, del padre, entre otros)\",\n \"ValidFrom\" : \"2024-01-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"375\",\n \"U_ClienNom\" : \"MORENO BALDIVIESO SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Back Office\",\n \"U_AbogadoEncargado\" : \"Limbert Alfredo Chalco Herrera\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"1365\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Limbert Alfredo Chalco Herrera\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000375-SR-001118\",\n \"Name\" : \"Servicios a clientes potenciales (generación de propuestas, trabajo operativo)\",\n \"ValidFrom\" : \"2024-03-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"375\",\n \"U_ClienNom\" : \"MORENO BALDIVIESO SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Back Office\",\n \"U_AbogadoEncargado\" : \"Limbert Alfredo Chalco Herrera\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2691\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Limbert Alfredo Chalco Herrera\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000375-SR-001236\",\n \"Name\" : \"Proyectos internos para la firma.\",\n \"ValidFrom\" : \"2024-05-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"375\",\n \"U_ClienNom\" : \"MORENO BALDIVIESO SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Back Office\",\n \"U_AbogadoEncargado\" : \"Limbert Alfredo Chalco Herrera\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2968\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Limbert Alfredo Chalco Herrera\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000375-SR-001249\",\n \"Name\" : \"Programa MB Women\",\n \"ValidFrom\" : \"2024-05-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"375\",\n \"U_ClienNom\" : \"MORENO BALDIVIESO SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Back Office\",\n \"U_AbogadoEncargado\" : \"Ines Ayala\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2994\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ines Ayala\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000375-SR-001268\",\n \"Name\" : \"Capacitaciones internas o externas.\",\n \"ValidFrom\" : \"2024-06-06T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"CAPACITACIÓN\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"375\",\n \"U_ClienNom\" : \"MORENO BALDIVIESO SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Agronegocios\",\n \"U_AbogadoEncargado\" : null,\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3027\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Teddy Alberto Mercado Carrion\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000375-SR-001286\",\n \"Name\" : \"Capacitación TM\",\n \"ValidFrom\" : \"2024-06-14T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Capacitaciones\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"375\",\n \"U_ClienNom\" : \"MORENO BALDIVIESO SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Back Office\",\n \"U_AbogadoEncargado\" : \"Ingrid Hurtado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3055\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ingrid Hurtado\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000375-SR-001348\",\n \"Name\" : \"HORAS POST VENTA-CLIENTES\",\n \"ValidFrom\" : \"2024-07-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"375\",\n \"U_ClienNom\" : \"MORENO BALDIVIESO SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Back Office\",\n \"U_AbogadoEncargado\" : \"Limbert Alfredo Chalco Herrera\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3126\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Limbert Alfredo Chalco Herrera\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000375-SR-001625\",\n \"Name\" : \"Asesoría Legal - EQUIPO CONTABLE\",\n \"ValidFrom\" : \"2024-10-08T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Asesoria Legal a clientes no recurrentes.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"375\",\n \"U_ClienNom\" : \"MORENO BALDIVIESO SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Marcelo Dávila\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"3478\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Marcelo Dávila\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000375-SR-001690\",\n \"Name\" : \"PROYECTOS INTERNOS SRL,SC,REGULATORIOS\",\n \"ValidFrom\" : \"2024-10-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"375\",\n \"U_ClienNom\" : \"MORENO BALDIVIESO SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Rodolfo Cachambi\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3600\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rodolfo Cachambi\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000375-SR-001691\",\n \"Name\" : \"Casos y proyectos Dr. Ramiro Moreno\",\n \"ValidFrom\" : \"2024-10-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"375\",\n \"U_ClienNom\" : \"MORENO BALDIVIESO SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Back Office\",\n \"U_AbogadoEncargado\" : \"Rodolfo Cachambi\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3601\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : null,\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:10-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:10-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=1020\u0026%24top=20 | Status: 200 | Duration: 120.0954ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:11 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000376-SR-000810\",\n \"Name\" : \"COBRANZA ELECTROINGENIERIA - EJECUCION POLIZAS ARBOL\",\n \"ValidFrom\" : \"2020-11-10T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 15000.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"376\",\n \"U_ClienNom\" : \"CREDINFORM\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2020-11-10T00:00:00Z\",\n \"U_AreaProyecto\" : \"Arbitraje\",\n \"U_AbogadoEncargado\" : \"Andres Moreno Gutierrez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andres Moreno Gutierrez\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa por hitos\",\n \"U_CodAnterior\" : 2346,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000376-SR-000852\",\n \"Name\" : \"PROCESO CREDINFORM VS. ELECTROINGENIERIA SA\",\n \"ValidFrom\" : \"2022-11-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 4000.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"376\",\n \"U_ClienNom\" : \"CREDINFORM\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2022-11-15T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Andres Moreno Gutierrez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andres Moreno Gutierrez\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa por hitos\",\n \"U_CodAnterior\" : 3713,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000376-SR-000883\",\n \"Name\" : \"Arbitraje ad hoc contra Electroingenieria SA\",\n \"ValidFrom\" : \"2023-09-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 36785.0,\n \"U_Comentarios\" : \"Existe Honorarios Medidas Cautelares por un valor de USD 51.730 con un primer pago de USD 15.500 y s\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"376\",\n \"U_ClienNom\" : \"Credinform\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2023-09-21T00:00:00Z\",\n \"U_AreaProyecto\" : \"Arbitraje\",\n \"U_AbogadoEncargado\" : \"Andrés Moreno\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"1280\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andrés Moreno\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 4377,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000376-SR-001835\",\n \"Name\" : \"Defensa Legal Juicio Ordinario Electroingeniería\",\n \"ValidFrom\" : \"2025-01-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"376\",\n \"U_ClienNom\" : \"Credinform\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Litigios\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3846\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000378-SR-000303\",\n \"Name\" : \"Consulta tributaria - Braskem Argentina\",\n \"ValidFrom\" : \"2020-11-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1724.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"378\",\n \"U_ClienNom\" : \"BARREIRO OLIVA DE LUCA NICASTRO\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-11-30T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Andres Moreno Gutierrez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"230\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andres Moreno Gutierrez\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2380,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000378-SR-001142\",\n \"Name\" : \"Terminacion anticipada de contrato de distribucion ASICS\",\n \"ValidFrom\" : \"2024-03-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"378\",\n \"U_ClienNom\" : \"BARREIRO OLIVA DE LUCA JACA NICASTRO\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Andres Moreno Gutierrez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2745\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andres Moreno Gutierrez\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000380-SR-001675\",\n \"Name\" : \"Preparación, elaboración actas asamblea extraordinaria revocatoria poderes nuevo representante leg\",\n \"ValidFrom\" : \"2024-10-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Según correo de Dr. Carlos Merino de fecha 03-12-24\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"380\",\n \"U_ClienNom\" : \"RADIO FIDES LA PAZ SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Carlos Merino\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3582\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Carlos Merino\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000382-SR-000311\",\n \"Name\" : \"Reconocimiento de Deuda y Adenda\",\n \"ValidFrom\" : \"2020-12-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 603.450,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"382\",\n \"U_ClienNom\" : \"Susana Barbery\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-12-15T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der.Civil\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"730\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2412,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000383-SR-000927\",\n \"Name\" : \"PROYECTO SIN INFORMACION\",\n \"ValidFrom\" : \"2020-12-18T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"383\",\n \"U_ClienNom\" : \"EYAVATECH SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2020-12-18T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andres Moreno Gutierrez\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 2415,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000384-SR-000321\",\n \"Name\" : \"REPRESENTACION LEGAL MENSUAL (FM)\",\n \"ValidFrom\" : \"2021-01-04T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1250.0,\n \"U_Comentarios\" : \"aplicable a partir de la creación de la SRL\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"384\",\n \"U_ClienNom\" : \"SCALA HIGHER EDUCATION SC\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-01-04T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Teddy Alberto Mercado Carrion\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Teddy Alberto Mercado Carrion\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 2438,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000385-SR-001153\",\n \"Name\" : \"Transferencia bien inmueble Zona Achumani\",\n \"ValidFrom\" : \"2024-04-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"385\",\n \"U_ClienNom\" : \"RADIO FIDES ACTIVOS SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Civil\",\n \"U_AbogadoEncargado\" : \"Carlos Merino Troche\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2776\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Carlos Merino Troche\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000385-SR-001154\",\n \"Name\" : \"Regularizacion de inmueble El Alto (Clínica Fides)\",\n \"ValidFrom\" : \"2024-04-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"385\",\n \"U_ClienNom\" : \"RADIO FIDES ACTIVOS SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Civil\",\n \"U_AbogadoEncargado\" : \"Carlos Merino Troche\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2777\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Carlos Merino Troche\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000385-SR-001200\",\n \"Name\" : \"Transferencia de Inmueble\",\n \"ValidFrom\" : \"2024-04-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"385\",\n \"U_ClienNom\" : \"RADIO FIDES ACTIVOS SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Civil\",\n \"U_AbogadoEncargado\" : \"Carlos Merino Troche\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2907\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Carlos Merino Troche\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000385-SR-001676\",\n \"Name\" : \"Preparación, elaboración actas asamblea extraordinaria revocatoria poderes nuevo representante leg\",\n \"ValidFrom\" : \"2024-10-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Según correo de Dr. Carlos Merino de fecha 03-12-24\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"385\",\n \"U_ClienNom\" : \"RADIO FIDES ACTIVOS SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Carlos Merino\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3583\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Carlos Merino\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000385-SR-001757\",\n \"Name\" : \"Transferencia cuotas de capital, elaboración de acta, preparación de minuta, revisión protocolos\",\n \"ValidFrom\" : \"2024-12-04T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Según correo de Dr. Carlos Merino de fecha 03-12-24\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"385\",\n \"U_ClienNom\" : \"RADIO FIDES ACTIVOS SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Carlos Merino\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3726\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Carlos Merino\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000388-SR-000656\",\n \"Name\" : \"Defensa Tributaria - Vista de Cargo\",\n \"ValidFrom\" : \"2023-06-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 5500.0,\n \"U_Comentarios\" : \"El Honorario es 605 al inicio del trabajo 28/06/2023 y 40% al final. El honorario solo incluye hasta\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"388\",\n \"U_ClienNom\" : \"PREMONOR BOLIVIA S.R.L\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-06-29T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Luis Valda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"484\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Valda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4205,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000388-SR-000990\",\n \"Name\" : \"Proyecto de Disolución y Liquidación\",\n \"ValidFrom\" : \"2024-01-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"CANCELARON EL SERVICIO_ NO SE DIO EL SERVICIO, NO SE FACTURO, NI COBRO NADA.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"388\",\n \"U_ClienNom\" : \"PREMONOR BOLIVIA S.R.L\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2285\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000388-SR-001871\",\n \"Name\" : \"Cambio de denominación, actualización matrícula de comercio\",\n \"ValidFrom\" : \"2025-02-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Asunto regularizando el pago ND 024/2025\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"388\",\n \"U_ClienNom\" : \"PREMONOR BOLIVIA S.R.L\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3888\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000389-SR-000327\",\n \"Name\" : \"Servicio Mensual por horas\",\n \"ValidFrom\" : \"2021-01-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 8000.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"389\",\n \"U_ClienNom\" : \"BOLÍVAR ADMINISTRACIÓN, INVERSIONES y SERVICIOS ASOCIADOS S.R.L. (BAISA S.R.L.),\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-01-22T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"Andrés Moreno\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"232\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andrés Moreno\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 2484,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000389-SR-000345\",\n \"Name\" : \"Construcción de Centro de Alto Rendimiento CAR STA CRUZ\",\n \"ValidFrom\" : \"2021-04-10T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 24000.0,\n \"U_Comentarios\" : \"DIVIDIVO EN 8 CUOTAS DE USD 3000\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"389\",\n \"U_ClienNom\" : \"BOLÍVAR ADMINISTRACIÓN, INVERSIONES y SERVICIOS ASOCIADOS S.R.L. (BAISA S.R.L.),\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-04-10T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"Teddy Mercado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"233\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Teddy Mercado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 2609,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:11-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:11-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=1040\u0026%24top=20 | Status: 200 | Duration: 93.6202ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:11 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000389-SR-000391\",\n \"Name\" : \"Due Diligencia\",\n \"ValidFrom\" : \"2021-06-23T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 26000.0,\n \"U_Comentarios\" : \"Facturar el pimer 50 % a los 15 dias despues de fiirmada la iguala\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"389\",\n \"U_ClienNom\" : \"BOLÍVAR ADMINISTRACIÓN, INVERSIONES y SERVICIOS ASOCIADOS S.R.L. (BAISA S.R.L.),\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-06-23T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Andrés Moreno\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"234\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andrés Moreno\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2751,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000389-SR-000931\",\n \"Name\" : \"Construcción de Centro de Alto Rendimiento CAR LP\",\n \"ValidFrom\" : \"2021-04-10T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 21000.0,\n \"U_Comentarios\" : \"DIVIDIDO EN 7 CUOTAS DE USD 3000\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"389\",\n \"U_ClienNom\" : \"BOLÍVAR ADMINISTRACIÓN, INVERSIONES y SERVICIOS ASOCIADOS S.R.L. (BAISA S.R.L.),\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-04-10T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Andres Moreno Gutierrez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"1424\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andres Moreno Gutierrez\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2608,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000389-SR-002075\",\n \"Name\" : \"Servicios Legales Mensuales\",\n \"ValidFrom\" : \"2025-06-17T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Continuar enviando la factura a las mismas personas\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"389\",\n \"U_ClienNom\" : \"BOLÍVAR ADMINISTRACIÓN, INVERSIONES y SERVICIOS ASOCIADOS S.R.L. (BAISA S.R.L.),\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Teddy Mercado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"4467\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Teddy Mercado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000392-SR-000668\",\n \"Name\" : \"SERVICIOS LEGALES INTEGRALES\",\n \"ValidFrom\" : \"2023-07-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"392\",\n \"U_ClienNom\" : \"AUMENTUMTECH BOLIVIA SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa por hora\",\n \"U_FechaCreacionP\" : \"2023-07-24T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : 4230,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000392-SR-001335\",\n \"Name\" : \"Drafting and Revoke POAs\",\n \"ValidFrom\" : \"2024-07-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"392\",\n \"U_ClienNom\" : \"AUMENTUMTECH BOLIVIA SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Alvaro Araoz Ardaya\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"3110\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Alvaro Araoz Ardaya\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000392-SR-001344\",\n \"Name\" : \"Reestructuración de personal\",\n \"ValidFrom\" : \"2024-07-08T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Se facturará USD390 por cada trabajador retirado (total 20 personas)\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"392\",\n \"U_ClienNom\" : \"AUMENTUMTECH BOLIVIA SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"3122\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000392-SR-001589\",\n \"Name\" : \"Modificación Razón Social\",\n \"ValidFrom\" : \"2024-09-23T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Se facturará al cliente el 100% del honorario convenido. Sin embargo aunque el asunto esté totalme\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"392\",\n \"U_ClienNom\" : \"AUMENTUMTECH BOLIVIA SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"3441\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000392-SR-001722\",\n \"Name\" : \"REPOSICIÓN DOCUMENTOS LIBROS SOCIETARIOS\",\n \"ValidFrom\" : \"2024-11-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"392\",\n \"U_ClienNom\" : \"AUMENTUMTECH BOLIVIA SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"3684\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000392-SR-001804\",\n \"Name\" : \"Contrato laboral y NDA\",\n \"ValidFrom\" : \"2024-12-23T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"392\",\n \"U_ClienNom\" : \"AUMENTUMTECH BOLIVIA SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"3792\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000392-SR-001876\",\n \"Name\" : \"Informe Analisis Payoneer Service\",\n \"ValidFrom\" : \"2025-02-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"392\",\n \"U_ClienNom\" : \"AUMENTUMTECH BOLIVIA SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Back Office\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"3901\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000392-SR-001879\",\n \"Name\" : \"Representación Legal Socios/Shareholders\",\n \"ValidFrom\" : \"2025-02-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Por favor facturar ya este 20 de Febrero por el servicio brindado en enero 2025. Gracias\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"392\",\n \"U_ClienNom\" : \"AUMENTUMTECH BOLIVIA SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"3904\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000392-SR-001986\",\n \"Name\" : \"Informe Legal Incremento Salarial\",\n \"ValidFrom\" : \"2025-04-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"En la facturación SOLO debe decir: Informe Legal\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"392\",\n \"U_ClienNom\" : \"AUMENTUMTECH BOLIVIA SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"4214\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000392-SR-002051\",\n \"Name\" : \"Contratos Modelo Adecuación de Operaciones\",\n \"ValidFrom\" : \"2025-05-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"392\",\n \"U_ClienNom\" : \"AUMENTUMTECH BOLIVIA SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"4362\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000394-SR-000935\",\n \"Name\" : \"CONSTITUCION DE SA (GRUPO EL DEBER)\",\n \"ValidFrom\" : \"2021-02-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"No se le cobrará honorarios por este tema, pues ya está incluido el honorario dentro de otros proyectos del Grupo EL DEBER.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"394\",\n \"U_ClienNom\" : \"CONTACTMEDIA COMUNICACIONES S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : \"2021-02-24T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Teddy Alberto Mercado Carrion\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 2527,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000394-SR-000936\",\n \"Name\" : \"Outsourcing (FM)\",\n \"ValidFrom\" : \"2021-04-06T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 402.30,\n \"U_Comentarios\" : \"Se acordó USD.350 netos de IVA, por lo que para la facturación corresponde a USD.402.30 equivalente a Bs.2800\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"394\",\n \"U_ClienNom\" : \"CONTACTMEDIA COMUNICACIONES S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : \"2021-04-06T00:00:00Z\",\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado Ramirez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"1427\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado Ramirez\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2599,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000396-SR-000383\",\n \"Name\" : \"Divorcio\",\n \"ValidFrom\" : \"2021-06-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2000.0,\n \"U_Comentarios\" : \"Se facturó un honorario fijo de USD2.000, más un honorario porcentual una vez concluido el proceso\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"396\",\n \"U_ClienNom\" : \"Antonio Torrico Clavijo\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-06-01T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der.Civil\",\n \"U_AbogadoEncargado\" : \"Alvaro Araoz Ardaya\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"178\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Alvaro Araoz Ardaya\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2722,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000398-RE-000038\",\n \"Name\" : \"Alquiler Almacén\",\n \"ValidFrom\" : \"2021-05-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Nosotros pagamos un alquiler determinado por el depósito, y cobramos un importe mayor por el alquil\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"398\",\n \"U_ClienNom\" : \"COMERCIALIZADORA IMMUNOTEC BOLIVIA S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Registros Sanitarios-Regul.\",\n \"U_AbogadoEncargado\" : \"Fernando Jose Sanchez Peña Von Nagy\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"942\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Jose Sanchez Peña Von Nagy\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000398-SR-000483\",\n \"Name\" : \"Domicilio Sucursal Santa Cruz de la Sierra\",\n \"ValidFrom\" : \"2022-04-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 250.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"398\",\n \"U_ClienNom\" : \"COMERCIALIZADORA IMMUNOTEC BOLIVIA S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-04-11T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"255\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 3293,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000398-SR-000523\",\n \"Name\" : \"Representacion legal\",\n \"ValidFrom\" : \"2022-08-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1500.0,\n \"U_Comentarios\" : \"SE FINALIZADO EL SERVICIO. SOLICITUD MARCELO DAVILA\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"398\",\n \"U_ClienNom\" : \"COMERCIALIZADORA IMMUNOTEC BOLIVIA S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-08-24T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"Andrés Moreno\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"256\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andrés Moreno\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 3551,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000398-SR-000538\",\n \"Name\" : \"Residencia Mercosur - Julian Esteban Chica\",\n \"ValidFrom\" : \"2022-09-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 840,39.- INCLUYEN GASTOS DE TRAMITE E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"398\",\n \"U_ClienNom\" : \"COMERCIALIZADORA IMMUNOTEC BOLIVIA S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-09-30T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"257\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3610,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:11-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:11-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=1060\u0026%24top=20 | Status: 200 | Duration: 102.368ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:11 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000398-SR-000539\",\n \"Name\" : \"CEDULA DE EXTRANERO- JULIAN ESTEBAN CHICA\",\n \"ValidFrom\" : \"2022-09-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 257.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 257,83.- INCLUYEN GASTOS E IMPUESTOS DE LEY\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"398\",\n \"U_ClienNom\" : \"COMERCIALIZADORA IMMUNOTEC BOLIVIA S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-09-30T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"258\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3611,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000398-SR-000937\",\n \"Name\" : \"PRESTACIONES LEGALES\",\n \"ValidFrom\" : \"2021-01-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"398\",\n \"U_ClienNom\" : \"COMERCIALIZADORA IMMUNOTEC BOLIVIA S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-01-01T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andres Moreno Gutierrez\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000398-SR-001012\",\n \"Name\" : \"Informe legal control de asistencia\",\n \"ValidFrom\" : \"2024-02-06T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"398\",\n \"U_ClienNom\" : \"COMERCIALIZADORA IMMUNOTEC BOLIVIA S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2317\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000398-SR-001014\",\n \"Name\" : \"Elaboración de consulta Ministerio de Trabajo\",\n \"ValidFrom\" : \"2024-02-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"398\",\n \"U_ClienNom\" : \"COMERCIALIZADORA IMMUNOTEC BOLIVIA S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2319\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000398-SR-001015\",\n \"Name\" : \"Elaboración política de control de asistencia\",\n \"ValidFrom\" : \"2024-02-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"398\",\n \"U_ClienNom\" : \"COMERCIALIZADORA IMMUNOTEC BOLIVIA S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Derecho Laboral y de Seguridad Social\",\n \"U_AbogadoEncargado\" : \"Rene Claure Veizaga\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2320\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Claure Veizaga\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000398-SR-001016\",\n \"Name\" : \"Cambio de representante legal\",\n \"ValidFrom\" : \"2024-02-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"398\",\n \"U_ClienNom\" : \"COMERCIALIZADORA IMMUNOTEC BOLIVIA S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Rene Claure Veizaga\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2321\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Claure Veizaga\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000398-SR-001040\",\n \"Name\" : \"Cierre corporativo anual 2023\",\n \"ValidFrom\" : \"2024-02-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"100 % al final\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"398\",\n \"U_ClienNom\" : \"COMERCIALIZADORA IMMUNOTEC BOLIVIA S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2353\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000398-SR-001578\",\n \"Name\" : \"Elaboración de poder especial - facultades financieras\",\n \"ValidFrom\" : \"2024-09-19T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Bs. 3000 segun correo de Jose Maria Navarro de fecha 18 de febrero se edita el honorario a USD 350 f\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"398\",\n \"U_ClienNom\" : \"COMERCIALIZADORA IMMUNOTEC BOLIVIA S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"José María Navarro\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3428\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"José María Navarro\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000398-SR-001579\",\n \"Name\" : \"Revisión de contrato Panamerican Securities\",\n \"ValidFrom\" : \"2024-09-19T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"398\",\n \"U_ClienNom\" : \"COMERCIALIZADORA IMMUNOTEC BOLIVIA S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Mercantil-Banca\u0026Finanzas\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3429\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000398-SR-002006\",\n \"Name\" : \"GESTIONES DE DESVINCULACION GERENTES BOLIVIA\",\n \"ValidFrom\" : \"2025-05-06T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Facturar por favor a la finalización del servicio\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"398\",\n \"U_ClienNom\" : \"COMERCIALIZADORA IMMUNOTEC BOLIVIA S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Paul Aramayo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4280\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Paul Aramayo\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000398-SR-002017\",\n \"Name\" : \"Representacion legal\",\n \"ValidFrom\" : \"2025-05-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"398\",\n \"U_ClienNom\" : \"COMERCIALIZADORA IMMUNOTEC BOLIVIA S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"José María Navarro\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"4296\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"José María Navarro\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000398-SR-002018\",\n \"Name\" : \"Cambio de Representante Legal - Documentos Corporativos\",\n \"ValidFrom\" : \"2025-05-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"398\",\n \"U_ClienNom\" : \"COMERCIALIZADORA IMMUNOTEC BOLIVIA S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"José María Navarro\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"4297\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"José María Navarro\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000398-SR-002019\",\n \"Name\" : \"Cambio de Representante Legal - Trámites en Instituciones Públicas\",\n \"ValidFrom\" : \"2025-05-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"398\",\n \"U_ClienNom\" : \"COMERCIALIZADORA IMMUNOTEC BOLIVIA S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"José María Navarro\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"4298\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"José María Navarro\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000398-SR-002107\",\n \"Name\" : \"Otorgamiento y Revocatoria de Poder Bancario\",\n \"ValidFrom\" : \"2025-07-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"398\",\n \"U_ClienNom\" : \"COMERCIALIZADORA IMMUNOTEC BOLIVIA S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : null,\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"4513\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"José María Navarro\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000399-SR-000336\",\n \"Name\" : \"ASESORAMIENTO EN EL OTORGAMIENTO DE GARANTIA HIPOTECARIA\",\n \"ValidFrom\" : \"2021-03-03T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1350.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"399\",\n \"U_ClienNom\" : \"HELIX SEMENTES E MUDAS LTDA.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-03-03T00:00:00Z\",\n \"U_AreaProyecto\" : \"Civil (Contratación, informes y otros)\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 2541,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000400-SR-000938\",\n \"Name\" : \"INFORME LEGAL ALTERNATIVAS DE CONTRATACION DE PERSONAL EN BOLIVIA\",\n \"ValidFrom\" : \"2021-03-04T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 720.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"400\",\n \"U_ClienNom\" : \"Morgan \u0026 Morgan\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-03-04T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Laboral y de Seguridad Social\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Claure Veizaga\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 2542,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000400-SR-000939\",\n \"Name\" : \"INFORME LEGAL CARGAS TRIBUTARIAS/LABORALES/SOCIALES\",\n \"ValidFrom\" : \"2021-04-08T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 720.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"400\",\n \"U_ClienNom\" : \"Morgan \u0026 Morgan\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-04-08T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Laboral y de Seguridad Social\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Claure Veizaga\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 2606,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000404-SR-000337\",\n \"Name\" : \"Servicios legales mensuales (FM) Regional LP\",\n \"ValidFrom\" : \"2021-03-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1474.650,\n \"U_Comentarios\" : \"Por cada hora adicional es 90 horas, incluye IVA\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"404\",\n \"U_ClienNom\" : \"Copelme SA\",\n \"U_FormaCobro\" : \"Honorario tarifa retainer\",\n \"U_FechaCreacionP\" : \"2021-03-12T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"Teddy Mercado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 17,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"133\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Teddy Mercado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 2557,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000404-SR-000347\",\n \"Name\" : \"Regularización de Plano Construcción LOTE 14 Lote de 750 m2.\",\n \"ValidFrom\" : \"2021-04-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2486.0,\n \"U_Comentarios\" : \"Se realizarán dos pagos de 25% del honorario convenido, y un pago final del 50% restante al concluir.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"404\",\n \"U_ClienNom\" : \"Copelme\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-04-15T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Inmobiliario\",\n \"U_AbogadoEncargado\" : \"Alvaro Araoz Ardaya\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"284\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Alvaro Araoz Ardaya\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2623,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000404-SR-000348\",\n \"Name\" : \"Baja Tributaria VEHÍCULO CON PLACA 104-DCC en La Paz\",\n \"ValidFrom\" : \"2021-04-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1356.0,\n \"U_Comentarios\" : \"Se realizarán dos pagos de 25% del honorario convenido, y un pago final del 50% restante al concluir.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"404\",\n \"U_ClienNom\" : \"Copelme\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-04-15T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Inmobiliario\",\n \"U_AbogadoEncargado\" : \"Alvaro Araoz Ardaya\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"285\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Alvaro Araoz Ardaya\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2630,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:11-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:11-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=1080\u0026%24top=20 | Status: 200 | Duration: 101.9536ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:11 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000404-SR-000349\",\n \"Name\" : \"Regularización de Plano Construcción LOTE 15 Lote de 630 m2.\",\n \"ValidFrom\" : \"2021-04-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2486.0,\n \"U_Comentarios\" : \"Se realizarán dos pagos de 25% del honorario convenido, y un pago final del 50% restante al concluir.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"404\",\n \"U_ClienNom\" : \"Copelme\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-04-15T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Inmobiliario\",\n \"U_AbogadoEncargado\" : \"Alvaro Araoz Ardaya\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"286\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Alvaro Araoz Ardaya\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2624,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000404-SR-000350\",\n \"Name\" : \"Lote de 1.274 m2, IMELDA para saneamiento en el INRA\",\n \"ValidFrom\" : \"2021-04-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 5650.0,\n \"U_Comentarios\" : \"Se realizarán dos pagos de 25% del honorario convenido, y un pago final del 50% restante al concluir.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"404\",\n \"U_ClienNom\" : \"Copelme\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-04-15T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Inmobiliario\",\n \"U_AbogadoEncargado\" : \"Alvaro Araoz Ardaya\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"287\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Alvaro Araoz Ardaya\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2625,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000404-SR-000351\",\n \"Name\" : \"Predio de 1.209.2702 H. San Rafael. Ubicado en Santa Cruz, para saneamiento en el INRA\",\n \"ValidFrom\" : \"2021-04-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1130.0,\n \"U_Comentarios\" : \"Se realizarán pagos mensuales por 4 meses\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"404\",\n \"U_ClienNom\" : \"Copelme\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-04-15T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Inmobiliario\",\n \"U_AbogadoEncargado\" : \"Alvaro Araoz Ardaya\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"288\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Alvaro Araoz Ardaya\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2626,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000404-SR-000352\",\n \"Name\" : \"inmueble de 31.716 m2 ABUDJER EID en Apote\",\n \"ValidFrom\" : \"2021-04-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 5650.0,\n \"U_Comentarios\" : \"Se realizarán dos pagos de 25% del honorario convenido, y un pago final del 50% restante al concluir.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"404\",\n \"U_ClienNom\" : \"Copelme\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-04-15T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Inmobiliario\",\n \"U_AbogadoEncargado\" : \"Alvaro Araoz Ardaya\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"289\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Alvaro Araoz Ardaya\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2628,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000404-SR-000353\",\n \"Name\" : \"Lote C - 350m2; Lote D – 300 m2.; Lote E - 323 m2. Que solicitan ser anexados\",\n \"ValidFrom\" : \"2021-04-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 3616.0,\n \"U_Comentarios\" : \"Se realizarán dos pagos de 25% del honorario convenido, y un pago final del 50% restante al concluir.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"404\",\n \"U_ClienNom\" : \"Copelme\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-04-15T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Inmobiliario\",\n \"U_AbogadoEncargado\" : \"Alvaro Araoz Ardaya\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"290\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Alvaro Araoz Ardaya\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2629,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000404-SR-000354\",\n \"Name\" : \"Aprobación plano Lote de 5337 m2, APOTE – CASA MARÍA ANTONIETA ABS\",\n \"ValidFrom\" : \"2021-04-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 3955.0,\n \"U_Comentarios\" : \"Se realizarán dos pagos de 25% del honorario convenido, y un pago final del 50% restante al concluir.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"404\",\n \"U_ClienNom\" : \"Copelme\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-04-15T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Inmobiliario\",\n \"U_AbogadoEncargado\" : \"Alvaro Araoz Ardaya\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"291\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Alvaro Araoz Ardaya\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2631,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000404-SR-000355\",\n \"Name\" : \"Inmueble de 305m2 BALDEROMAR regularizar Derecho Propietario\",\n \"ValidFrom\" : \"2021-04-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2486.0,\n \"U_Comentarios\" : \"Se realizarán dos pagos de 25% del honorario convenido, y un pago final del 50% restante al concluir.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"404\",\n \"U_ClienNom\" : \"Copelme\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-04-15T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Inmobiliario\",\n \"U_AbogadoEncargado\" : \"Alvaro Araoz Ardaya\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"292\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Alvaro Araoz Ardaya\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2627,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000404-SR-000367\",\n \"Name\" : \"Debida Diligencia Legal Cumplimiento Reglamento RA/AEMP/NOOO9/2021\",\n \"ValidFrom\" : \"2021-04-26T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 3850.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"404\",\n \"U_ClienNom\" : \"Copelme\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-04-26T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Alvaro Araoz Ardaya\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"293\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Alvaro Araoz Ardaya\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2652,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000404-SR-000401\",\n \"Name\" : \"Compra VIVIENDA, ubicado en CALLE 3 No. S/N - CALLE 4, ZONA LOS SAUCES de la ciudad de La Paz\",\n \"ValidFrom\" : \"2021-07-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2000.0,\n \"U_Comentarios\" : \"Proyecto personal y a facturar a Charbel Mendoza\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"404\",\n \"U_ClienNom\" : \"Copelme\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-07-15T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Inmobiliario\",\n \"U_AbogadoEncargado\" : \"Alvaro Araoz Ardaya\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"294\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Alvaro Araoz Ardaya\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2795,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000404-SR-000402\",\n \"Name\" : \"Transferencia moto Guzzi Charbel Mendoza\",\n \"ValidFrom\" : \"2021-07-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 500.0,\n \"U_Comentarios\" : \"Proyecto personal y a facturar a Charbel Mendoza\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"404\",\n \"U_ClienNom\" : \"Copelme\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-07-15T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Administrativo\",\n \"U_AbogadoEncargado\" : \"Alvaro Araoz Ardaya\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"295\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Alvaro Araoz Ardaya\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2794,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000404-SR-000403\",\n \"Name\" : \"Transferencia inmueble Villa Magna Santa Cruz\",\n \"ValidFrom\" : \"2021-07-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 5000.0,\n \"U_Comentarios\" : \"Proyecto a facturar directamente a Charbel Mendoza no Copelme\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"404\",\n \"U_ClienNom\" : \"Copelme\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-07-15T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Inmobiliario\",\n \"U_AbogadoEncargado\" : \"Alvaro Araoz Ardaya\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"296\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Alvaro Araoz Ardaya\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2796,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000404-SR-000779\",\n \"Name\" : \"Acciones penales y recuperación contra Fernando Flores - Cuantía Bs.48.333\",\n \"ValidFrom\" : \"2023-11-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"Porcentaje de recuperación de deuda de 10%\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"404\",\n \"U_ClienNom\" : \"Copelme SA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-11-30T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Penal\",\n \"U_AbogadoEncargado\" : \"Teddy Mercado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"297\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Teddy Mercado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4622,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000404-SR-000780\",\n \"Name\" : \"Acciones penales y recuperación contra Omar Marquez y Antonia Vargas - Cuantía Bs.59.000\",\n \"ValidFrom\" : \"2023-11-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"Porcentaje de 10% recuperación de deuda\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"404\",\n \"U_ClienNom\" : \"Copelme SA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-11-30T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Penal\",\n \"U_AbogadoEncargado\" : \"Teddy Mercado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"298\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Teddy Mercado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4623,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000404-SR-000816\",\n \"Name\" : \"Adquisición de inmueble de 21.111,76m2 en la ciudad de EL ALTO .- LA PAZ\",\n \"ValidFrom\" : \"2021-07-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 3000.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"404\",\n \"U_ClienNom\" : \"Copelme SA\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2021-07-07T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Inmobiliario\",\n \"U_AbogadoEncargado\" : \"Teddy Mercado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"1269\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Teddy Mercado\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 2779,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000404-SR-000829\",\n \"Name\" : \"Proceso Penal contra José María Rodríguez Figueroa\",\n \"ValidFrom\" : \"2022-02-26T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 20000.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"404\",\n \"U_ClienNom\" : \"Copelme\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2022-02-26T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Penal\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"1270\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 3189,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000404-SR-000830\",\n \"Name\" : \"Proceso laboral interpuesto por los Sres. Carlos Mansilla Dorado y Gustavo Rivero Montero\",\n \"ValidFrom\" : \"2022-03-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"404\",\n \"U_ClienNom\" : \"Copelme SA\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2022-03-07T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Paul Aramayo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"1271\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Paul Aramayo\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 3198,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000404-SR-000831\",\n \"Name\" : \"Regularización Legal Lote No. 409 3.354 Mts2, Urbanización Alto de la Alianza, El Alto.\",\n \"ValidFrom\" : \"2022-04-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2645.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"404\",\n \"U_ClienNom\" : \"Copelme SA\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2022-04-13T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Inmobiliario\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"1272\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 3295,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000404-SR-000851\",\n \"Name\" : \"Proceso Civil Ejecutivo contra Walter Durán (Santa Cruz)\",\n \"ValidFrom\" : \"2022-10-27T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 350.0,\n \"U_Comentarios\" : \"Conforme a Iguala marco que tenemos suscrita con Copelme para este tipo de procesos por la demanda,\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"404\",\n \"U_ClienNom\" : \"Copelme SA\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2022-10-27T00:00:00Z\",\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"1273\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 3660,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000404-SR-000854\",\n \"Name\" : \"Arbitraje - Resolucion contrato Oscar Jorge Dorado Vega\",\n \"ValidFrom\" : \"2022-12-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1500.0,\n \"U_Comentarios\" : \"Primer pago a la suscripcion de iguala de servicios 50%, Segundo pago, al momento de la presentacion\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"404\",\n \"U_ClienNom\" : \"Copelme SA\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2022-12-09T00:00:00Z\",\n \"U_AreaProyecto\" : \"Arbitraje\",\n \"U_AbogadoEncargado\" : \"Ariel Zeballos\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"1274\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Zeballos\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 3770,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000404-SR-000857\",\n \"Name\" : \"trámite de personería jurídica FUNDACIÓN FRAME\",\n \"ValidFrom\" : \"2023-02-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2250.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"404\",\n \"U_ClienNom\" : \"Copelme SA\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2023-02-01T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der.Civil\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"1275\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 3826,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:11-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:11-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=1100\u0026%24top=20 | Status: 200 | Duration: 94.3729ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:11 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000404-SR-000866\",\n \"Name\" : \"Proceso penal Romel Siles\",\n \"ValidFrom\" : \"2023-04-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 7917.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"404\",\n \"U_ClienNom\" : \"Copelme SA\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2023-04-01T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Penal\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"1276\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 4037,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000404-SR-000867\",\n \"Name\" : \"Proceso penal Hector Sandoval Colque\",\n \"ValidFrom\" : \"2023-04-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 15500.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"404\",\n \"U_ClienNom\" : \"Copelme SA\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2023-04-01T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Penal\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"1277\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 4038,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000404-SR-000940\",\n \"Name\" : \"Servicios Legales Mensuales\",\n \"ValidFrom\" : \"2021-01-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tNO\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"PROYECTO DUPLICADO ERRONEAMENTE\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"404\",\n \"U_ClienNom\" : \"Copelme\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2021-01-01T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Carlos Fernando Landa Alejandro\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"1431\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Carlos Fernando Landa Alejandro\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000404-SR-000941\",\n \"Name\" : \"PROCESO JUDICIAL Recuperación deuda Javier Cáceres Parada\",\n \"ValidFrom\" : \"2022-07-28T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"El seguimiento mensual debe cobrarse por 24 meses, a menos que el proceso se concluya antes.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"404\",\n \"U_ClienNom\" : \"Copelme SA\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2022-07-28T00:00:00Z\",\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"1495\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 3510,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000404-SR-000942\",\n \"Name\" : \"Reposición de placa 751-RZL Motocicleta\",\n \"ValidFrom\" : \"2023-08-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1000.0,\n \"U_Comentarios\" : \"La facturación debe ser a nombre de personal natural correo de Alicia Rios de 23.ago.2023: Estimado Marcelo, envió los datos para la factura del servicio de asesoría legal realizado por el Sr. Araoz.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"404\",\n \"U_ClienNom\" : \"Copelme\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2023-08-24T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Alvaro Araoz Ardaya\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"1432\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Alvaro Araoz Ardaya\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4282,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000404-SR-001147\",\n \"Name\" : \"Servicios legales mensuales (FM) Regional SC\",\n \"ValidFrom\" : \"2024-03-28T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"404\",\n \"U_ClienNom\" : \"Copelme SA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2765\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000404-SR-001148\",\n \"Name\" : \"Servicios legales mensuales (FM) Regional CBBA\",\n \"ValidFrom\" : \"2024-03-28T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"404\",\n \"U_ClienNom\" : \"Copelme SA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"2766\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000404-SR-001329\",\n \"Name\" : \"Seguimiento Caso DISPEL\",\n \"ValidFrom\" : \"2024-07-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"404\",\n \"U_ClienNom\" : \"Copelme SA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Teddy Mercado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3104\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Teddy Mercado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000404-SR-001330\",\n \"Name\" : \"Seguimiento de procesos - caso CODIAPEL\",\n \"ValidFrom\" : \"2024-07-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"404\",\n \"U_ClienNom\" : \"Copelme SA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Teddy Mercado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3105\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Teddy Mercado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000404-SR-001404\",\n \"Name\" : \"Registro de cambio de denominación de COPELME respecto a bien inmueble en el PADI Santa Cruz\",\n \"ValidFrom\" : \"2024-07-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"404\",\n \"U_ClienNom\" : \"Copelme SA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Inmobiliario\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3216\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000404-SR-001714\",\n \"Name\" : \"Generación Legalizaciones Estatuto y Poder Gerente General\",\n \"ValidFrom\" : \"2024-11-06T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"404\",\n \"U_ClienNom\" : \"Copelme SA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Civil\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"3675\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000404-SR-001728\",\n \"Name\" : \"Compraventa Lote 10 Los Batos Urubó\",\n \"ValidFrom\" : \"2024-11-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"404\",\n \"U_ClienNom\" : \"Copelme SA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Inmobiliario\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3691\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000404-SR-001855\",\n \"Name\" : \"Adquisición Compra venta vehículo SKODA\",\n \"ValidFrom\" : \"2025-01-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"404\",\n \"U_ClienNom\" : \"Copelme SA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"3868\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000404-SR-001856\",\n \"Name\" : \"Tramitación de Exención del IUE ante Impuestos Nacionales\",\n \"ValidFrom\" : \"2025-01-31T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"404\",\n \"U_ClienNom\" : \"Copelme SA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Administrativo\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"3869\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000404-SR-001891\",\n \"Name\" : \"PROCESO EJECUTIVO\",\n \"ValidFrom\" : \"2025-02-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Se acuerda a su vez un honorario variable (sucess fee) equivalente al 8% del monto o valor total efe\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"404\",\n \"U_ClienNom\" : \"Copelme SA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : null,\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3917\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Mauricio Aguirre\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000404-SR-001900\",\n \"Name\" : \"Proceso ejecutivo contra EFICAPEL S.R.L.\",\n \"ValidFrom\" : \"2025-02-28T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Un honorario variable (sucess fee) equivalente al 8% del monto o valor total efectivamente recuperad\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"404\",\n \"U_ClienNom\" : \"Copelme SA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Mauricio Aguirre\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3930\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Mauricio Aguirre\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000404-SR-001976\",\n \"Name\" : \"Política de Descuentos por Retrasos\",\n \"ValidFrom\" : \"2025-04-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"404\",\n \"U_ClienNom\" : \"Copelme SA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"4203\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000404-SR-001984\",\n \"Name\" : \"Arbitraje Goldi Arambel Moreno\",\n \"ValidFrom\" : \"2025-04-17T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"404\",\n \"U_ClienNom\" : \"Copelme SA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Arbitraje\",\n \"U_AbogadoEncargado\" : \"Pamela Muñoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"4212\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Pamela Muñoz\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000404-SR-001996\",\n \"Name\" : \"Conciliación Civil contra Omar Marquez y Antonia Vargas\",\n \"ValidFrom\" : \"2025-04-28T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Facturar a Copelme, ya se presento la Conciliación Judicial\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"404\",\n \"U_ClienNom\" : \"Copelme SA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Zeballos\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"4264\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Zeballos\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000404-SR-002008\",\n \"Name\" : \"Presentación Demanda Proceso ejecutivo BRAYAN FERNÁNDEZ CHÁVEZ\",\n \"ValidFrom\" : \"2025-05-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"404\",\n \"U_ClienNom\" : \"Copelme SA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"4282\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:11-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:11-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=1120\u0026%24top=20 | Status: 200 | Duration: 92.4925ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:11 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000404-SR-002009\",\n \"Name\" : \"Proceso ejecutivo BRAYAN FERNÁNDEZ CHÁVEZ\",\n \"ValidFrom\" : \"2025-05-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"404\",\n \"U_ClienNom\" : \"Copelme SA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"4283\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000404-SR-002088\",\n \"Name\" : \"Proceso Infracción Leyes Soc. Warnes\",\n \"ValidFrom\" : \"2025-06-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"404\",\n \"U_ClienNom\" : \"Copelme SA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"4490\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000404-SR-002130\",\n \"Name\" : \"proceso ejecutivo contra Ketal S.A.\",\n \"ValidFrom\" : \"2025-07-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"404\",\n \"U_ClienNom\" : \"Copelme SA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Zeballos\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"4540\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Zeballos\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000404-SR-002131\",\n \"Name\" : \"proceso ejecutivo Ketal seguimiento\",\n \"ValidFrom\" : \"2025-07-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"404\",\n \"U_ClienNom\" : \"Copelme SA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Zeballos\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"4541\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Zeballos\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000406-SR-000339\",\n \"Name\" : \"SERVICIOS LEGALES\",\n \"ValidFrom\" : \"2021-03-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"406\",\n \"U_ClienNom\" : \"ACTIVZBOLIVIA SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-03-24T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Jose Maria Navarro Velasquez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Jose Maria Navarro Velasquez\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 2571,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000406-SR-000372\",\n \"Name\" : \"Alquiler Depósito\",\n \"ValidFrom\" : \"2021-05-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 300.0,\n \"U_Comentarios\" : \"Favor cobrar este importe mensualmente - Nosotros alquilamos el almacén a un precio y cobramos un precio mayor al cliente\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"406\",\n \"U_ClienNom\" : \"ACTIVZBOLIVIA SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-05-13T00:00:00Z\",\n \"U_AreaProyecto\" : \"Registros Sanitarios - Regulatorios\",\n \"U_AbogadoEncargado\" : \"Rene Claure Veizaga\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"158\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Claure Veizaga\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2680,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000406-SR-000769\",\n \"Name\" : \"Outsourcing contable y tributarios\",\n \"ValidFrom\" : \"2023-11-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"406\",\n \"U_ClienNom\" : \"ACTIVZBOLIVIA SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-11-22T00:00:00Z\",\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"159\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4606,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000406-SR-000943\",\n \"Name\" : \"OUTSOURCING\",\n \"ValidFrom\" : \"2022-01-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"406\",\n \"U_ClienNom\" : \"ACTIVZBOLIVIA SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-01-01T00:00:00Z\",\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado Ramirez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado Ramirez\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000406-SR-001266\",\n \"Name\" : \"Elaboración de contratos de préstamo y distribución\",\n \"ValidFrom\" : \"2024-06-06T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"406\",\n \"U_ClienNom\" : \"ACTIVZBOLIVIA SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3024\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000406-SR-001338\",\n \"Name\" : \"Registro Activz Aduana Nacional\",\n \"ValidFrom\" : \"2024-07-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"406\",\n \"U_ClienNom\" : \"ACTIVZBOLIVIA SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Aduanero\u0026Comercio Int.\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3113\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000407-SR-001155\",\n \"Name\" : \"Transferencia Cuotas/Reduccion de capital/ Absorcion de Perdidas\",\n \"ValidFrom\" : \"2024-04-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"407\",\n \"U_ClienNom\" : \"FIDES MATER TELEVISIÓN S.R.L\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Civil\",\n \"U_AbogadoEncargado\" : \"Carlos Merino Troche\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2778\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Carlos Merino Troche\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000407-SR-001290\",\n \"Name\" : \"REGULARIZACION TECNICA Y LEGAL EN PROPIEDAD HORIZONTAL\",\n \"ValidFrom\" : \"2024-06-18T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"407\",\n \"U_ClienNom\" : \"FIDES MATER TELEVISIÓN S.R.L\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Administrativo\",\n \"U_AbogadoEncargado\" : \"Carlos Merino Troche\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3059\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Carlos Merino Troche\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000407-SR-001674\",\n \"Name\" : \"Preparación, elaboración actas asamblea extraordinaria revocatoria poderes nuevo representante leg\",\n \"ValidFrom\" : \"2024-10-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Según correo de Dr. Carlos Merino de fecha 03-12-24\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"407\",\n \"U_ClienNom\" : \"FIDES MATER TELEVISIÓN S.R.L\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Carlos Merino\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3581\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Carlos Merino\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000407-SR-001940\",\n \"Name\" : \"Transferencia de aporte de capital A Fides Servicios y Fides La Paz\",\n \"ValidFrom\" : \"2025-03-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"407\",\n \"U_ClienNom\" : \"FIDES MATER TELEVISIÓN S.R.L\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Carlos Merino\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3977\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Carlos Merino\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000411-SR-000344\",\n \"Name\" : \"Asesoramiento IGF\",\n \"ValidFrom\" : \"2021-04-06T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 5000.0,\n \"U_Comentarios\" : \"Coordinar con Andres la firma y ajustes al contrato por los honorarios.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"411\",\n \"U_ClienNom\" : \"Edwin Saavedra Toledo y Sra.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-04-06T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Edwin Rodrigo Burgos Fernandez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"325\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Edwin Rodrigo Burgos Fernandez\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2600,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000412-SR-001688\",\n \"Name\" : \"Modificaciòn de datos técnicos Alcaldía\",\n \"ValidFrom\" : \"2024-10-23T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"412\",\n \"U_ClienNom\" : \"SIEMPRESALUD – GRUPO FIDES\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Carlos Merino\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3596\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Carlos Merino\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000413-SR-000370\",\n \"Name\" : \"Outsourcing contable\",\n \"ValidFrom\" : \"2021-04-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"BOB\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2000.0,\n \"U_Comentarios\" : \"Honorarios por seis meses, deben ser revisados y ajustados en función a volumen.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"413\",\n \"U_ClienNom\" : \"Hupi Constructura S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-04-29T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Administrativo\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado Ramirez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"398\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"BOB\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado Ramirez\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2662,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000413-SR-000529\",\n \"Name\" : \"Calendario Legal 2022 y Respuesta AEMP\",\n \"ValidFrom\" : \"2022-09-19T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 350.0,\n \"U_Comentarios\" : \"Honorarios aprobados por Natalia Revollo, para temas puntuales de cumplimiento de obligaciones comerciales 2022 y respuesta a la AEMP a requerimeinto de información. Se estima la conclusión del servic\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"413\",\n \"U_ClienNom\" : \"Hupi Constructura S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-09-19T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Ines Ayala\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"399\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ines Ayala\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3584,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000417-SR-001323\",\n \"Name\" : \"Due Diligence Societario\",\n \"ValidFrom\" : \"2024-06-26T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"417\",\n \"U_ClienNom\" : \"AGROINDUSTRIAS ALIEMGLOBAL S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3095\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000417-SR-001324\",\n \"Name\" : \"Cambio de Síndico y Representante Legal\",\n \"ValidFrom\" : \"2024-06-26T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"417\",\n \"U_ClienNom\" : \"AGROINDUSTRIAS ALIEMGLOBAL S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3094\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:11-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:11-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=1140\u0026%24top=20 | Status: 200 | Duration: 100.7218ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:12 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000424-SR-000404\",\n \"Name\" : \"Auditoría Corporativa y Tributaria/Contable - Cumplo Todo\",\n \"ValidFrom\" : \"2021-07-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2300.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"424\",\n \"U_ClienNom\" : \"CONSEGSA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-07-22T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"266\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2857,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000424-SR-001366\",\n \"Name\" : \"Servicios Legales Tributarios y Regulatorios\",\n \"ValidFrom\" : \"2024-07-17T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"424\",\n \"U_ClienNom\" : \"Consultores de Seguros S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Luis Valda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3145\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Valda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000425-SR-000624\",\n \"Name\" : \"Cambio de Representante Legal y Aprobación de Gestión 2022\",\n \"ValidFrom\" : \"2023-05-03T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 500.0,\n \"U_Comentarios\" : \"Propuesta de servicios aprobada. Se informará cuando se concluya el servicio para gestionar factura\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"425\",\n \"U_ClienNom\" : \"DISTRITO MODA S.R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-05-03T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Ines Ayala\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"324\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ines Ayala\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4097,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000426-SR-000413\",\n \"Name\" : \"Nueva Línea de Crédito con CAF 2021\",\n \"ValidFrom\" : \"2021-08-17T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2000.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"426\",\n \"U_ClienNom\" : \"FUNDACIÓN PRO MUJER INSTITUCIÓN FINANCIERA DE DESARROLLO\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-08-17T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der.Mercantil-Banca\u0026Finanzas\",\n \"U_AbogadoEncargado\" : \"Teddy Mercado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"364\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Teddy Mercado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2887,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000428-SR-000541\",\n \"Name\" : \"Apertura de sucursal\",\n \"ValidFrom\" : \"2022-10-04T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1600.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"428\",\n \"U_ClienNom\" : \"TIENDA AMIGA ER S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-10-04T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Andres Moreno Gutierrez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"761\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andres Moreno Gutierrez\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3622,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000428-SR-000697\",\n \"Name\" : \"Apertura Sucursal Cochabamba\",\n \"ValidFrom\" : \"2023-08-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1600.0,\n \"U_Comentarios\" : \"Corresponde facturar 50% inicio\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"428\",\n \"U_ClienNom\" : \"TIENDA AMIGA ER S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-08-24T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"762\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4281,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000430-SR-000736\",\n \"Name\" : \"Elaboración informe tributario - corporativo - Exportación de Servicios\",\n \"ValidFrom\" : \"2023-10-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1400.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"430\",\n \"U_ClienNom\" : \"TECNOLOGÍA COLABORATIVA EXPORT S.R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-10-12T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"743\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4516,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000430-SR-000755\",\n \"Name\" : \"REGULARIZACION DE CAMBIO DE DIRECCION SUCURSAL - LA PAZ\",\n \"ValidFrom\" : \"2023-10-26T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1240.0,\n \"U_Comentarios\" : \"Favor emitir factura de manera inmediata.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"430\",\n \"U_ClienNom\" : \"TECNOLOGIA COLABORATIVA EXPORT S.R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-10-26T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Andre Luis Tejerina Queiroz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andre Luis Tejerina Queiroz\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 4561,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000430-SR-000946\",\n \"Name\" : \"CREACION SUCURSAL LA PAZ\",\n \"ValidFrom\" : \"2021-09-03T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 650.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"430\",\n \"U_ClienNom\" : \"TECNOLOGÍA COLABORATIVA EXPORT S.R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-09-03T00:00:00Z\",\n \"U_AreaProyecto\" : \"Comercial (Contratación, informes y otros)\",\n \"U_AbogadoEncargado\" : \"Andre Luis Tejerina Queiroz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Juan Pablo Zegada\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 2921,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000430-SR-000947\",\n \"Name\" : \"CREACION SUCURSAL SANTA CRUZ\",\n \"ValidFrom\" : \"2021-09-03T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 650.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"430\",\n \"U_ClienNom\" : \"TECNOLOGÍA COLABORATIVA EXPORT S.R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-09-03T00:00:00Z\",\n \"U_AreaProyecto\" : \"Comercial (Contratación, informes y otros)\",\n \"U_AbogadoEncargado\" : \"Andre Luis Tejerina Queiroz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Juan Pablo Zegada\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 2922,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000430-SR-001166\",\n \"Name\" : \"Constitucion de Sociedad\",\n \"ValidFrom\" : \"2024-04-08T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"100% Final\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"430\",\n \"U_ClienNom\" : \"TECNOLOGÍA COLABORATIVA EXPORT S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"André Tejerina\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2829\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"André Tejerina\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000430-SR-001600\",\n \"Name\" : \"Regularización de Actas Corporativas\",\n \"ValidFrom\" : \"2024-09-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"430\",\n \"U_ClienNom\" : \"TECNOLOGÍA COLABORATIVA EXPORT S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Ambiental\",\n \"U_AbogadoEncargado\" : \"André Tejerina\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3454\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"André Tejerina\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000430-SR-001689\",\n \"Name\" : \"Negociación de Retiro con Extrabajadora\",\n \"ValidFrom\" : \"2024-10-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"430\",\n \"U_ClienNom\" : \"TECNOLOGÍA COLABORATIVA EXPORT S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"André Tejerina\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"3598\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"André Tejerina\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000430-SR-001792\",\n \"Name\" : \"Apertura de Sucursales en La Paz y Santa Cruz\",\n \"ValidFrom\" : \"2024-12-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"430\",\n \"U_ClienNom\" : \"TECNOLOGÍA COLABORATIVA EXPORT S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"André Tejerina\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3780\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"André Tejerina\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000430-SR-001823\",\n \"Name\" : \"Aumento de Capital\",\n \"ValidFrom\" : \"2025-01-10T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"430\",\n \"U_ClienNom\" : \"TECNOLOGÍA COLABORATIVA EXPORT S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"André Tejerina\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3828\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"André Tejerina\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000430-SR-001824\",\n \"Name\" : \"Disolución y liquidación\",\n \"ValidFrom\" : \"2025-01-10T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"430\",\n \"U_ClienNom\" : \"TECNOLOGÍA COLABORATIVA EXPORT S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"André Tejerina\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3829\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"André Tejerina\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000430-SR-001922\",\n \"Name\" : \"proceso de reincorporación laboral\",\n \"ValidFrom\" : \"2025-03-18T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"430\",\n \"U_ClienNom\" : \"TECNOLOGÍA COLABORATIVA EXPORT S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"3959\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000431-SR-000874\",\n \"Name\" : \"Reorganización empresarial y protección del patrimonio familiar\",\n \"ValidFrom\" : \"2023-07-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 69600.0,\n \"U_Comentarios\" : \"Nota: Verificar con el cliente la denominación social y el nit para las facturas de forma previa a\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"431\",\n \"U_ClienNom\" : \"UNIVERSIDAD PRIVADA FRANZ TAMAYO S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2023-07-21T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Andrés Moreno\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"1343\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andrés Moreno\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 4224,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000431-SR-001585\",\n \"Name\" : \"Análisis CDI\",\n \"ValidFrom\" : \"2024-09-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Facturar 50% al inicio . Bs. 9,485.00\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"431\",\n \"U_ClienNom\" : \"UNIVERSIDAD PRIVADA FRANZ TAMAYO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Luis Valda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3436\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Valda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000431-SR-001903\",\n \"Name\" : \"REESTRUCTURACION GRUPO AGREDA\",\n \"ValidFrom\" : \"2025-03-06T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"431\",\n \"U_ClienNom\" : \"UNIVERSIDAD PRIVADA FRANZ TAMAYO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Andrés Moreno\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3936\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andrés Moreno\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:12-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:12-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=1160\u0026%24top=20 | Status: 200 | Duration: 110.9902ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:12 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000433-SR-000820\",\n \"Name\" : \"DEMANDA CONTENCIOSA CONTRA MUNICIPIO DE BUENA VISTA\",\n \"ValidFrom\" : \"2021-09-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 350.0,\n \"U_Comentarios\" : \"Ver Iguala\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"433\",\n \"U_ClienNom\" : \"INDUSTRIAS CERAMICAS PAZ LTDA.\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2021-09-21T00:00:00Z\",\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa por hitos\",\n \"U_CodAnterior\" : 2935,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000433-SR-000948\",\n \"Name\" : \"DEMANDA EJECUTIVA CONTRA ALVARO SAUCEDO\",\n \"ValidFrom\" : \"2021-09-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Ver Iguala\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"433\",\n \"U_ClienNom\" : \"INDUSTRIAS CERAMICAS PAZ LTDA.\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2021-09-21T00:00:00Z\",\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa por hitos\",\n \"U_CodAnterior\" : 2934,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000433-SR-000949\",\n \"Name\" : \"PROCESO JUDICIAL EN CONTRA DE CLOUDSA S.A.\",\n \"ValidFrom\" : \"2022-05-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Para el hito 4 honorario de éxito, la cuantía demandada es de Bs. 1.232.250,00.-, se debe cobrar porcentaje conforme a Iguala\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"433\",\n \"U_ClienNom\" : \"INDUSTRIAS CERAMICAS PAZ LTDA.\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2021-09-21T00:00:00Z\",\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa por hitos\",\n \"U_CodAnterior\" : 3399,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000436-SR-001603\",\n \"Name\" : \"Desembolso CAF Bs. 15MM 30 de Septiembre de 2024\",\n \"ValidFrom\" : \"2024-09-27T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"436\",\n \"U_ClienNom\" : \"Banco para el Fomento a Iniciativas Económicas S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Mercantil-Banca\u0026Finanzas\",\n \"U_AbogadoEncargado\" : \"Teddy Mercado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3457\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Teddy Mercado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000436-SR-001607\",\n \"Name\" : \"Comisión de Confianza\",\n \"ValidFrom\" : \"2024-08-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Tipo de cambio oficial 6.96\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"436\",\n \"U_ClienNom\" : \"Banco para el Fomento a Iniciativas Económicas S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Luis Valda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3264\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Valda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000436-SR-001830\",\n \"Name\" : \"Análisis Tributario - Ley Financial 2025\",\n \"ValidFrom\" : \"2025-01-16T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"436\",\n \"U_ClienNom\" : \"Banco para el Fomento a Iniciativas Económicas S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Luis Valda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3841\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Valda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000436-SR-001834\",\n \"Name\" : \"Desembolso de préstamo de Bs. 20.000.000 de CAF\",\n \"ValidFrom\" : \"2025-01-17T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"436\",\n \"U_ClienNom\" : \"Banco para el Fomento a Iniciativas Económicas S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Mercantil-Banca\u0026Finanzas\",\n \"U_AbogadoEncargado\" : \"Teddy Mercado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3845\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Teddy Mercado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000436-SR-001843\",\n \"Name\" : \"Reestructuración de préstamo con IDB Invest\",\n \"ValidFrom\" : \"2025-01-27T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Se debe cobrar en Bolivianos al tipo de cambio oficial.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"436\",\n \"U_ClienNom\" : \"Banco para el Fomento a Iniciativas Económicas S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Mercantil-Banca\u0026Finanzas\",\n \"U_AbogadoEncargado\" : \"Teddy Mercado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3855\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Teddy Mercado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000438-SR-001566\",\n \"Name\" : \"ORDEN DE COMPRA CD 212/2024 - ASESORAMIENTO TRIBUTARIO INCORPORACIONES DE NUEVAS ACTIVIDADES U.C.B.\",\n \"ValidFrom\" : \"2024-09-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"ORDEN DE COMPRA CD 212/2024 - ASESORAMIENTO TRIBUTARIO INCORPORACIONES DE NUEVAS ACTIVIDADES U.C.B.,\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"438\",\n \"U_ClienNom\" : \"UNIVERSIDAD CATOLICA BOLIVIANA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Rodrigo Burgos\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3417\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rodrigo Burgos\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000440-SR-000423\",\n \"Name\" : \"OUTSOURCING\",\n \"ValidFrom\" : \"2021-10-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"440\",\n \"U_ClienNom\" : \"MHTNARQ SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-10-11T00:00:00Z\",\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado Ramirez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado Ramirez\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 2959,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000440-SR-000950\",\n \"Name\" : \"Estudio de Precios de Transferencia al 31 de diciembre de 2022\",\n \"ValidFrom\" : \"2023-12-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"440\",\n \"U_ClienNom\" : \"MHTNARQ SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-12-13T00:00:00Z\",\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Edwin Rodrigo Burgos Fernandez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"1500\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Edwin Rodrigo Burgos Fernandez\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4651,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000440-SR-001158\",\n \"Name\" : \"Cierre Corporativo 2023\",\n \"ValidFrom\" : \"2024-04-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"El monto será pagado en Bolivianos, no en Dólares/100% Final\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"440\",\n \"U_ClienNom\" : \"MHTNARQ SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Rene Claure Veizaga\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2787\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Claure Veizaga\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000440-SR-001282\",\n \"Name\" : \"Outsourcing\",\n \"ValidFrom\" : \"2021-10-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"440\",\n \"U_ClienNom\" : \"MHTNARQ SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"439\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000440-SR-001375\",\n \"Name\" : \"Servicios de apoyo preparación y llenado form RIOF\",\n \"ValidFrom\" : \"2024-07-18T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"INACTIVADO POR DUPLICIDAD; NUEVO ASUNTO CREADO EL 22/07\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"440\",\n \"U_ClienNom\" : \"MHTNARQ SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3155\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000440-SR-001380\",\n \"Name\" : \"Servicios de apoyo preparacion y llenado form RIOF\",\n \"ValidFrom\" : \"2024-07-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Preparación y envío trimestral de formulario RIOF a requerimiento del BCB\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"440\",\n \"U_ClienNom\" : \"MHTNARQ SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3161\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000440-SR-001646\",\n \"Name\" : \"Servicios de apoyo preparación y llenado form RIOF\",\n \"ValidFrom\" : \"2024-10-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"SE EQUIVOCO DE CLIENTE- SE INACTIVA Y CREA NUEVAMENTE CORRECTO\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"440\",\n \"U_ClienNom\" : \"MHTNARQ SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : null,\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3509\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000440-SR-001869\",\n \"Name\" : \"Estudio de precios de transferencia\",\n \"ValidFrom\" : \"2025-02-06T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Estudio de precios de transferencia, considerar que tendremos el apoyo de un consultor externo.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"440\",\n \"U_ClienNom\" : \"MHTNARQ SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3886\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000440-SR-001944\",\n \"Name\" : \"Cierre de Gestión 2024\",\n \"ValidFrom\" : \"2025-03-27T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"440\",\n \"U_ClienNom\" : \"MHTNARQ SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"José María Navarro\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"4080\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"José María Navarro\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000443-SR-000824\",\n \"Name\" : \"COBRANZA\",\n \"ValidFrom\" : \"2021-10-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 900.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"443\",\n \"U_ClienNom\" : \"FREDDY ALEJANDRO COILA LOPERA\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2021-10-22T00:00:00Z\",\n \"U_AreaProyecto\" : \"Civil (Contratación, informes y otros)\",\n \"U_AbogadoEncargado\" : \"Alvaro Araoz Ardaya\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Alvaro Araoz Ardaya\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa por hitos\",\n \"U_CodAnterior\" : 2971,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000445-SR-000430\",\n \"Name\" : \"SERVICIOS LEGALES MENSUALES (FM)\",\n \"ValidFrom\" : \"2021-11-04T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"445\",\n \"U_ClienNom\" : \"PAE E\u0026P BOLIVIA LIMITED SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa por hora\",\n \"U_FechaCreacionP\" : \"2021-11-04T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Andres Moreno Gutierrez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andres Moreno Gutierrez\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa por hora\",\n \"U_CodAnterior\" : 2985,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:12-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:12-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=1180\u0026%24top=20 | Status: 200 | Duration: 115.3563ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:12 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000446-SR-000431\",\n \"Name\" : \"Servicios Legales Integrales y Servicios Tributarios Especializados\",\n \"ValidFrom\" : \"2021-11-05T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1465.520,\n \"U_Comentarios\" : \"Se debe facturar hasta el 28 de cada mes\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"446\",\n \"U_ClienNom\" : \"Droguería INTI S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa retainer\",\n \"U_FechaCreacionP\" : \"2021-11-05T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 12,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"136\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 2986,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000446-SR-001278\",\n \"Name\" : \"Servicios Inmobiliarios Terreno Viacha - Planta El Alto\",\n \"ValidFrom\" : \"2024-06-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Se cambia a partir de noviembre 2024 a monto fijo mensual por USD 2000 segun contrato de servicios\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"446\",\n \"U_ClienNom\" : \"Droguería INTI S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Inmobiliario\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3048\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000446-SR-001735\",\n \"Name\" : \"Licencia de Funcionamiento El Alto - Saneamiento Técnico y Legal Inmueble Viacha\",\n \"ValidFrom\" : \"2024-11-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"446\",\n \"U_ClienNom\" : \"Droguería INTI S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Inmobiliario\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3701\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000449-SR-000437\",\n \"Name\" : \"Servicio de Outsourcing contable\",\n \"ValidFrom\" : \"2021-12-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 600.0,\n \"U_Comentarios\" : \"facturar a paertir del mes de noviembre 2022\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"449\",\n \"U_ClienNom\" : \"FOROEMP SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-12-01T00:00:00Z\",\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"363\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3038,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000450-SR-001405\",\n \"Name\" : \"Tramitación Personería Jurídica para la Torre 501\",\n \"ValidFrom\" : \"2024-07-31T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"450\",\n \"U_ClienNom\" : \"EMPRESA CONSTRUCTORA E INMOBILIARIA PACIFICO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Administrativo\",\n \"U_AbogadoEncargado\" : \"Fernando Sanchez Peña\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3227\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Sanchez Peña\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000450-SR-002033\",\n \"Name\" : \"OBTENCION DE PERSONERIA JURIDICA TORRE 501\",\n \"ValidFrom\" : \"2025-05-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"450\",\n \"U_ClienNom\" : \"EMPRESA CONSTRUCTORA E INMOBILIARIA PACIFICO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Civil\",\n \"U_AbogadoEncargado\" : null,\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"4343\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Sanchez Peña\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000451-SR-000007\",\n \"Name\" : \"Mantenimiento de la Sociedad (FM)\",\n \"ValidFrom\" : \"2018-01-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"451\",\n \"U_ClienNom\" : \"PRODUCTOS DE CUIDADO PERSONAL Y DE LA SALUD DE BOLIVIA S.R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2018-01-01T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"Fernando Sanchez Peña\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"485\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Sanchez Peña\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 90,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000451-SR-000008\",\n \"Name\" : \"Representacion Legal (FM)\",\n \"ValidFrom\" : \"2018-01-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"451\",\n \"U_ClienNom\" : \"PRODUCTOS DE CUIDADO PERSONAL Y DE LA SALUD DE BOLIVIA S.R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2018-01-01T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"Fernando Sanchez Peña\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"486\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Sanchez Peña\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 91,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000451-SR-000009\",\n \"Name\" : \"Outsourcing contable (FM)\",\n \"ValidFrom\" : \"2018-01-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"451\",\n \"U_ClienNom\" : \"PRODUCTOS DE CUIDADO PERSONAL Y DE LA SALUD DE BOLIVIA S.R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2018-01-01T00:00:00Z\",\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"487\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 92,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000451-SR-000035\",\n \"Name\" : \"REGISTROS SANITARIOS (GENERICO)\",\n \"ValidFrom\" : \"2018-12-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 250.0,\n \"U_Comentarios\" : \"Proyecto genérico para el cargado de horas\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"451\",\n \"U_ClienNom\" : \"PRODUCTOS DE CUIDADO PERSONAL Y DE LA SALUD DE BOLIVIA S.R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2018-12-13T00:00:00Z\",\n \"U_AreaProyecto\" : \"Registros Sanitarios\",\n \"U_AbogadoEncargado\" : \"Fernando Jose Sanchez Peña Von Nagy\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Jose Sanchez Peña Von Nagy\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 954,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000451-SR-001381\",\n \"Name\" : \"Servicios de apoyo preparacion y llenado form RIOF\",\n \"ValidFrom\" : \"2024-07-23T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Servicio de preparación y envío trimestral del formulario RIOF.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"451\",\n \"U_ClienNom\" : \"PRODUCTOS DE CUIDADO PERSONAL Y DE LA SALUD DE BOLIVIA S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3167\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000452-RE-000600\",\n \"Name\" : \"Domicilio Legal (FM)\",\n \"ValidFrom\" : \"2018-01-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"452\",\n \"U_ClienNom\" : \"Perfumería Francesa (Bolivia)\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"Fernando Sanchez Peña\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"469\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Sanchez Peña\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000452-RE-000824\",\n \"Name\" : \"HOMOLOGACIÓN NSOC32061-24CO SUBLIMAGE L´EXTRAIT DE LOTION\",\n \"ValidFrom\" : \"2024-10-14T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"452\",\n \"U_ClienNom\" : \"Perfumería Francesa (Bolivia)\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Registros Sanitarios-Regul.\",\n \"U_AbogadoEncargado\" : \"Fernando Sanchez Peña\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3515\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Sanchez Peña\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000452-RE-001162\",\n \"Name\" : \"INSCRIPCIÓN NSOC93566-25CO OMBRE ESSENTIELLE\",\n \"ValidFrom\" : \"2025-05-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"452\",\n \"U_ClienNom\" : \"Perfumería Francesa (Bolivia)\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Registros Sanitarios-Regul.\",\n \"U_AbogadoEncargado\" : \"Fernando Sanchez Peña\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"4295\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Sanchez Peña\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000452-RE-001165\",\n \"Name\" : \"HOMOLOGACIÓN NSOC37841-25CO COCO MADEMOISELLE HUILE CORPS\",\n \"ValidFrom\" : \"2025-05-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"452\",\n \"U_ClienNom\" : \"Perfumería Francesa (Bolivia)\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Registros Sanitarios-Regul.\",\n \"U_AbogadoEncargado\" : \"Fernando Sanchez Peña\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"4306\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Sanchez Peña\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000452-RE-001267\",\n \"Name\" : \"RENOVACION NSOC85761-18CO CHANCE EAU TENDRE EAU DE PARFUM\",\n \"ValidFrom\" : \"2025-07-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"452\",\n \"U_ClienNom\" : \"Perfumería Francesa (Bolivia)\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Registros Sanitarios-Regul.\",\n \"U_AbogadoEncargado\" : \"Fernando Sanchez Peña\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"4506\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Sanchez Peña\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000452-SR-000004\",\n \"Name\" : \"Domicilio Legal (FM)\",\n \"ValidFrom\" : \"2018-01-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"452\",\n \"U_ClienNom\" : \"Perfumeria Francesa (Bolivia) SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2018-01-01T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Fernando Jose Sanchez Peña Von Nagy\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"469\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Jose Sanchez Peña Von Nagy\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 86,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000452-SR-000005\",\n \"Name\" : \"Representacion Legal (FM)\",\n \"ValidFrom\" : \"2018-01-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"452\",\n \"U_ClienNom\" : \"Perfumería Francesa (Bolivia)\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2018-01-01T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"Fernando Sanchez Peña\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"470\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Sanchez Peña\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 87,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000452-SR-000006\",\n \"Name\" : \"Outsourcing contable (FM)\",\n \"ValidFrom\" : \"2018-01-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"452\",\n \"U_ClienNom\" : \"Perfumería Francesa (Bolivia)\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2018-01-01T00:00:00Z\",\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"471\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 88,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000452-SR-000034\",\n \"Name\" : \"REGISTROS SANITARIOS (GENERICO)\",\n \"ValidFrom\" : \"2018-12-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 200.0,\n \"U_Comentarios\" : \"Proyecto genérico para el cargado de horas\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"452\",\n \"U_ClienNom\" : \"PERFUMERIA FRANCESA (BOLIVIA) SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2018-12-13T00:00:00Z\",\n \"U_AreaProyecto\" : \"Registros Sanitarios\",\n \"U_AbogadoEncargado\" : \"Fernando Jose Sanchez Peña Von Nagy\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Jose Sanchez Peña Von Nagy\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 953,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:12-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:12-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=1200\u0026%24top=20 | Status: 200 | Duration: 109.1541ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:12 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000452-SR-000053\",\n \"Name\" : \"RECONOCIMIENTO NSOC ROUGE ALLURE\",\n \"ValidFrom\" : \"2019-03-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 200.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"452\",\n \"U_ClienNom\" : \"Perfumeria Francesa (Bolivia) SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-03-20T00:00:00Z\",\n \"U_AreaProyecto\" : \"Registros Sanitarios-Regul.\",\n \"U_AbogadoEncargado\" : \"Fernando Jose Sanchez Peña Von Nagy\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"473\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Jose Sanchez Peña Von Nagy\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1233,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000452-SR-000346\",\n \"Name\" : \"01 PROYECTO DE CAMBIO PERFUMERIA FRANCESA\",\n \"ValidFrom\" : \"2021-04-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"BS\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"452\",\n \"U_ClienNom\" : \"PERFUMERIA FRANCESA (BOLIVIA) SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-04-13T00:00:00Z\",\n \"U_AreaProyecto\" : \"Registros Sanitarios\",\n \"U_AbogadoEncargado\" : \"Fernando Jose Sanchez Peña Von Nagy\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"BOL\",\n \"U_Soc_Responsable\" : \"Fernando Jose Sanchez Peña Von Nagy\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 2612,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000452-SR-001591\",\n \"Name\" : \"Informe legal esenarios Perfrabol\",\n \"ValidFrom\" : \"2024-09-23T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"452\",\n \"U_ClienNom\" : \"Perfumería Francesa (Bolivia)\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Registros Sanitarios-Regul.\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3443\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000452-SR-001593\",\n \"Name\" : \"Servicios de apoyo preparación y llenado form RIOF\",\n \"ValidFrom\" : \"2024-09-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Preparación del formulario RIOF, pago por un año correspondiente a los siguientes trimestres. Q3/2\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"452\",\n \"U_ClienNom\" : \"Perfumería Francesa (Bolivia)\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3445\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000452-SR-001758\",\n \"Name\" : \"HOMOLOGACIÓN NSOC34427-24CO CHANCE EAU SPLENDIDE EAU DE PARFUM\",\n \"ValidFrom\" : \"2024-12-04T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"452\",\n \"U_ClienNom\" : \"Perfumería Francesa (Bolivia)\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Registros Sanitarios-Regul.\",\n \"U_AbogadoEncargado\" : null,\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3729\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Sanchez Peña\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000452-SR-001899\",\n \"Name\" : \"HOMOLOGACIÓN NSOC36241-24CO SUBLIMAGE LE MASQUE\",\n \"ValidFrom\" : \"2025-02-27T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"452\",\n \"U_ClienNom\" : \"Perfumería Francesa (Bolivia)\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Registros Sanitarios-Regul.\",\n \"U_AbogadoEncargado\" : null,\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3929\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Sanchez Peña\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000452-SR-001959\",\n \"Name\" : \"Cierre corporativo anual 2024\",\n \"ValidFrom\" : \"2025-04-03T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"452\",\n \"U_ClienNom\" : \"Perfumería Francesa (Bolivia)\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Registros Sanitarios-Regul.\",\n \"U_AbogadoEncargado\" : \"Fernando Sanchez Peña\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"4177\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Sanchez Peña\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000452-SR-002016\",\n \"Name\" : \"RENOVACIÓN NSOC 61051-16BO HYDRA BEAUTY MICRO CREME\",\n \"ValidFrom\" : \"2025-05-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"452\",\n \"U_ClienNom\" : \"Perfumería Francesa (Bolivia)\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Registros Sanitarios-Regul.\",\n \"U_AbogadoEncargado\" : null,\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"4291\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Sanchez Peña\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000454-SR-002061\",\n \"Name\" : \"Cancelación de Anticresis y Compraventa de Inmueble\",\n \"ValidFrom\" : \"2025-06-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"454\",\n \"U_ClienNom\" : \"Amparo Rivero\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Inmobiliario\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4383\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000455-SR-000443\",\n \"Name\" : \"GRUPO MARCHETT\",\n \"ValidFrom\" : \"2021-12-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"SOCIO USD 250, ASOCIADO SENIOR USD 190 Y ASOCIADO USD 140 SE INACTIVA EL ASUTNO SEGUN CORREO DE INE\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"455\",\n \"U_ClienNom\" : \"GRUPO MARCHET - Natalia Rivero\",\n \"U_FormaCobro\" : \"Honorario tarifa por hora\",\n \"U_FechaCreacionP\" : \"2021-12-22T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"Ines Ayala\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"14\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ines Ayala\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : 3071,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000455-SR-000727\",\n \"Name\" : \"Constiucion de Dos Sociedades Anónimas\",\n \"ValidFrom\" : \"2023-09-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 6000.0,\n \"U_Comentarios\" : \"facturar a fin de mes con las horas.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"455\",\n \"U_ClienNom\" : \"GRUPO MARCHET - Natalia Rivero\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-09-21T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"387\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4375,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000455-SR-001150\",\n \"Name\" : \"Outsourcing de Declaraciones Juradas\",\n \"ValidFrom\" : \"2024-04-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"455\",\n \"U_ClienNom\" : \"GRUPO MARCHET - Natalia Rivero\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado Ramirez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2773\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado Ramirez\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000455-SR-001770\",\n \"Name\" : \"Cierre asuntos urgentes Dic/2024\",\n \"ValidFrom\" : \"2024-12-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"50% a la aceptación de la propuesta (hoy) y 50% a la conclusión del servicio (aprox. en 2 semanas)\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"455\",\n \"U_ClienNom\" : \"GRUPO MARCHET - Natalia Rivero\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Ines Ayala\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3760\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ines Ayala\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000455-SR-001784\",\n \"Name\" : \"Revisión de Acuerdo de Sustitución de Empleador\",\n \"ValidFrom\" : \"2024-12-18T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Facturación del 100% a la conclusión de la revisión del acuerdo.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"455\",\n \"U_ClienNom\" : \"GRUPO MARCHET - Natalia Rivero\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Ines Ayala\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3769\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ines Ayala\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000457-SR-000993\",\n \"Name\" : \"Análisis Tributario - CDI Argentina - Inf. KPMG\",\n \"ValidFrom\" : \"2024-02-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"457\",\n \"U_ClienNom\" : \"BECLEVER\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Luis Valda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2291\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Valda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000458-SR-000446\",\n \"Name\" : \"Transferencia inmueble lote de terreno No.1 zona de Los Batos Porongo\",\n \"ValidFrom\" : \"2022-01-10T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"Honorario a definir una vez se cuente con el análisis de documetos requerido a Santa Cruz\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"458\",\n \"U_ClienNom\" : \"Charbel Mendoza\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-01-10T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Administrativo\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"245\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3092,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000458-SR-000448\",\n \"Name\" : \"Negociación y tramitación Adquisición Inmueble Valle Grande\",\n \"ValidFrom\" : \"2022-01-14T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"Honorario por definir se facturo en la gestion 2022 diciembre 23 USD 2000\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"458\",\n \"U_ClienNom\" : \"Charbel Mendoza\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-01-14T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Inmobiliario\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"246\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3100,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000458-SR-000450\",\n \"Name\" : \"Regularización Anexión y Transferencia inmuebles Taller Flia. Mendoza\",\n \"ValidFrom\" : \"2022-01-14T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"Honorario aún sin definir. Se definirá en base al volumen de trabajo realizado\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"458\",\n \"U_ClienNom\" : \"Charbel Mendoza\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-01-14T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Inmobiliario\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"247\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3102,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000458-SR-000451\",\n \"Name\" : \"Regularización y Transferencia inmueble Escudaño No.9\",\n \"ValidFrom\" : \"2022-01-14T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"Honorario aún sin definir. Se definirá en base al volumen de trabajo realizado\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"458\",\n \"U_ClienNom\" : \"Charbel Mendoza\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-01-14T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Inmobiliario\",\n \"U_AbogadoEncargado\" : \"Alvaro Araoz Ardaya\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"248\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Alvaro Araoz Ardaya\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : 3103,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000458-SR-000452\",\n \"Name\" : \"Regularización y Transferencia inmueble Escudaño No.5\",\n \"ValidFrom\" : \"2022-01-14T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"Honorario aún sin definir. Se definirá en base al volumen de trabajo realizado\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"458\",\n \"U_ClienNom\" : \"Charbel Mendoza\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-01-14T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Inmobiliario\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"249\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3104,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:12-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:12-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=1220\u0026%24top=20 | Status: 200 | Duration: 92.0443ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:12 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000458-SR-000475\",\n \"Name\" : \"Compra inmueble Condominio Colinas del Urubó Lote 8\",\n \"ValidFrom\" : \"2022-02-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1500.0,\n \"U_Comentarios\" : \"Honhorario final por definir\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"458\",\n \"U_ClienNom\" : \"Charbel Mendoza\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-02-15T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Inmobiliario\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"250\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3174,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000458-SR-000563\",\n \"Name\" : \"Elaboración, protocolización y registro de Usufructos casa No. 9, 5, Lote Taller\",\n \"ValidFrom\" : \"2022-12-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1780.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"458\",\n \"U_ClienNom\" : \"Charbel Mendoza\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-12-22T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Inmobiliario\",\n \"U_AbogadoEncargado\" : \"Alvaro Araoz Ardaya\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"251\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Alvaro Araoz Ardaya\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3782,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000458-SR-000861\",\n \"Name\" : \"Demanda Laboral FAGOL Embotelladora Oriental\",\n \"ValidFrom\" : \"2023-02-27T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 36000.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"458\",\n \"U_ClienNom\" : \"Charbel Mendoza\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2023-02-27T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"1265\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 3935,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000458-SR-001669\",\n \"Name\" : \"Transferencia inmueble Escudaño Casa No.10\",\n \"ValidFrom\" : \"2024-10-18T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"458\",\n \"U_ClienNom\" : \"Charbel Mendoza\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Inmobiliario\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"3576\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000458-SR-001670\",\n \"Name\" : \"Transferencia inmueble La Hacienda Casa No.18 SC\",\n \"ValidFrom\" : \"2024-10-18T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"458\",\n \"U_ClienNom\" : \"Charbel Mendoza\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Inmobiliario\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"3577\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000458-SR-001752\",\n \"Name\" : \"Revisión y gestiones de obtención de firmas de Contrato de Transporte de Diésel\",\n \"ValidFrom\" : \"2024-12-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"458\",\n \"U_ClienNom\" : \"Charbel Mendoza\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3721\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000458-SR-001888\",\n \"Name\" : \"Coactivo Social SENASIR contra Productos Oriental SRL\",\n \"ValidFrom\" : \"2025-02-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"458\",\n \"U_ClienNom\" : \"Charbel Mendoza\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"3914\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000458-SR-002103\",\n \"Name\" : \"Compra Hangar SC\",\n \"ValidFrom\" : \"2025-07-04T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"458\",\n \"U_ClienNom\" : \"Charbel Mendoza\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Civil\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"4509\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000458-SR-002138\",\n \"Name\" : \"Elaboración poderes Rosio Prado gestiones bancarias trámites abogados SAN RAFAEL Registro Seprec\",\n \"ValidFrom\" : \"2025-07-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"458\",\n \"U_ClienNom\" : \"Charbel Mendoza\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"4548\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000458-SR-002148\",\n \"Name\" : \"Reunión consultas negocios café Panadería Flia. Mendoza SC\",\n \"ValidFrom\" : \"2025-07-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"458\",\n \"U_ClienNom\" : \"Charbel Mendoza\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"4558\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000458-SR-002149\",\n \"Name\" : \"Revisión Contrato Alquiler, Plaza Comercial Bonaire cafetería Benjamina\",\n \"ValidFrom\" : \"2025-07-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"458\",\n \"U_ClienNom\" : \"Charbel Mendoza\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Civil\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"4559\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000459-SR-000447\",\n \"Name\" : \"Asesoría Legal - EQUIPO CONTABLE\",\n \"ValidFrom\" : \"2022-01-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"459\",\n \"U_ClienNom\" : \"SOCIEDAD INVERSIONES INMOBILIARIAS SOUTH VALLEYS S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-01-11T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"Limbert Alfredo Chalco Herrera\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"726\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Limbert Alfredo Chalco Herrera\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : 3094,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000464-SR-000455\",\n \"Name\" : \"Servicios legales\",\n \"ValidFrom\" : \"2022-01-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"464\",\n \"U_ClienNom\" : \"INVERSIONES INMOBILIARIAS VERMIETUNG S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-01-21T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"Limbert Alfredo Chalco Herrera\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"413\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Limbert Alfredo Chalco Herrera\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : 3109,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000465-SR-000456\",\n \"Name\" : \"TENDER YPFB\",\n \"ValidFrom\" : \"2022-01-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"Consultar con Dr. Andrés Moreno\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"465\",\n \"U_ClienNom\" : \"PLATTS\",\n \"U_FormaCobro\" : \"Honorario tarifa por hora\",\n \"U_FechaCreacionP\" : \"2022-01-21T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Administrativo\",\n \"U_AbogadoEncargado\" : \"Andres Moreno Gutierrez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andres Moreno Gutierrez\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa por hora\",\n \"U_CodAnterior\" : 3112,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000468-SR-000457\",\n \"Name\" : \"ANTECEDENTES REJAP APOSTILLADO - DAVID BRAEZ DUARTE PARACTA\",\n \"ValidFrom\" : \"2022-01-31T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 380.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 380 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"468\",\n \"U_ClienNom\" : \"TELEPERFORMANCE COLOMBIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-01-31T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"746\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3133,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000468-SR-000458\",\n \"Name\" : \"ANTECEDENTES REJAP APOSTILLADO - REMY SILVIA MARTINEZ PAIRO\",\n \"ValidFrom\" : \"2022-01-31T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 380.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 380 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"468\",\n \"U_ClienNom\" : \"TELEPERFORMANCE COLOMBIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-01-31T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"747\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3134,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000468-SR-000459\",\n \"Name\" : \"ANTECEDENTES REJAP APOSTILLADO - MIJAIL EMIR PEREZ CASTELLON\",\n \"ValidFrom\" : \"2022-01-31T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 380.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 380 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"468\",\n \"U_ClienNom\" : \"TELEPERFORMANCE COLOMBIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-01-31T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"748\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3135,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000468-SR-000460\",\n \"Name\" : \"ANTECEDENTES REJAP APOSTILLADO - EDSON ADALID CHAVARRIA BELLIDO\",\n \"ValidFrom\" : \"2022-01-31T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 380.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 380 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"468\",\n \"U_ClienNom\" : \"TELEPERFORMANCE COLOMBIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-01-31T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"749\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3136,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000468-SR-000461\",\n \"Name\" : \"OBTENCION DE PASAPORTE BOLIVIANO - EDSON ADALID CHAVARRIA BELLIDO\",\n \"ValidFrom\" : \"2022-01-31T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 398.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 398 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"468\",\n \"U_ClienNom\" : \"TELEPERFORMANCE COLOMBIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-01-31T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"750\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3137,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000468-SR-000462\",\n \"Name\" : \"OBTENCION DE PASAPORTE BOLIVIANO - MIJAIL EMIR PEREZ CASTELLON\",\n \"ValidFrom\" : \"2022-01-31T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 398.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 398 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"468\",\n \"U_ClienNom\" : \"TELEPERFORMANCE COLOMBIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-01-31T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"751\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3138,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:12-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:12-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=1240\u0026%24top=20 | Status: 200 | Duration: 112.9022ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:12 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000468-SR-000463\",\n \"Name\" : \"OBTENCION DE PASAPORTE BOLIVIANO - EDWIN MUÑOZ SINGURI\",\n \"ValidFrom\" : \"2022-01-31T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 398.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 398 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"468\",\n \"U_ClienNom\" : \"TELEPERFORMANCE COLOMBIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-01-31T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"752\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3139,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000468-SR-000464\",\n \"Name\" : \"ANTECEDENTES REJAP APOSTILLADO - EDWIN MUÑOZ SINGURI\",\n \"ValidFrom\" : \"2022-01-31T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 380.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 380 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"468\",\n \"U_ClienNom\" : \"TELEPERFORMANCE COLOMBIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-01-31T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"753\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3140,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000468-SR-000469\",\n \"Name\" : \"ANTECEDENTES REJAP APOSTILLADO - JESENIA ARCE LOPEZ\",\n \"ValidFrom\" : \"2022-02-14T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 380.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 380 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"468\",\n \"U_ClienNom\" : \"TELEPERFORMANCE COLOMBIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-02-14T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"754\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3162,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000468-SR-000470\",\n \"Name\" : \"ANTECEDENTES REJAP APOSTILLADO - LUIS ALFREDO HUANACO RAMIREZ\",\n \"ValidFrom\" : \"2022-02-14T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 380.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 380 INCLUYEN GASTOS E IMPUESTOS DE LEY./ Según Triveño Inactivar - el clien\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"468\",\n \"U_ClienNom\" : \"TELEPERFORMANCE COLOMBIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-02-14T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"755\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3163,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000468-SR-000471\",\n \"Name\" : \"ANTECEDENTES REJAP APOSTILLADO - LILIANA SIVILA CASTILLO\",\n \"ValidFrom\" : \"2022-02-14T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 380.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 380 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"468\",\n \"U_ClienNom\" : \"TELEPERFORMANCE COLOMBIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-02-14T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"756\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3164,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000468-SR-000472\",\n \"Name\" : \"ANTECEDENTES REJAP APOSTILLADO - MAURICIO FERNANDEZ CUELLAR\",\n \"ValidFrom\" : \"2022-02-14T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 380.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 380 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"468\",\n \"U_ClienNom\" : \"TELEPERFORMANCE COLOMBIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-02-14T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"757\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3165,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000468-SR-000473\",\n \"Name\" : \"OBTENCION DE PASAPORTE BOLIVIANO - MARCO GABRIEL GUARACHI MENDOZA\",\n \"ValidFrom\" : \"2022-02-14T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 398.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 398 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"468\",\n \"U_ClienNom\" : \"TELEPERFORMANCE COLOMBIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-02-14T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"758\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3166,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000468-SR-000474\",\n \"Name\" : \"ANTECEDENTES REJAP APOSTILLADO - MARCO GABRIEL GUARACHI MENDOZA\",\n \"ValidFrom\" : \"2022-02-14T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 380.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 380 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"468\",\n \"U_ClienNom\" : \"TELEPERFORMANCE COLOMBIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-02-14T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"759\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3167,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000471-SR-000465\",\n \"Name\" : \"Servicios Legales Mensuales\",\n \"ValidFrom\" : \"2022-02-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"A partir de Julio 2023 se cambio a tarifa por horas\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"471\",\n \"U_ClienNom\" : \"VISIÓN MUNDIAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa por hora\",\n \"U_FechaCreacionP\" : \"2022-02-02T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"Noelia Sanjinés\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"26\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Noelia Sanjinés\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : 3153,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000472-SR-000951\",\n \"Name\" : \"DUE DILIGENCE (CUMPLO TODO)\",\n \"ValidFrom\" : \"2022-02-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"BS\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1000.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"472\",\n \"U_ClienNom\" : \"SAAINSA S.A. (GRUPO EL DEBER)\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-02-02T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Carlos Merino Troche\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 3154,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000472-SR-000952\",\n \"Name\" : \"SERVICIOS LEGALES MENSUALES\",\n \"ValidFrom\" : \"2022-02-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"BS\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Sin honorarios. Solo se crea el cliente para el tema de reposición de gastos. Este cliente es del GRUPO EL DEBER y el honorario está dentro de lo que paga EMPRESA DE COMUNICACIÓN SOCIAL EL DEBER S.A.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"472\",\n \"U_ClienNom\" : \"SAAINSA S.A. (GRUPO EL DEBER)\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-02-02T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"Carlos Merino Troche\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 3155,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000473-SR-000468\",\n \"Name\" : \"Registro Aceptación de Herencia\",\n \"ValidFrom\" : \"2022-02-14T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 100.0,\n \"U_Comentarios\" : \"Revisada la documentación a getionar se elaborará propuesta final de honorario\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"473\",\n \"U_ClienNom\" : \"Maria Elcy Elvira Pereira de Antelo - Paulo Savoca\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-02-14T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der.Civil\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"433\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3168,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000473-SR-001385\",\n \"Name\" : \"Regularización Datos técnicos en Departamento, Baulera y Parqueo CBA\",\n \"ValidFrom\" : \"2024-07-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"473\",\n \"U_ClienNom\" : \"Maria Elcy Elvira Pereira de Antelo - Paulo Savoca\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Inmobiliario\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"3176\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000473-SR-001386\",\n \"Name\" : \"Regularización Datos técnicos en Departamento, Baulera y Parqueo CBA. Faiola Antelo\",\n \"ValidFrom\" : \"2024-07-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"473\",\n \"U_ClienNom\" : \"Maria Elcy Elvira Pereira de Antelo - Paulo Savoca\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Inmobiliario\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"3177\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000473-SR-001387\",\n \"Name\" : \"Registro de herencia en Departamento, Baulera y Parqueo CBA Fabiola Antelo\",\n \"ValidFrom\" : \"2024-07-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"473\",\n \"U_ClienNom\" : \"Maria Elcy Elvira Pereira de Antelo - Paulo Savoca\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Inmobiliario\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"3178\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000473-SR-001388\",\n \"Name\" : \"Registro herencia vehículo Renault CBA Fabiola Antelo\",\n \"ValidFrom\" : \"2024-07-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"473\",\n \"U_ClienNom\" : \"Maria Elcy Elvira Pereira de Antelo - Paulo Savoca\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Civil\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"3179\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000473-SR-001389\",\n \"Name\" : \"Registro de herencia Predio Porongo SC Fabiola Antelo\",\n \"ValidFrom\" : \"2024-07-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"473\",\n \"U_ClienNom\" : \"Maria Elcy Elvira Pereira de Antelo - Paulo Savoca\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Inmobiliario\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"3180\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000473-SR-001390\",\n \"Name\" : \"Registro de herencia Predio Porongo SC Elvira Pereira\",\n \"ValidFrom\" : \"2024-07-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"473\",\n \"U_ClienNom\" : \"Maria Elcy Elvira Pereira de Antelo - Paulo Savoca\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Inmobiliario\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"3181\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000475-SR-000564\",\n \"Name\" : \"Representante Legal\",\n \"ValidFrom\" : \"2022-12-28T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 250.0,\n \"U_Comentarios\" : \"Cobrar desde el 01 de enero de 2022. Coordinar la facturación con Cristian Delgado de MB Outsourcin\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"475\",\n \"U_ClienNom\" : \"CORPCREDIT SOLUCIONES TECNOLOGICAS S.A\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-12-28T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"299\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 3784,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000475-SR-000565\",\n \"Name\" : \"Domicilio Legal\",\n \"ValidFrom\" : \"2022-12-28T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 250.0,\n \"U_Comentarios\" : \"Cobrar desde el 01 de enero de 2022. Coordinar la facturación con Cristhian Delgado de MB Outsourci\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"475\",\n \"U_ClienNom\" : \"CORPCREDIT SOLUCIONES TECNOLOGICAS S.A\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-12-28T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"300\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 3785,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:12-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:13-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=1260\u0026%24top=20 | Status: 200 | Duration: 94.4221ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:13 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000475-SR-000770\",\n \"Name\" : \"OUTSOURCING CONTABLE Y TRIBUTARIO\",\n \"ValidFrom\" : \"2023-11-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"Honorario variable en función al número de operaciones.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"475\",\n \"U_ClienNom\" : \"CORPCREDIT SOLUCIONES TECNOLOGICAS S.A\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-11-22T00:00:00Z\",\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"301\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4612,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000475-SR-000953\",\n \"Name\" : \"CALENDARIO LEGAL 2023 - ELABORACION DE ACTAS ANUALES Y ACTUALIZACION DE MATRICULA DE COMERCIO\",\n \"ValidFrom\" : \"2023-04-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 550.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"475\",\n \"U_ClienNom\" : \"CORPCREDIT S.A - CORPCREDIT SOLUCIONES TECONOLOGICAS S.A\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-04-15T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado Ramirez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 4052,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000475-SR-001028\",\n \"Name\" : \"Calendario Legal 2024\",\n \"ValidFrom\" : \"2024-02-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"100% al final\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"475\",\n \"U_ClienNom\" : \"CORPCREDIT SOLUCIONES TECNOLOGICAS S.A\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2349\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000475-SR-001275\",\n \"Name\" : \"Síndicos Titular y Suplente\",\n \"ValidFrom\" : \"2024-06-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Por favor facturar contando como inicio del servicio desde el 01 de junio de 2024/ Y se debe subir I\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"475\",\n \"U_ClienNom\" : \"CORPCREDIT SOLUCIONES TECNOLOGICAS S.A\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3045\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000475-SR-001647\",\n \"Name\" : \"Servicios de apoyo preparación y llenado form RIOF\",\n \"ValidFrom\" : \"2024-10-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Cobro trimestral por servicios de preparación de formulario RIOF\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"475\",\n \"U_ClienNom\" : \"CORPCREDIT SOLUCIONES TECNOLOGICAS S.A\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3510\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000475-SR-002069\",\n \"Name\" : \"Calendario Legal 2025\",\n \"ValidFrom\" : \"2025-06-16T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"475\",\n \"U_ClienNom\" : \"CORPCREDIT SOLUCIONES TECNOLOGICAS S.A\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4460\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000476-SR-001220\",\n \"Name\" : \"Renovación anual de certificado de corredor de seguros 2024-2025\",\n \"ValidFrom\" : \"2024-05-06T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"100% Final\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"476\",\n \"U_ClienNom\" : \"Aon Argentina Corredores de Reaseguros S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Seguros y Reaseguros\",\n \"U_AbogadoEncargado\" : \"Lilian Rodríguez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2929\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Lilian Rodríguez\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000476-SR-001292\",\n \"Name\" : \"Opinión legal riesgos regulatorios y legales Aon Argentina\",\n \"ValidFrom\" : \"2024-06-19T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Aplicar la misma tarifa que se aplica a AON por horas Socio USD 250 y asociado USD 150\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"476\",\n \"U_ClienNom\" : \"Aon Argentina Corredores de Reaseguros S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Seguros y Reaseguros\",\n \"U_AbogadoEncargado\" : \"Pamela Muñoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3062\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Pamela Muñoz\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000476-SR-002087\",\n \"Name\" : \"Renovación anual de certificado de corredor de seguros 2025-2026\",\n \"ValidFrom\" : \"2025-06-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"476\",\n \"U_ClienNom\" : \"Aon Argentina Corredores de Reaseguros S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Seguros y Reaseguros\",\n \"U_AbogadoEncargado\" : \"Lilian Rodríguez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"4487\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Lilian Rodríguez\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000478-SR-000478\",\n \"Name\" : \"Servicio legal\",\n \"ValidFrom\" : \"2022-03-03T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"alo\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"478\",\n \"U_ClienNom\" : \"HERRAGRO SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-03-03T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"Andrés Moreno\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"396\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andrés Moreno\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : 3193,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000480-SR-000954\",\n \"Name\" : \"Apostillado de Contrato con certificación notarial de firmas\",\n \"ValidFrom\" : \"2022-03-10T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 400.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"480\",\n \"U_ClienNom\" : \"ICL America do Sul SA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-03-10T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Administrativo\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"1439\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3203,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000480-SR-001197\",\n \"Name\" : \"Reconocimiento Unilateral de Deuda - Agrorganic y otros\",\n \"ValidFrom\" : \"2024-04-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"50% Inicio/50% Final\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"480\",\n \"U_ClienNom\" : \"ICL America do Sul SA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Civil\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2904\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000482-SR-000957\",\n \"Name\" : \"Averiguación bienes La Paz\",\n \"ValidFrom\" : \"2022-03-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 600.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"482\",\n \"U_ClienNom\" : \"Marcela Soligno\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-03-12T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der.Civil\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"1441\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3241,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000483-SR-000572\",\n \"Name\" : \"Actualización de la Tarjeta de Propiedad y obtención de Folio Real. Obtención de Registro Catast\",\n \"ValidFrom\" : \"2023-01-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 13500.0,\n \"U_Comentarios\" : \"Se inactiva el asunto por instruccion del Dr. Natalio Zegarra segun correo de fecha 07/02/25 ,tectua\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"483\",\n \"U_ClienNom\" : \"Embajada de Italia en Bolivia\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-01-24T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der.Civil\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"334\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3812,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000483-SR-000762\",\n \"Name\" : \"INFORMES SOBRE ACTUALIZACION NORMATIVA EN LOS CONTRATOS DE TRABAJO\",\n \"ValidFrom\" : \"2023-11-16T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"483\",\n \"U_ClienNom\" : \"EMBAJADA DE ITALIA EN BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa por hora\",\n \"U_FechaCreacionP\" : \"2023-11-16T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Laboral y de Seguridad Social\",\n \"U_AbogadoEncargado\" : \"Natalio Eduardo Zegarra Ribera\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Natalio Eduardo Zegarra Ribera\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa por hora\",\n \"U_CodAnterior\" : 4594,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000483-SR-000788\",\n \"Name\" : \"INFORME LEGAL SOBRE EL ESTADO DE 2 PROCESOS COACTIVOS SOCIALES SEGUIDOS POR LA CNS\",\n \"ValidFrom\" : \"2023-12-06T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"483\",\n \"U_ClienNom\" : \"Embajada de Italia en Bolivia\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-12-06T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Natalio Zegarra\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"335\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Natalio Zegarra\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4634,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000483-SR-000789\",\n \"Name\" : \"INFORME LEGAL SOBRE BENEFICIOS Y DERECHOS LABORALES EN BOLIVIA\",\n \"ValidFrom\" : \"2023-12-06T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"483\",\n \"U_ClienNom\" : \"Embajada de Italia en Bolivia\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-12-06T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Natalio Eduardo Zegarra Ribera\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"336\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Natalio Eduardo Zegarra Ribera\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4636,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000483-SR-001190\",\n \"Name\" : \"CALCULO DEL BONO DE ANTIGUEDAD DE EMPLEADOS DE LA EMBAJADA\",\n \"ValidFrom\" : \"2024-04-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"100% Final\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"483\",\n \"U_ClienNom\" : \"Embajada de Italia en Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Natalio Eduardo Zegarra Ribera\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2896\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Natalio Eduardo Zegarra Ribera\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000483-SR-001206\",\n \"Name\" : \"JDO. 6 TRABAJO SS - CAJA NACIONAL DE SALUD ct. EMBAJADA DE ITALIA\",\n \"ValidFrom\" : \"2024-04-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Una vez suscrita la iguala profesional se establecerá los hitos y los porcentajes de pago de honora\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"483\",\n \"U_ClienNom\" : \"Embajada de Italia en Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Natalio Eduardo Zegarra Ribera\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2913\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Natalio Eduardo Zegarra Ribera\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000483-SR-001207\",\n \"Name\" : \"JDO. 8 TRABAJO SS - CAJA NACIONAL DE SALUD ct. EMBAJADA DE ITALIA\",\n \"ValidFrom\" : \"2024-04-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Una vez suscrita la iguala profesional se establecerá los hitos y los porcentajes de pago de honora\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"483\",\n \"U_ClienNom\" : \"Embajada de Italia en Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Natalio Eduardo Zegarra Ribera\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2914\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Natalio Eduardo Zegarra Ribera\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:13-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:13-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=1280\u0026%24top=20 | Status: 200 | Duration: 103.8925ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:13 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000483-SR-001210\",\n \"Name\" : \"FISCALIZACION SENASIR\",\n \"ValidFrom\" : \"2024-04-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"100% Final. El importe de los honorarios será establecido una vez que la Embajada reciba la aprobac\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"483\",\n \"U_ClienNom\" : \"Embajada de Italia en Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Natalio Zegarra\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2918\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Natalio Zegarra\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000483-SR-001214\",\n \"Name\" : \"ADENDAS A CONTRATOS DE TRABAJO - BONO DE ANTIGÜEDAD\",\n \"ValidFrom\" : \"2024-05-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"100% Final\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"483\",\n \"U_ClienNom\" : \"Embajada de Italia en Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Natalio Eduardo Zegarra Ribera\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2923\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Natalio Eduardo Zegarra Ribera\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000483-SR-001989\",\n \"Name\" : \"GESTIONES PARA RECONOCIMIENTO DE FIRMAS EN NOTARIA\",\n \"ValidFrom\" : \"2025-04-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"El monto a cobrar asciende a Bs. 350.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"483\",\n \"U_ClienNom\" : \"Embajada de Italia en Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Natalio Zegarra\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"4217\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Natalio Zegarra\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000484-SR-001567\",\n \"Name\" : \"ORDEN DE COMPRA CD 212/2024 - ASESORAMIENTO TRIBUTARIO INCORPORACIONES DE NUEVAS ACTIVIDADES U.C.B.\",\n \"ValidFrom\" : \"2024-09-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"ORDEN DE COMPRA CD 212/2024 - ASESORAMIENTO TRIBUTARIO INCORPORACIONES DE NUEVAS ACTIVIDADES U.C.B.,\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"484\",\n \"U_ClienNom\" : \"Universidad Católica Boliviana San Pablo\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Luis Valda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3417\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Valda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000484-SR-001671\",\n \"Name\" : \"Defensa tributaria Vista de Cargo 292429000775\",\n \"ValidFrom\" : \"2024-10-19T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Despues se debe considerar los honorarios de RA Bs 10,440 y RJ Bs 6,960\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"484\",\n \"U_ClienNom\" : \"Universidad Católica Boliviana San Pablo\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Luis Valda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3578\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Valda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000485-SR-000955\",\n \"Name\" : \"Due Diligence Línea de Crédito IDB INVEST\",\n \"ValidFrom\" : \"2022-03-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 15000.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"485\",\n \"U_ClienNom\" : \"Farmacias Corporativas SA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-03-24T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der.Mercantil-Banca\u0026Finanzas\",\n \"U_AbogadoEncargado\" : \"Teddy Alberto Mercado Carrion\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"1501\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Teddy Alberto Mercado Carrion\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3258,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000485-SR-000956\",\n \"Name\" : \"Servicios relacionados a financiamiento de la Corporación Interamericana de Inversiones\",\n \"ValidFrom\" : \"2023-12-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 15000.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"485\",\n \"U_ClienNom\" : \"Farmacias Corporativas S.A. - FARMACORP\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-12-20T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der.Mercantil-Banca\u0026Finanzas\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"1440\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4675,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000485-SR-001159\",\n \"Name\" : \"Informe regulatorio financiero\",\n \"ValidFrom\" : \"2024-04-04T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"100% Final\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"485\",\n \"U_ClienNom\" : \"Farmacias Corporativas S.A. - FARMACORP\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Carlos Fernando Landa Alejandro\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2821\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Carlos Fernando Landa Alejandro\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000485-SR-001175\",\n \"Name\" : \"Envío Carta Notariada Tarija\",\n \"ValidFrom\" : \"2024-04-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"100% Final\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"485\",\n \"U_ClienNom\" : \"Farmacias Corporativas S.A. - FARMACORP\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Civil\",\n \"U_AbogadoEncargado\" : \"Luis Moreno Gutierrez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2859\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Moreno Gutierrez\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000486-SR-000984\",\n \"Name\" : \"Regularización trámite Fundempresa\",\n \"ValidFrom\" : \"2024-01-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"486\",\n \"U_ClienNom\" : \"SAWALIFE SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Administrativo\",\n \"U_AbogadoEncargado\" : \"Alvaro Araoz Ardaya\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"1507\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Alvaro Araoz Ardaya\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000486-SR-001121\",\n \"Name\" : \"Transferencias de cuotas de capital, cambio de representante, poder\",\n \"ValidFrom\" : \"2024-03-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"50% Inicio/50% Final\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"486\",\n \"U_ClienNom\" : \"SAWALIFE SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Alvaro Araoz Ardaya\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"2694\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Alvaro Araoz Ardaya\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000486-SR-001738\",\n \"Name\" : \"Elaboración Contrato Venta Filtros\",\n \"ValidFrom\" : \"2024-11-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"486\",\n \"U_ClienNom\" : \"SAWALIFE SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"3704\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000486-SR-001739\",\n \"Name\" : \"Consulta Legal\",\n \"ValidFrom\" : \"2024-11-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"486\",\n \"U_ClienNom\" : \"SAWALIFE SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"3705\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000486-SR-001805\",\n \"Name\" : \"Contrato Compraventa Filtros\",\n \"ValidFrom\" : \"2024-12-23T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"486\",\n \"U_ClienNom\" : \"SAWALIFE SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"3793\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000488-SR-001884\",\n \"Name\" : \"Informe Legal caso U-Segura\",\n \"ValidFrom\" : \"2025-02-17T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"488\",\n \"U_ClienNom\" : \"CONECTA REDES Y SERVICIOS SA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3910\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000489-SR-001208\",\n \"Name\" : \"Revisión de Carta a Clientes - Tema Contrabando de Productos\",\n \"ValidFrom\" : \"2024-04-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"100% Final\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"489\",\n \"U_ClienNom\" : \"BIOMERIEUX COLOMBIA SAS\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Andre Luis Tejerina Queiroz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2916\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andre Luis Tejerina Queiroz\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000490-SR-000484\",\n \"Name\" : \"Seguimiento y monitoreo proceso penal Interactive\",\n \"ValidFrom\" : \"2022-04-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 5200.0,\n \"U_Comentarios\" : \"Consultar con AMG si será BKP. Este asutno es inactivado segun correo electronico del Dr. Rene Clau\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"490\",\n \"U_ClienNom\" : \"ENTRAVISION BOLIVIA S.R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-04-11T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Penal\",\n \"U_AbogadoEncargado\" : \"Rene Claure Veizaga\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"346\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Claure Veizaga\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 3288,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000490-SR-000499\",\n \"Name\" : \"Representación Legal Cisneros Interactive Bolivia S.R.L.\",\n \"ValidFrom\" : \"2022-05-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 4380.0,\n \"U_Comentarios\" : \"Del honorario total que recibe MB, debemos pagar mensualmente USD 2500 al representante legal, de lo\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"490\",\n \"U_ClienNom\" : \"ENTRAVISION BOLIVIA S.R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-05-12T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"347\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 3387,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000490-SR-000515\",\n \"Name\" : \"Asesoría legal por horas\",\n \"ValidFrom\" : \"2022-08-03T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"Socio USD 240\\rSenior USD 180\\rAsociado USD 150\\r\\rFacturar a Cisneros Interactive Bolivia S.R.L. de for\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"490\",\n \"U_ClienNom\" : \"ENTRAVISION BOLIVIA S.R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa por hora\",\n \"U_FechaCreacionP\" : \"2022-08-03T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"Pamela Muñoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"11\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Pamela Muñoz\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : 3516,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000490-SR-000752\",\n \"Name\" : \"Servicios de apoyo preparacion y llenado form RIOF\",\n \"ValidFrom\" : \"2023-10-23T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"Se debe facturar por hora a USD 150 por hora\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"490\",\n \"U_ClienNom\" : \"ENTRAVISION BOLIVIA S.R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa por hora\",\n \"U_FechaCreacionP\" : \"2023-10-23T00:00:00Z\",\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"12\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : 4543,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:13-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:13-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=1300\u0026%24top=20 | Status: 200 | Duration: 89.8366ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:13 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000491-SR-000832\",\n \"Name\" : \"COBRANZA EXTRAJUDICIAL INOXCVA\",\n \"ValidFrom\" : \"2022-04-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1500.0,\n \"U_Comentarios\" : \"5% de honorario de éxito\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"491\",\n \"U_ClienNom\" : \"EMPRESA PRODUCTOS Y SERVICIOS TECNICOS PROSERTEC S.R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2022-04-13T00:00:00Z\",\n \"U_AreaProyecto\" : \"Arbitraje\",\n \"U_AbogadoEncargado\" : \"Rene Claure Veizaga\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Claure Veizaga\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa por hitos\",\n \"U_CodAnterior\" : 3296,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000492-SR-000493\",\n \"Name\" : \"Gestoria proceso Ejecutivo - Zabalaga\",\n \"ValidFrom\" : \"2022-05-03T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 100.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"492\",\n \"U_ClienNom\" : \"Daniela Andia\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-05-03T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der.Civil\",\n \"U_AbogadoEncargado\" : \"Alvaro Araoz Ardaya\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"312\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Alvaro Araoz Ardaya\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3363,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000494-SR-000767\",\n \"Name\" : \"Elaboración de documentos para ONG Local\",\n \"ValidFrom\" : \"2023-11-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"494\",\n \"U_ClienNom\" : \"Plan International Inc.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-11-21T00:00:00Z\",\n \"U_AreaProyecto\" : \"Civil (Contratación, informes y otros)\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"477\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4600,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000494-SR-000768\",\n \"Name\" : \"Gestión de personalidad jurídica de ONG Local ante Ministerio de Autonomías\",\n \"ValidFrom\" : \"2023-11-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"494\",\n \"U_ClienNom\" : \"Plan International Inc.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-11-21T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der.Civil\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"478\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4601,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000495-SR-000496\",\n \"Name\" : \"ADECUACION CONTRATO DE SERVICIOS PROFESIONALES\",\n \"ValidFrom\" : \"2022-05-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 700.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"495\",\n \"U_ClienNom\" : \"HOUSEHOLD SOLUTIONS S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-05-09T00:00:00Z\",\n \"U_AreaProyecto\" : \"Comercial (Contratación, informes y otros)\",\n \"U_AbogadoEncargado\" : \"Daniel Marcelo Arredondo Zelada\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Daniel Marcelo Arredondo Zelada\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 3378,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000496-SR-000500\",\n \"Name\" : \"GESTION Y CARTA RECLAMO DERECHOS LABORALES CONTRA AMASZONAS\",\n \"ValidFrom\" : \"2022-05-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 200.0,\n \"U_Comentarios\" : \"FAVOR EMITIR FACTURA EN BASE A LA INFORMACIÓN PROPORCIONADA, EL CLIENTE PAGARÁ HONORARIOS REALIZANDO DEPÓSITO EN CUENTA\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"496\",\n \"U_ClienNom\" : \"JUAN CAROS SOUSA SENZANO\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-05-12T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Laboral y de Seguridad Social\",\n \"U_AbogadoEncargado\" : \"Juan Pablo Zegada\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Juan Pablo Zegada\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 3385,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-000583\",\n \"Name\" : \"Servicios Legales Mensuales\",\n \"ValidFrom\" : \"2023-02-14T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 750.0,\n \"U_Comentarios\" : \"Cada hora adicional USD. 90\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa retainer\",\n \"U_FechaCreacionP\" : \"2023-02-14T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"Ines Ayala\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 10,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"132\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ines Ayala\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 3839,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-000587\",\n \"Name\" : \"Análisis del Vehiculo Legal del Colegio\",\n \"ValidFrom\" : \"2023-02-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 4500.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-02-22T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Administrativo\",\n \"U_AbogadoEncargado\" : \"Luis Moreno Gutierrez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"269\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Moreno Gutierrez\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3910,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-000660\",\n \"Name\" : \"Modificación Estatutos y Reglamento Interno\",\n \"ValidFrom\" : \"2023-07-03T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1115.0,\n \"U_Comentarios\" : \"Conforme la propuesta de honorarios se cobro el 50% a la aceptación en la gestion 2023 y 50% a la\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-07-03T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der.Civil\",\n \"U_AbogadoEncargado\" : \"Ines Ayala\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"270\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ines Ayala\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4208,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-000665\",\n \"Name\" : \"PERMANENCIA TEMPORAL DE 2 AÑOS SIN CONTRATO - REBECCA SUZANNE HALL\",\n \"ValidFrom\" : \"2023-07-19T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1599.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 1599.02 INCLUYE GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-07-19T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"271\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4220,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-000688\",\n \"Name\" : \"PERMANENCIA TEMPORAL DE 2 AÑOS SIN CONTRATO - THOMAS JOHN HERBERT\",\n \"ValidFrom\" : \"2023-08-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 11129.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 11129.21 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-08-24T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"272\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4272,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-000689\",\n \"Name\" : \"PERMANENCIA TEMPORAL DE 2 AÑOS SIN CONTRATO - JANNA LEE SCHIMMER\",\n \"ValidFrom\" : \"2023-08-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 11129.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 11129,29 INCLUYEN GASTOS E IMPUESTOS DE LEY./ Segun Triveño inactivar - el cl\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-08-24T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"273\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4273,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-000690\",\n \"Name\" : \"PERMANENCIA TEMPORAL DE 2 AÑOS POR TRABAJO - NATHANIEL BURROUGHS CHERRY\",\n \"ValidFrom\" : \"2023-08-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 11129.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 11129.21 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-08-24T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"274\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4274,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-000691\",\n \"Name\" : \"PERMANENCIA TEMPORAL DE 2 AÑOS POR TRABAJO SIN CONTRATO - ELI JAY CAGEN\",\n \"ValidFrom\" : \"2023-08-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 11129.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 11129.21 INCLUYEN GASTOS E IMPUESTOS DE LEY. FACTURADO EN SAP 11/03/2024 SEGUN\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-08-24T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"275\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4275,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-000692\",\n \"Name\" : \"PERMANENCIA TEMPORAL DE 2 AÑOS POR TRABAJO SIN CONTRATO - MELISSA ANDREA LOPEZ\",\n \"ValidFrom\" : \"2023-08-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 11129.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 11129.21 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-08-24T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"276\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4276,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-000693\",\n \"Name\" : \"PERMANENCIA TEMPORAL DE 2 AÑOS POR TRABAJO SIN CONTRATO - TONIE JONES\",\n \"ValidFrom\" : \"2023-08-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 11129.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 11129.21 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-08-24T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"277\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4277,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-000694\",\n \"Name\" : \"PERMANENCIA TEMPORAL DE 2 AÑOS POR TRABAJO SIN CONTRATO - ARIEL ALMOITE\",\n \"ValidFrom\" : \"2023-08-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 11129.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 11129.21 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-08-24T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"278\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4278,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-000695\",\n \"Name\" : \"PERMANENCIA TEMPORAL DE 2 AÑOS POR TRABAJO SIN CONTRATO - ELENA GRACE KALAHAR\",\n \"ValidFrom\" : \"2023-08-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 11129.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 11129.21 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-08-24T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"279\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4279,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-000698\",\n \"Name\" : \"PERMANENCIA DE 2 AÑOS POR TRABAJO SIN CONTRATO - REBECCA SUZANNE HALL\",\n \"ValidFrom\" : \"2023-08-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"BOB\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 11129.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 11129.21 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-08-25T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"280\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"BOB\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4285,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-000703\",\n \"Name\" : \"PERMANENCIA TEMPORAL DE 1 AÑO POR TRABAJO - OMAR KHALED ALY NEGM\",\n \"ValidFrom\" : \"2023-09-05T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 9612.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 9612.86 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-09-05T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"281\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4322,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:13-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:13-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=1320\u0026%24top=20 | Status: 200 | Duration: 98.6772ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:13 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000498-SR-000704\",\n \"Name\" : \"PERMANENCIA TEMPORAL DE 1 AÑO POR TRABAJO - EMMA RYAN NUTTER\",\n \"ValidFrom\" : \"2023-09-05T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 9612.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 9612.86 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-09-05T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"282\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4323,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-000709\",\n \"Name\" : \"CEDULA PARA EXTRANJERO - REBECCA SUZANNE HALL\",\n \"ValidFrom\" : \"2023-09-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 257.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 257.83 INCLUYEN GASTOS E IMPUESTO DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-09-13T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"283\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4345,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-000835\",\n \"Name\" : \"CONSTITUCION FUNDACION\",\n \"ValidFrom\" : \"2022-05-19T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1120.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"COOPERATIVA EDUCACIONAL SANTA CRUZ R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2022-05-19T00:00:00Z\",\n \"U_AreaProyecto\" : \"Comercial (Contratación, informes y otros)\",\n \"U_AbogadoEncargado\" : \"Luis Moreno Gutierrez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Moreno Gutierrez\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa por hitos\",\n \"U_CodAnterior\" : 3391,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-000996\",\n \"Name\" : \"Elaboración de políticas contables y manual de cuentas\",\n \"ValidFrom\" : \"2024-02-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Rodrigo Burgos\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2294\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rodrigo Burgos\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-001008\",\n \"Name\" : \"Permanencia temporal de 2 años por trabajo - MAKIKO NISHIHARA\",\n \"ValidFrom\" : \"2024-02-05T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2309\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-001015\",\n \"Name\" : \"Carnet para Extranjero - MAKIKO NISHIHARA\",\n \"ValidFrom\" : \"2024-02-14T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"BOB\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2327\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"BOB\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-001022\",\n \"Name\" : \"Carnet para Extranjero - MAKIKO NISHIHARA\",\n \"ValidFrom\" : \"2024-02-19T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2337\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-001123\",\n \"Name\" : \"Permanencia Temporal de 2 años por trabajo - ELY JAY CAGEN\",\n \"ValidFrom\" : \"2024-03-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorarios de $us. 1599.02, Incluyen gastos e impuestos de ley.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2699\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-001124\",\n \"Name\" : \"Carnet de Extranjero - ELY JAY CAGEN\",\n \"ValidFrom\" : \"2024-03-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE $US. 257.83 INCLUYEN GASTOS E IMPUESTOS DE LEY. 100% Final\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2700\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-001125\",\n \"Name\" : \"Carnet de Extranjero - MELISSA ANDREA LOPEZ\",\n \"ValidFrom\" : \"2024-03-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE $US. 257.83 INCLUYEN GASTOS E IMPUESTOS DE LEY. 100% Final\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2701\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-001126\",\n \"Name\" : \"Carnet de Extranjero - ELENA GRACE KALAHAR\",\n \"ValidFrom\" : \"2024-03-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE $US. 257.83 INCLUYEN GASTOS E IMPUESTOS DE LEY. 100% Final\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2702\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-001127\",\n \"Name\" : \"Carnet de extranjero - NATHANIEL BURROUGHS CHERRY\",\n \"ValidFrom\" : \"2024-03-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE $US. 257.83 INCLUYEN GASTOS E IMPUESTOS DE LEY. 100% Final\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2703\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-001128\",\n \"Name\" : \"Carnet de Extrajero - THOMAS JOHN HERBERT\",\n \"ValidFrom\" : \"2024-03-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE $US. 257.83 INCLUYEN GASTOS E IMPUESTOS DE LEY. 100% Final\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2704\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-001129\",\n \"Name\" : \"Carnet de Extranjero - TONIE JONES\",\n \"ValidFrom\" : \"2024-03-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE $US. 257.83 INCLUYEN GASTOS E IMPUESTOS DE LEY. 100% Final\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2705\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-001130\",\n \"Name\" : \"Carnet de Extranjero - ARIEL ALMOITE GUECO\",\n \"ValidFrom\" : \"2024-03-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE $US. 257.83 INCLUYEN GASTOS E IMPUESTOS DE LEY. 100% Final\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2706\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-001131\",\n \"Name\" : \"Carnet de Extranjero - EMMA RYAN NUTTER\",\n \"ValidFrom\" : \"2024-03-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE $US. 257.83 INCLUYEN GASTOS E IMPUESTOS DE LEY. 100% Final\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2707\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-001132\",\n \"Name\" : \"Carnet de Extranjero - OMAR KHALED ALY NEGM\",\n \"ValidFrom\" : \"2024-03-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE $US. 257.83 INCLUYEN GASTOS E IMPUESTOS DE LEY. 100% Final\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2708\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-001358\",\n \"Name\" : \"PERMANENCIA TEMPORAL DE 2 AÑOS POR TRABAJO - SANDRA PORTILLO\",\n \"ValidFrom\" : \"2024-07-16T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"LOS GASTOS DE USD. 1599.02 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3138\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-001359\",\n \"Name\" : \"PERMANENCIA TEMPORAL DE 2 AÑOS POR TRABAJO - GARRETT THOMAS KRELLER\",\n \"ValidFrom\" : \"2024-07-16T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"LOS GASTOS DE USD. 1599.02 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3139\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-001384\",\n \"Name\" : \"PERMANENCIA TEMPORAL DE 2 AÑOS POR TRABAJO - PAUL READ PETIT\",\n \"ValidFrom\" : \"2024-07-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorarios de USD. 1599.02 incluyen gastos e impuestos de ley.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3175\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:13-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:13-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=1340\u0026%24top=20 | Status: 200 | Duration: 117.1211ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:13 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000498-SR-001395\",\n \"Name\" : \"OBTENCIÓN DE CÉDULA NACIONAL DE BOLIVIA - DAVID ERWIN DEUEL DEUEL\",\n \"ValidFrom\" : \"2024-07-26T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los gastos de USD. 200 incluyen gastos e impuestos de ley.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3185\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-001408\",\n \"Name\" : \"CEDULA PARA EXTRANJERO - SANDRA PORTILLO\",\n \"ValidFrom\" : \"2024-08-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorarios de usd. 257.83 incluyen gastos e impuestos de ley.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3230\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-001409\",\n \"Name\" : \"CEDULA PARA EXTRANJERO - GARRETT THOMAS KRELLER\",\n \"ValidFrom\" : \"2024-08-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorarios de usd. 257.83 incluyen gastos e impuestos de ley.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3231\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-001410\",\n \"Name\" : \"PERMANENCIA TEMPORAL DE 2 AÑOS POR TRABAJO - CASEY MITSUO ASATO\",\n \"ValidFrom\" : \"2024-08-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorarios de usd. 1599.02 incluyen gastos e impuestos de ley.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3232\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-001411\",\n \"Name\" : \"Permanencia temporal de 2 años - Mariangela Asato\",\n \"ValidFrom\" : \"2024-08-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorarios de usd. 1599.02 incluyen gastos e impuestos de ley.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3233\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-001412\",\n \"Name\" : \"PERMANENCIA TEMPORAL DE 2 AÑOS POR TRABAJO - BETHANY SHAVON OWENS\",\n \"ValidFrom\" : \"2024-08-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorarios de usd. 1599.02 incluyen gasto e impuestos de ley.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3234\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-001413\",\n \"Name\" : \"PERMANENCIA TEMPORAL DE 2 AÑOS POR TRABAJO - BENJAMIN NICHOLAS KANE\",\n \"ValidFrom\" : \"2024-08-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorarios de usd. 1599.02 incluyen gastos e impuestos de ley.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3235\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-001414\",\n \"Name\" : \"PERMANENCIA TEMPORAL DE 2 AÑOS POR TRABAJO - JONATHON JOSEPH SIMON\",\n \"ValidFrom\" : \"2024-08-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorarios de usd. incluyen gastos e impuestos de ley.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3236\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-001415\",\n \"Name\" : \"PERMANENCIA TEMPORAL DE 2 AÑOS POR TRABAJO - HELGA JOSHUA\",\n \"ValidFrom\" : \"2024-08-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorarios de usd. incluyen gastos e impuestos de ley.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3237\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-001417\",\n \"Name\" : \"PERMANENCIA TEMPORAL DE 2 AÑOS POR TRABAJO - ALICIA MARY EARNSHAW\",\n \"ValidFrom\" : \"2024-08-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorarios de usd. 1599.02 incluyen gastos e impuestos de ley.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3239\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-001418\",\n \"Name\" : \"PERMANENCIA TEMPORAL DE 2 AÑOS POR TRABAJO - TRENT ROBERT KILLIAN\",\n \"ValidFrom\" : \"2024-08-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorarios de usd. 1599.02 incluyen gasto e impuestos de ley. EL ASUNTO SOLO ES DE PERMANENCIA D\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3240\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-001419\",\n \"Name\" : \"PERMANENCIA TEMPORAL DE 2 AÑOS POR TRABAJO - ALLYSON GRAHAN KILLIAN\",\n \"ValidFrom\" : \"2024-08-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorarios de usd. 1599.02 incluyen gastos e impuestos de ley. EL ASUNTO SOLO ES PERMANENCIA TEM\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3241\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-001420\",\n \"Name\" : \"PERMANENCIA TEMPORAL DE 2 AÑOS POR TRABAJO - ALEXANDER LELAND GROFF\",\n \"ValidFrom\" : \"2024-08-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"EL ASUNTO SOLO ES PERMANENCIA TEMPORAL DE 1 AÑO\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3242\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-001421\",\n \"Name\" : \"PERMANENCIA TEMPORAL DE 2 AÑOS POR TRABAJO - JILL ANN GROFF\",\n \"ValidFrom\" : \"2024-08-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorarios de usd. 1599.02 incluyen gastos e impuestos de ley. EL ASUNTO SOLO ES PERMANENCIA TEM\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3243\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-001538\",\n \"Name\" : \"CEDULA PARA EXTRANJERO - BETHANY SHAVON OWENS\",\n \"ValidFrom\" : \"2024-09-03T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorarios de USD. 257.83 incluyen gastos e impuestos de ley.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3385\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-001539\",\n \"Name\" : \"CARNET PARA EXTRANJERO - HELGA JOSHUA\",\n \"ValidFrom\" : \"2024-09-03T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorarios de USD. 257.83 incluyen gastos e impuestos de ley.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3386\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-001540\",\n \"Name\" : \"CARNET PARA EXTRANJERO - CASEY MITSUO ASATO\",\n \"ValidFrom\" : \"2024-09-03T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorarios de USD. 257.83 incluyen gastos e impuestos de ley.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3387\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-001541\",\n \"Name\" : \"CARNET PARA EXTRANJERO - MARIANGELA ASATO\",\n \"ValidFrom\" : \"2024-09-03T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorarios de USD. 257.83 incluyen gastos e impuestos de ley.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3388\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-001551\",\n \"Name\" : \"CEDULA PARA EXTRANJERO - ALLYSON GRAHAM KILLIAN\",\n \"ValidFrom\" : \"2024-09-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorarios de USD. 257.83 incluyen gastos e impuestos de ley.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3402\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-001552\",\n \"Name\" : \"CEDULA PARA EXTRANJERO - TRENT ROBERT KILLIAN\",\n \"ValidFrom\" : \"2024-09-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorarios de USD. 257.83 incluyen gastos e impuestos de ley.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3403\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:13-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:13-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=1360\u0026%24top=20 | Status: 200 | Duration: 99.4089ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:13 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000498-SR-001553\",\n \"Name\" : \"CEDULA PARA EXTRANJERO - JONATHON JOSEPH SIMON\",\n \"ValidFrom\" : \"2024-09-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorarios de USD. 257.83 incluyen gastos e impuestos de ley.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3404\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-001554\",\n \"Name\" : \"CEDULA PARA EXTRANJERO - ALICIA MARY EARNSHAN\",\n \"ValidFrom\" : \"2024-09-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorarios de USD. 257.83 incluyen gastos e impuestos de ley.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3405\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-001555\",\n \"Name\" : \"CEDULA PARA EXTRANJERO - BENJAMIN NICHOLAS KANE\",\n \"ValidFrom\" : \"2024-09-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorarios de USD. 257.83 incluyen gastos e impuestos de ley.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3406\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-001572\",\n \"Name\" : \"CEDULA PARA EXTRANJERO - ALEXANDER LELAND GROFF\",\n \"ValidFrom\" : \"2024-09-18T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorarios de USD. 257.83 incluyen gastos e impuestos de ley.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3422\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-001573\",\n \"Name\" : \"CEDULA PARA EXTRAJERO - JILL ANN GROFF\",\n \"ValidFrom\" : \"2024-09-18T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorarios de USD. 257.83 incluyen gastos e impuestos de ley.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3423\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-001612\",\n \"Name\" : \"Permanencia temporal dos años por familia - EVAN LEVI QWENS\",\n \"ValidFrom\" : \"2024-10-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los Honorarios profesionales incluyen gastos e impuestos de Ley, reflejada en una factura final.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3465\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-001613\",\n \"Name\" : \"Permanencia temporal dos años por familia - NINA KALEIALOHA ASATO\",\n \"ValidFrom\" : \"2024-10-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los Honorarios profesionales incluyen gastos e impuestos de Ley, reflejada en una factura final.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3466\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-001615\",\n \"Name\" : \"RENOVACION DE CEDULA PARA EXTRANJERO - LAUREN ELIZABETH DEUEL\",\n \"ValidFrom\" : \"2024-10-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorarios de USD. 275.71 incluyen gastos e impuestos de ley.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3468\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-001631\",\n \"Name\" : \"CEDULA PARA EXTRANJERO - EVAN LEVI OWENS\",\n \"ValidFrom\" : \"2024-10-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorarios de USD. 257.83 incluyen gastos e impuestos de ley.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3484\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-001632\",\n \"Name\" : \"CEDULA PARA EXTRANJERO - NINA KALEIALOJA ASATO\",\n \"ValidFrom\" : \"2024-10-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorarios de USD. 257.83 incluyen gastos e impuestos de ley.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3485\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-001666\",\n \"Name\" : \"CEDULA DE EXTRANJERO - PAUL READ PETIT\",\n \"ValidFrom\" : \"2024-10-16T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3563\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-001787\",\n \"Name\" : \"Permanencia temporal de dos años convenio bilateral Bolivia ChileSusana Francesca Muñoz Ulriksen\",\n \"ValidFrom\" : \"2024-12-19T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3772\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-001788\",\n \"Name\" : \"Cedula de identidad de extranjero - Susana Francesca Muñoz Ulriksen\",\n \"ValidFrom\" : \"2024-12-19T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3773\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-001789\",\n \"Name\" : \"Permanencia temporal de 2 años convenio bilateral Bolivia Chile - Antonia Francesca Petit Muñoz\",\n \"ValidFrom\" : \"2024-12-19T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3774\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-001790\",\n \"Name\" : \"Cedula de identidad de extranjeros - Antonia Francesca Petit Muñoz\",\n \"ValidFrom\" : \"2024-12-19T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3775\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-001793\",\n \"Name\" : \"Permanencia temporal de 1 año por familia - ARIADME JOSEPHINE GROFF\",\n \"ValidFrom\" : \"2024-12-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3781\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-001794\",\n \"Name\" : \"Cedula de extranjero - ARIADNE JOSEPHINE GROFF\",\n \"ValidFrom\" : \"2024-12-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3782\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-001795\",\n \"Name\" : \"Permanencia temporal de 1 año por familia - SKYLAH NOUR KILLIAN\",\n \"ValidFrom\" : \"2024-12-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3783\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-001796\",\n \"Name\" : \"Cedula de extranjero - SKYLAH NOUR KILLIAN\",\n \"ValidFrom\" : \"2024-12-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3784\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-001797\",\n \"Name\" : \"Permanencia temporal de 1 año por familia - LIAM PHILLIP KILLIAN\",\n \"ValidFrom\" : \"2024-12-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3785\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:13-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:14-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=1380\u0026%24top=20 | Status: 200 | Duration: 114.2135ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:14 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000498-SR-001798\",\n \"Name\" : \"Cedula de extranjero - LIAM PHILLIP KILLIAN\",\n \"ValidFrom\" : \"2024-12-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3786\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-001799\",\n \"Name\" : \"Permanencia temporal de 1 año - GRACYNALIYAH KILLIAN\",\n \"ValidFrom\" : \"2024-12-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3787\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-001800\",\n \"Name\" : \"Cedula de identidad de extranjeros - GRACYN ALIYAH KILLIAN\",\n \"ValidFrom\" : \"2024-12-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3788\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-002128\",\n \"Name\" : \"Permanencia temporal de dos años de trabajo - MATTHEW ERIC AUSTIN\",\n \"ValidFrom\" : \"2025-07-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : null,\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4538\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-002129\",\n \"Name\" : \"Permanencia temporal de dos años de trabajo - KRISTEN ERIN AUSTIN\",\n \"ValidFrom\" : \"2025-07-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : null,\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4539\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000498-SR-002136\",\n \"Name\" : \"Permanencia temporal de dos años de trabajo - JUSTIN ALEXANDER LENDERKING\",\n \"ValidFrom\" : \"2025-07-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"498\",\n \"U_ClienNom\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : null,\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4546\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000501-SR-000757\",\n \"Name\" : \"REVISION - CONTRATO DE DISTRIBUCION\",\n \"ValidFrom\" : \"2023-11-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1500.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"501\",\n \"U_ClienNom\" : \"ADM ARCHER DANIELS MIDLAND COMPANY\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-11-07T00:00:00Z\",\n \"U_AreaProyecto\" : \"Comercial (Contratación, informes y otros)\",\n \"U_AbogadoEncargado\" : \"Daniel Marcelo Arredondo Zelada\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Daniel Marcelo Arredondo Zelada\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 4575,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000503-SR-000609\",\n \"Name\" : \"Consultas Corporativas/Aesoria legal mensual sin incluir TAX\",\n \"ValidFrom\" : \"2023-03-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"Hora Socio 230/h, Hora Senior Asociado 180/h Hora Asociado 150/h.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"503\",\n \"U_ClienNom\" : \"YANDEX\",\n \"U_FormaCobro\" : \"Honorario tarifa por hora\",\n \"U_FechaCreacionP\" : \"2023-03-21T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"Carlos Fernando Landa Alejandro\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"27\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Carlos Fernando Landa Alejandro\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : 4030,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000506-SR-001285\",\n \"Name\" : \"Otorgamiento y Revocatoria de Poder Bancario\",\n \"ValidFrom\" : \"2024-06-14T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Ninguno\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"506\",\n \"U_ClienNom\" : \"SUBWAY INTERNATIONAL B.V. SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Teddy Mercado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3054\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Teddy Mercado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000507-SR-000611\",\n \"Name\" : \"Servicios Legales Mensuales - Representación y Domicilio\",\n \"ValidFrom\" : \"2023-04-05T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1000.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"507\",\n \"U_ClienNom\" : \"DEMERGE BOLIVIA SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-04-05T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"319\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 4042,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000508-SR-000516\",\n \"Name\" : \"Servicios Legales Mensuales\",\n \"ValidFrom\" : \"2022-08-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1305.0,\n \"U_Comentarios\" : \"Retainer mensual de USD. 1500.- hasta 12 horas, supera se cobra USD. 100 por cada hora adicional se\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"508\",\n \"U_ClienNom\" : \"FOIANINISALUD MEDICINAPREPAGA S.A\",\n \"U_FormaCobro\" : \"Honorario tarifa retainer\",\n \"U_FechaCreacionP\" : \"2022-08-11T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Ines Ayala\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 12,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"139\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ines Ayala\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 3524,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000508-SR-000987\",\n \"Name\" : \"Comunicación APS - Transferencia de Acciones CAF\",\n \"ValidFrom\" : \"2024-01-26T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"508\",\n \"U_ClienNom\" : \"FOIANINISALUD MEDICINAPREPAGA S.A\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Seguros y Reaseguros\",\n \"U_AbogadoEncargado\" : \"Rene Claure Veizaga\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"1511\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Claure Veizaga\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000511-SR-000526\",\n \"Name\" : \"LICITACION BCB I\",\n \"ValidFrom\" : \"2022-09-10T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 20555.0,\n \"U_Comentarios\" : \"La tarifa aplicable es por hitos + success fee de acuerdo a Iguala\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"511\",\n \"U_ClienNom\" : \"DE LA RUE\",\n \"U_FormaCobro\" : \"Honorario tarifa CAP\",\n \"U_FechaCreacionP\" : \"2022-09-10T00:00:00Z\",\n \"U_AreaProyecto\" : \"Contratación Pública\",\n \"U_AbogadoEncargado\" : \"Daniel Marcelo Arredondo Zelada\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Daniel Marcelo Arredondo Zelada\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa CAP\",\n \"U_CodAnterior\" : 3577,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000513-SR-000527\",\n \"Name\" : \"Registro Aceptación de Herencia\",\n \"ValidFrom\" : \"2022-09-14T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1000.0,\n \"U_Comentarios\" : \"Se inactiva por solicitud de Alvaro Araoz mediante corre de fecha 12 de febrero 2025.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"513\",\n \"U_ClienNom\" : \"Fabiola Antelo Cuellar\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-09-14T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der.Civil\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"357\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3580,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000515-SR-000536\",\n \"Name\" : \"ASESORAMIENTO REQUERIMIENTO SIN - FACTURAS\",\n \"ValidFrom\" : \"2022-09-27T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 400.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"515\",\n \"U_ClienNom\" : \"CAPRESSO\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-09-27T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Tributario\",\n \"U_AbogadoEncargado\" : \"Edwin Rodrigo Burgos Fernandez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Edwin Rodrigo Burgos Fernandez\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 3601,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000515-SR-000560\",\n \"Name\" : \"ASESORAMIENTO REQUERIMIENTO SIN - FACTURAS DIC 2022\",\n \"ValidFrom\" : \"2022-12-06T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 250.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"515\",\n \"U_ClienNom\" : \"CAPRESSO\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-12-06T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Tributario\",\n \"U_AbogadoEncargado\" : \"Edwin Rodrigo Burgos Fernandez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Edwin Rodrigo Burgos Fernandez\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 3751,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000517-SR-000959\",\n \"Name\" : \"CONSTITUCION S.A.\",\n \"ValidFrom\" : \"2022-09-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"BS\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2500.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"517\",\n \"U_ClienNom\" : \"FIBRAFILL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-09-30T00:00:00Z\",\n \"U_AreaProyecto\" : \"Comercial (Contratación, informes y otros)\",\n \"U_AbogadoEncargado\" : \"Carlos Merino Troche\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ines Ayala\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 3614,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000519-SR-000193\",\n \"Name\" : \"PROCESO LABORAL NICOLAS CHINO ct. VILTE Y FLORES\",\n \"ValidFrom\" : \"2019-09-27T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"Según correo electrónico de fecha 30/nov/2024 Dr. Natalio Zegarra se procede a la inactivación de\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"519\",\n \"U_ClienNom\" : \"VILTE \u0026 FLORES ICC SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-09-27T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Natalio Zegarra\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"866\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Natalio Zegarra\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 1695,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000519-SR-000522\",\n \"Name\" : \"JUAN JOSE BALBOA ct. VILTE Y FLORES - DEMANDA LABORAL\",\n \"ValidFrom\" : \"2022-08-23T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 7000.0,\n \"U_Comentarios\" : \"EL CLIENTE PAGARÁ INICIALMENTE Bs. 5000 y posteriormente Bs. 2000 a la conclusión del periodo prob\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"519\",\n \"U_ClienNom\" : \"VILTE \u0026 FLORES ICC SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-08-23T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Natalio Zegarra\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"867\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Natalio Zegarra\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 3550,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000519-SR-000530\",\n \"Name\" : \"PROCESO COACTIVO SOCIAL - CAJA PETROLERA DE SALUD ct. VILTE BELLIDO INGENIEROS\",\n \"ValidFrom\" : \"2022-09-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 5000.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE ESTE PROCESO Y DE OTROS SE PAGARAN CONFORME IGUALA PROFESIONAL Según correo elect\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"519\",\n \"U_ClienNom\" : \"VILTE \u0026 FLORES ICC SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-09-21T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Natalio Zegarra\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"868\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Natalio Zegarra\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 3590,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:14-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:14-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=1400\u0026%24top=20 | Status: 200 | Duration: 106.3695ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:14 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000519-SR-000531\",\n \"Name\" : \"PROCESO EJECUTIVO SOCIAL PROVIVIENDA ct. VILTE BELLIDO INGENIEROS - JUZGADO 9 TRABAJO\",\n \"ValidFrom\" : \"2022-09-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 5.0,\n \"U_Comentarios\" : \"los honorarios se pagaran conforme iguala profesional Según correo electrónico de fecha 30/nov/202\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"519\",\n \"U_ClienNom\" : \"VILTE \u0026 FLORES ICC SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-09-21T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Natalio Zegarra\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"869\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Natalio Zegarra\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 3591,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000519-SR-000544\",\n \"Name\" : \"PROCESO LABORAL - ANGEL JAVIER COTAJA Y OTROS ct. VILTE Y FLORES INGENIEROS\",\n \"ValidFrom\" : \"2022-10-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"Los honorarios corresponden al 10% (Bs. Bs.63.282,73) del monto demandado que asciende a Bs. Bs.632.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"519\",\n \"U_ClienNom\" : \"VILTE \u0026 FLORES ICC SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-10-13T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Natalio Zegarra\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"870\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Natalio Zegarra\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 3645,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000519-SR-000546\",\n \"Name\" : \"PROCESO COACTIVO SOCIAL - AFP PREVISIÓN ct. VILTE Y FLORES\",\n \"ValidFrom\" : \"2022-10-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"EL HONORARIO CORRESPONDE AL 10% DEL MONTO DEMANDADO (Bs. 91.789,95). El Dr. Claure se encuentra anal\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"519\",\n \"U_ClienNom\" : \"VILTE \u0026 FLORES ICC SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-10-15T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Natalio Zegarra\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"871\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Natalio Zegarra\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 3648,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000519-SR-000549\",\n \"Name\" : \"PROVIVIENDA ct. VILTE Y FLORES - EJECUTIVO SOCIAL\",\n \"ValidFrom\" : \"2022-10-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"los honorarios se establecen mediante igual conjuntamente con otros procesos judiciales y serán pag\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"519\",\n \"U_ClienNom\" : \"VILTE \u0026 FLORES ICC SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-10-25T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Natalio Zegarra\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"872\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Natalio Zegarra\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 3658,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000519-SR-000550\",\n \"Name\" : \"AFP PREVISIÓN ct. LUIS VILTE BELLIDO - EMPRESA UNIPERSONAL - COACTIVO SOCIAL\",\n \"ValidFrom\" : \"2022-10-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"los honorarios se pagan segun igual profesional conjuntamente con la tramitación de otros procesos\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"519\",\n \"U_ClienNom\" : \"VILTE \u0026 FLORES ICC SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-10-25T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Natalio Zegarra\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"873\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Natalio Zegarra\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 3659,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000519-SR-000556\",\n \"Name\" : \"AFP FUTURO DE BOLIVIA ct. LUIS VILTE BELLIDO - COACTIVO SOCIAL\",\n \"ValidFrom\" : \"2022-11-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"LOS HONORARIOS SE PAGA MENSUAMENTE. Según correo electrónico de fecha 30/nov/2024 Dr. Natalio Zega\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"519\",\n \"U_ClienNom\" : \"VILTE \u0026 FLORES ICC SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-11-15T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Natalio Zegarra\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"874\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Natalio Zegarra\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 3712,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000519-SR-000557\",\n \"Name\" : \"SEGUNDO PROCESO - CAJA PETROLERA DE SALUD ct. VILTE BELLIDO INGENIEROS\",\n \"ValidFrom\" : \"2022-11-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"el cliente paga un honorario mensual a ser determinado en la iguala profesional Según correo electr\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"519\",\n \"U_ClienNom\" : \"VILTE \u0026 FLORES ICC SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-11-22T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Natalio Zegarra\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"875\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Natalio Zegarra\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 3724,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000519-SR-000558\",\n \"Name\" : \"PROCESO COACTIVO SOCIAL - CAJA PETROLERA DE SALUD ct. MEAN MACHINE - ANDRES FLORES\",\n \"ValidFrom\" : \"2022-11-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"el cliente paga un honorario mensual a ser determinado en la iguala profesional Según correo electr\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"519\",\n \"U_ClienNom\" : \"VILTE \u0026 FLORES ICC SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-11-22T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Natalio Zegarra\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"876\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Natalio Zegarra\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 3725,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000519-SR-000743\",\n \"Name\" : \"PROCESO COACTIVO SOCIAL - GESTORA PUBLICA ct. VILTE Y FLORES\",\n \"ValidFrom\" : \"2023-10-18T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 5000.0,\n \"U_Comentarios\" : \"Según correo electrónico de fecha 30/nov/2024 Dr. Natalio Zegarra se procede a la inactivación de\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"519\",\n \"U_ClienNom\" : \"VILTE \u0026 FLORES ICC SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-10-18T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Natalio Zegarra\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"877\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Natalio Zegarra\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 4524,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000519-SR-000763\",\n \"Name\" : \"PROCESO LABORAL BERNARDINO SUCASAYA ct. VILTE Y FLORES ICC SRL\",\n \"ValidFrom\" : \"2023-11-16T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"La propuesta sobre pago de honorarios continua siendo analizada por EMBA Según correo electrónico\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"519\",\n \"U_ClienNom\" : \"VILTE \u0026 FLORES ICC SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-11-16T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Natalio Zegarra\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"878\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Natalio Zegarra\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 4595,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000519-SR-000798\",\n \"Name\" : \"PROCESO LABORAL - MARTIN ERAZO ct. VILTE Y FLORES\",\n \"ValidFrom\" : \"2019-09-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 8141.150,\n \"U_Comentarios\" : \"El pago de honorarios ha sido establecido de la siguiente manera 40% con la respuesta a la demanda,\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"519\",\n \"U_ClienNom\" : \"VILTE \u0026 FLORES ICC SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2019-09-12T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Natalio Zegarra\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"1344\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Natalio Zegarra\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 1663,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000519-SR-000988\",\n \"Name\" : \"Servicios Legales Mensuales (FM)\",\n \"ValidFrom\" : \"2024-01-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Según correo electrónico de fecha 30/nov/2024 Dr. Natalio Zegarra se procede a la inactivación de\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"519\",\n \"U_ClienNom\" : \"VILTE \u0026 FLORES ICC SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Natalio Zegarra\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"1512\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Natalio Zegarra\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000519-SR-001169\",\n \"Name\" : \"JUAN TUMIRI HUANCA ct. VILTE \u0026 FLORES ICC\",\n \"ValidFrom\" : \"2024-04-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"El cliente debe pagar un monto fijo mensual de Bs. 5000 por la tramitacion de varios procesos judici\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"519\",\n \"U_ClienNom\" : \"VILTE \u0026 FLORES ICC SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Natalio Zegarra\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2832\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Natalio Zegarra\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000519-SR-001170\",\n \"Name\" : \"CARLOS QUISPE - CONCEPCION CANO ct. VILTE Y FLORES\",\n \"ValidFrom\" : \"2024-04-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"El cliente debe pagar mensualmente por honorarios la suma de Bs 5000 por el patrocinio de varios pro\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"519\",\n \"U_ClienNom\" : \"VILTE \u0026 FLORES ICC SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Natalio Zegarra\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2833\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Natalio Zegarra\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000520-SR-000849\",\n \"Name\" : \"Registro VIPFE - subsanación observaciones - seguimiento\",\n \"ValidFrom\" : \"2022-10-17T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 3300.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"520\",\n \"U_ClienNom\" : \"Fundación Jala\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2022-10-17T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der.Civil\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"1300\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 3652,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000521-SR-000552\",\n \"Name\" : \"Revisión de contratos modelo\",\n \"ValidFrom\" : \"2022-11-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 990.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"521\",\n \"U_ClienNom\" : \"Delta Cargo S.R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-11-02T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der.Civil\",\n \"U_AbogadoEncargado\" : \"Fernando Landa\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"318\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Landa\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3675,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000521-SR-000850\",\n \"Name\" : \"Cobro embolpack\",\n \"ValidFrom\" : \"2022-10-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"521\",\n \"U_ClienNom\" : \"Delta Cargo S.R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2022-10-25T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der.Civil\",\n \"U_AbogadoEncargado\" : \"Carlos Fernando Landa Alejandro\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"1281\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Carlos Fernando Landa Alejandro\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3657,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000521-SR-001182\",\n \"Name\" : \"ADENDAS DE REDUCCION SALARIAL A SER SUSCRITAS CON EL SR. LUIS FERNANDO ORTIZ\",\n \"ValidFrom\" : \"2024-04-17T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"50% Inicio/50% Final\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"521\",\n \"U_ClienNom\" : \"Delta Cargo S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Paul Aramayo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2869\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Paul Aramayo\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000521-SR-001213\",\n \"Name\" : \"Acuerdo transaccional\",\n \"ValidFrom\" : \"2024-05-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"100% Final\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"521\",\n \"U_ClienNom\" : \"Delta Cargo S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Fernando Landa\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2921\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Landa\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000521-SR-001809\",\n \"Name\" : \"Cobro Importacruz\",\n \"ValidFrom\" : \"2024-12-26T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"521\",\n \"U_ClienNom\" : \"Delta Cargo S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Fernando Landa\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3797\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Landa\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:14-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:14-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=1420\u0026%24top=20 | Status: 200 | Duration: 96.0027ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:14 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000521-SR-001812\",\n \"Name\" : \"Asesoramiento legal, acompañamiento a reuniones, redacción de documentos de reconocimientos de deu\",\n \"ValidFrom\" : \"2024-12-31T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"521\",\n \"U_ClienNom\" : \"Delta Cargo S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Paul Aramayo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3800\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Paul Aramayo\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000521-SR-001935\",\n \"Name\" : \"Verificación de activos\",\n \"ValidFrom\" : \"2025-03-23T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"521\",\n \"U_ClienNom\" : \"Delta Cargo S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Civil\",\n \"U_AbogadoEncargado\" : \"Fernando Landa\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3972\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Landa\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000522-SR-001087\",\n \"Name\" : \"TENENCIA GEL AIR FRESHENER NSOH29623-19EC\",\n \"ValidFrom\" : \"2024-02-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"522\",\n \"U_ClienNom\" : \"BRIGARD CASTRO S.A.S.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Registros Sanitarios-Regul.\",\n \"U_AbogadoEncargado\" : \"Fernando Jose Sanchez Peña Von Nagy\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2565\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Jose Sanchez Peña Von Nagy\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000522-SR-001088\",\n \"Name\" : \"TENENCIA DETERGENTE LIQUIDO PARA TODO TIPO DE ROPA GEL UNIVERDAL NSOH01662-21PE\",\n \"ValidFrom\" : \"2024-02-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"522\",\n \"U_ClienNom\" : \"BRIGARD CASTRO S.A.S.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Registros Sanitarios-Regul.\",\n \"U_AbogadoEncargado\" : \"Fernando Jose Sanchez Peña Von Nagy\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2566\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Jose Sanchez Peña Von Nagy\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000522-SR-001089\",\n \"Name\" : \"TENENCIA DETERGENTE EN POLVO PARA TODO TIPO DE ROPA COLORES VIVOS (PERSIL)\",\n \"ValidFrom\" : \"2024-02-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"522\",\n \"U_ClienNom\" : \"BRIGARD CASTRO S.A.S.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Registros Sanitarios-Regul.\",\n \"U_AbogadoEncargado\" : \"Fernando Jose Sanchez Peña Von Nagy\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2567\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Jose Sanchez Peña Von Nagy\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000522-SR-001090\",\n \"Name\" : \"TENENCIA DETERGENTE LIQUIDO PARA TODO TIPO DE ROPA GEL COLORES VIVOS (PERSIL)\",\n \"ValidFrom\" : \"2024-02-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"522\",\n \"U_ClienNom\" : \"BRIGARD CASTRO S.A.S.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Registros Sanitarios-Regul.\",\n \"U_AbogadoEncargado\" : \"Fernando Jose Sanchez Peña Von Nagy\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2568\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Jose Sanchez Peña Von Nagy\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000522-SR-001091\",\n \"Name\" : \"TENECIA DETERGENTE EN POLVO PARA TODO TIPO DE ROPA UNIVERSAL (PERSIL) NSOH01659-21PE\",\n \"ValidFrom\" : \"2024-02-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"522\",\n \"U_ClienNom\" : \"BRIGARD CASTRO S.A.S.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Registros Sanitarios-Regul.\",\n \"U_AbogadoEncargado\" : \"Fernando Jose Sanchez Peña Von Nagy\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2569\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Jose Sanchez Peña Von Nagy\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000522-SR-001092\",\n \"Name\" : \"TENENCIA RENUZIT SIMPLY VAINILLA GEL AIR PRESHENER NSOH09272-20CO\",\n \"ValidFrom\" : \"2024-02-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"522\",\n \"U_ClienNom\" : \"BRIGARD CASTRO S.A.S.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Registros Sanitarios-Regul.\",\n \"U_AbogadoEncargado\" : \"Fernando Jose Sanchez Peña Von Nagy\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2570\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Jose Sanchez Peña Von Nagy\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000522-SR-001100\",\n \"Name\" : \"Tenencia de Registros Sanitarios por año USD. 450\",\n \"ValidFrom\" : \"2024-03-04T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"522\",\n \"U_ClienNom\" : \"BRIGARD CASTRO S.A.S.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Registros Sanitarios-Regul.\",\n \"U_AbogadoEncargado\" : \"Fernando Jose Sanchez Peña Von Nagy\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2632\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Jose Sanchez Peña Von Nagy\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000523-SR-000551\",\n \"Name\" : \"Aceptación de herencia\",\n \"ValidFrom\" : \"2022-10-31T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 7000.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"523\",\n \"U_ClienNom\" : \"MARIA CRISTINA CARDENAS PONCE\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-10-31T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der.Civil\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"432\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3674,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000524-SR-000989\",\n \"Name\" : \"Outsourcing contable (FM)\",\n \"ValidFrom\" : \"2024-01-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"524\",\n \"U_ClienNom\" : \"Lilac Solutions Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"1513\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000525-SR-000626\",\n \"Name\" : \"Servicios Legales Tributarios y Regulatorios\",\n \"ValidFrom\" : \"2023-05-08T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"Socio USD. 230\\rAsociado Senior USD. 180\\rAsociado USD. 150\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"525\",\n \"U_ClienNom\" : \"RIDETECH BOL S.R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa por hora\",\n \"U_FechaCreacionP\" : \"2023-05-08T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Teddy Mercado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"18\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Teddy Mercado\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : 4109,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000525-SR-000648\",\n \"Name\" : \"Servicios Legales Corporativos (por hora)\",\n \"ValidFrom\" : \"2023-06-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"525\",\n \"U_ClienNom\" : \"RIDETECH BOL S.R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa por hora\",\n \"U_FechaCreacionP\" : \"2023-06-01T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"Fernando Landa\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"19\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Landa\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : 4164,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000525-SR-000731\",\n \"Name\" : \"Ampliación de Objeto Social\",\n \"ValidFrom\" : \"2023-10-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2200.0,\n \"U_Comentarios\" : \"Cambio de líder de Luis a Fernando\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"525\",\n \"U_ClienNom\" : \"RIDETECH BOL S.R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-10-09T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Carlos Fernando Landa Alejandro\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"491\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Carlos Fernando Landa Alejandro\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4501,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000525-SR-000732\",\n \"Name\" : \"Transferencia de cuotas de capital\",\n \"ValidFrom\" : \"2023-10-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1500.0,\n \"U_Comentarios\" : \"Se cambio de líder de Luis a Fernando.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"525\",\n \"U_ClienNom\" : \"RIDETECH BOL S.R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-10-09T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Carlos Fernando Landa Alejandro\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"492\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Carlos Fernando Landa Alejandro\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4502,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000525-SR-000754\",\n \"Name\" : \"Domicilio Legal Sucursal Cochabamba (oficinas MB)\",\n \"ValidFrom\" : \"2023-10-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 350.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"525\",\n \"U_ClienNom\" : \"RIDETECH BOL S.R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-10-25T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"Fernando Landa\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"493\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Landa\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 4560,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000525-SR-000766\",\n \"Name\" : \"CAMBIO DE DOMICILIO PRINCIPAL\",\n \"ValidFrom\" : \"2023-11-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"525\",\n \"U_ClienNom\" : \"RIDETECH BOL S.R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-11-20T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 4597,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000525-SR-000965\",\n \"Name\" : \"Servicios de Outsourcing\",\n \"ValidFrom\" : \"2022-11-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"El honorario se determina en función al número de registros contables y personal.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"525\",\n \"U_ClienNom\" : \"RIDETECH BOL S.R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-11-15T00:00:00Z\",\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"1448\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000525-SR-001648\",\n \"Name\" : \"Servicios de apoyo preparacion y llenado form RIOF\",\n \"ValidFrom\" : \"2024-10-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Servicio trimestral para llenado y envío de formularios RIOF\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"525\",\n \"U_ClienNom\" : \"RIDETECH BOL S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3511\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000525-SR-002023\",\n \"Name\" : \"Estudio precios de transferencia\",\n \"ValidFrom\" : \"2025-05-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Estudio de precios de transferencia\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"525\",\n \"U_ClienNom\" : \"RIDETECH BOL S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"MB Negocios\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4302\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:14-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:14-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=1440\u0026%24top=20 | Status: 200 | Duration: 108.7847ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:14 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000526-SR-000960\",\n \"Name\" : \"VISA DE 30 DIAS POR TRABAJO EN AEROPUERTO - MIKE ALBERTO MONTERO SUAREZ\",\n \"ValidFrom\" : \"2022-11-28T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 330.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 330 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"526\",\n \"U_ClienNom\" : \"SERPROYTEC S.A.C.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-11-28T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado Ramirez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"1444\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado Ramirez\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3728,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000526-SR-000961\",\n \"Name\" : \"VISA DE 30 DIAS POR TRABAJO EN AEROPUERTO - VICTOR RICARDO GUTIERREZ REYES\",\n \"ValidFrom\" : \"2022-11-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 330.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 330 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"526\",\n \"U_ClienNom\" : \"SERPROYTEC S.A.C.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-11-29T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado Ramirez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"1445\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado Ramirez\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3737,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000527-SR-000962\",\n \"Name\" : \"Constitución Sociedad\",\n \"ValidFrom\" : \"2022-11-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"527\",\n \"U_ClienNom\" : \"DEVELOOP SOFTWARE, S.L\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-11-25T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Alvaro Araoz Ardaya\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"1499\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Alvaro Araoz Ardaya\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 3726,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000527-SR-000963\",\n \"Name\" : \"Domicilio Fiscal\",\n \"ValidFrom\" : \"2023-01-14T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 300.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"527\",\n \"U_ClienNom\" : \"DEVELOOP SOFTWARE, S.L\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-01-14T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Alvaro Araoz Ardaya\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"1446\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Alvaro Araoz Ardaya\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3806,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000528-SR-000772\",\n \"Name\" : \"Servicios de Outsourcing contable y tributario\",\n \"ValidFrom\" : \"2023-11-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"Honorario variable en base a cantidad de operaciones.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"528\",\n \"U_ClienNom\" : \"Industrias Feniziam Bolivia S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-11-22T00:00:00Z\",\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"403\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4607,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000528-SR-001016\",\n \"Name\" : \"Servicios Legales Mensuales (FM)\",\n \"ValidFrom\" : \"2024-02-14T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"528\",\n \"U_ClienNom\" : \"Industrias Feniziam Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2328\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000528-SR-001863\",\n \"Name\" : \"Servicios Legales Mensuales por hora (on demand)\",\n \"ValidFrom\" : \"2025-02-03T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Se acordó USD. 150.- la hora más impuestos, independientemente del cargo del abogado que trabaje.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"528\",\n \"U_ClienNom\" : \"Industrias Feniziam Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3878\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000528-SR-001865\",\n \"Name\" : \"Síndicos Titular y Suplente\",\n \"ValidFrom\" : \"2025-02-03T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"El importe se cobra hasta el mes de agosto 2025 y a partir de septiembre 2025 se debe incrementar a\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"528\",\n \"U_ClienNom\" : \"Industrias Feniziam Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3880\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000530-SR-000594\",\n \"Name\" : \"Asesoramiento Legal Permanente\",\n \"ValidFrom\" : \"2023-03-06T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1000.0,\n \"U_Comentarios\" : \"A partir del mes de Enero 2024 cambia honorarios por horas.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"530\",\n \"U_ClienNom\" : \"INVERSIONES TL S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa retainer\",\n \"U_FechaCreacionP\" : \"2023-03-06T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"Ines Ayala\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 20,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"151\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ines Ayala\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : 4002,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000530-SR-000677\",\n \"Name\" : \"RepresentaciónLegal\",\n \"ValidFrom\" : \"2023-07-28T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 250.0,\n \"U_Comentarios\" : \"Cobrar desde el 01 de abril de 2023\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"530\",\n \"U_ClienNom\" : \"INVERSIONES TL S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-07-28T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"Ines Ayala\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"731\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ines Ayala\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 4238,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000530-SR-000678\",\n \"Name\" : \"Sindicatura\",\n \"ValidFrom\" : \"2023-07-28T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 250.0,\n \"U_Comentarios\" : \"Cobrar desde el 01 de abril de 2023\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"530\",\n \"U_ClienNom\" : \"INVERSIONES TL S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-07-28T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"Ines Ayala\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"732\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ines Ayala\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 4237,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000530-SR-000710\",\n \"Name\" : \"PERMANENCIA TRANSITORIA POR TRABAJO 180 DIAS - ULISES ESCOBAR GARCIA\",\n \"ValidFrom\" : \"2023-09-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 810.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 810 INCLUYEN GASTOS E IMPUESTO DE LEY.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"530\",\n \"U_ClienNom\" : \"INVERSIONES TL S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-09-13T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"733\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4348,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000530-SR-000711\",\n \"Name\" : \"PERMANENCIA TRANSITORIA POR TRABAJO 180 DIAS - CARLA PATRICIA ORELLANA DEXTRE\",\n \"ValidFrom\" : \"2023-09-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 810.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 810 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"530\",\n \"U_ClienNom\" : \"INVERSIONES TL S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-09-13T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"734\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4349,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000530-SR-000712\",\n \"Name\" : \"PERMANENCIA TRANSITORIA POR TRABAJO 180 DIAS - JHON LEWIS SAMIR YOVERA ANTON\",\n \"ValidFrom\" : \"2023-09-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 810.0,\n \"U_Comentarios\" : \"LOS HONORARIOS USD. 810 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"530\",\n \"U_ClienNom\" : \"INVERSIONES TL S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-09-13T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"735\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4350,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000530-SR-000713\",\n \"Name\" : \"PERMANENCIA TRANSITORIA POR TRABAJO 180 DIAS - DANIEL LEONCIO DIAZ MENOR\",\n \"ValidFrom\" : \"2023-09-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 810.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 810 INCLUYEN GASTOS E IMPUESTOS DE LEY. / Según Triveño Inactivar - no se r\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"530\",\n \"U_ClienNom\" : \"INVERSIONES TL S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-09-13T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"736\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4351,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000530-SR-000714\",\n \"Name\" : \"Residencia Mercosur por dos años- Luigi Cristian Cruzado Villanueva\",\n \"ValidFrom\" : \"2023-09-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 810.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 810 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"530\",\n \"U_ClienNom\" : \"INVERSIONES TL S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-09-13T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"737\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4352,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000530-SR-000715\",\n \"Name\" : \"PERMANENCIA TRANSITORIA POR TRABAJO 180 DIAS - ANGELA BRENDA ROJAS RUIZ\",\n \"ValidFrom\" : \"2023-09-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 810.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 810 INCLUYEN GASTOS E IMPUESTO DE LEY./ Según Triveño Inactivar - no se rea\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"530\",\n \"U_ClienNom\" : \"INVERSIONES TL S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-09-13T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"738\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4353,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000530-SR-000716\",\n \"Name\" : \"PERMANENCIA TRANSITORIA POR TRABAJO 180 DIAS - CARMEN LUZ ANGELES BAKUS\",\n \"ValidFrom\" : \"2023-09-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 810.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 810 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"530\",\n \"U_ClienNom\" : \"INVERSIONES TL S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-09-13T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"739\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4354,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000530-SR-000717\",\n \"Name\" : \"PERMANENCIA TRANSITORIA POR TRABAJO 180 DIAS - ZULEMA DIHONOR REYES CLEMENTE\",\n \"ValidFrom\" : \"2023-09-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 810.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 810 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"530\",\n \"U_ClienNom\" : \"INVERSIONES TL S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-09-13T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"740\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4356,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000530-SR-000773\",\n \"Name\" : \"SERVICIOS DE OUTSOURCING CONTABLE, TRIBUTARIO Y PAYROLL\",\n \"ValidFrom\" : \"2023-11-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"Se crea por cambio de entidad: Enero 2023 a abril 2023: USD 600 por mes Mayo y junio 2023: USD 1000 por mes Julio a septiembre 2023: USD 1500 por mes Diciembre 2023: USD 1500 por mes\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"530\",\n \"U_ClienNom\" : \"TAI LOY\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-11-22T00:00:00Z\",\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado Ramirez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado Ramirez\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 4605,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:14-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:14-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=1460\u0026%24top=20 | Status: 200 | Duration: 108.424ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:14 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000530-SR-000785\",\n \"Name\" : \"Licencia de Funcionamiento Sucursal NUR\",\n \"ValidFrom\" : \"2023-12-05T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"Para este tema, tercerizaremos el servicio y se tendrá un gasto de aproximadamente Bs. 1500.-\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"530\",\n \"U_ClienNom\" : \"INVERSIONES TL S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-12-05T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der.Civil\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"742\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4627,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000530-SR-000964\",\n \"Name\" : \"CONSTITUCION DE S A\",\n \"ValidFrom\" : \"2022-12-06T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 3000.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"530\",\n \"U_ClienNom\" : \"TAI LOY\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-12-06T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado Ramirez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 3752,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000530-SR-000999\",\n \"Name\" : \"Cedula para extranjeros - HEYLEN MARGOT CAMPOS CAMACHO\",\n \"ValidFrom\" : \"2024-02-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"530\",\n \"U_ClienNom\" : \"INVERSIONES TL S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2297\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000530-SR-001007\",\n \"Name\" : \"Carnet extranjero - HEYLEN MARGOT CAMPOS CAMACHO\",\n \"ValidFrom\" : \"2024-02-05T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Según Triveño Inactivar- por ser proyecto duplicado\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"530\",\n \"U_ClienNom\" : \"INVERSIONES TL S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : null,\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2308\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000530-SR-001009\",\n \"Name\" : \"Permanencia temporal de 2 años Mercosur - HEYLEN MARGOT CAMPOS CAMACHO\",\n \"ValidFrom\" : \"2024-02-05T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"530\",\n \"U_ClienNom\" : \"INVERSIONES TL S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2312\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000530-SR-001234\",\n \"Name\" : \"CEDULA DE EXTRANJERO - LUIGI CRISTIAN CRUZADO VILLANUEVA\",\n \"ValidFrom\" : \"2024-05-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"100% Final /LOS HONORARIOS DE USD. 257.83 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"530\",\n \"U_ClienNom\" : \"INVERSIONES TL S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2957\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000530-SR-001235\",\n \"Name\" : \"Permanencia transitoria 180 dias/ JOSE ANTONIO URTECHO RADA\",\n \"ValidFrom\" : \"2024-05-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"100% Final /Permanencia transitoria de 180 días se quedo con el cliente en la suma de 810.- USD.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"530\",\n \"U_ClienNom\" : \"INVERSIONES TL S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2958\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000530-SR-001265\",\n \"Name\" : \"PERMANENCIA MERCOSUR POR 2 AÑOS - JOSE ANTONIO URTECHO RADA\",\n \"ValidFrom\" : \"2024-06-06T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 750; INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"530\",\n \"U_ClienNom\" : \"INVERSIONES TL S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3023\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000530-SR-001284\",\n \"Name\" : \"Constitución de Sociedad Anónima\",\n \"ValidFrom\" : \"2024-06-14T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"100% al final\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"530\",\n \"U_ClienNom\" : \"INVERSIONES TL S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3053\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000530-SR-001325\",\n \"Name\" : \"CEDULA DE EXTRANJERO - JOSE ANTONIO URTECHO RADA\",\n \"ValidFrom\" : \"2024-06-27T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 257.83 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"530\",\n \"U_ClienNom\" : \"INVERSIONES TL S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3096\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000530-SR-001765\",\n \"Name\" : \"RESIDENCIA MERCOSUR DE 2 AÑOS - LUIS ANTONIO HERNANDEZ MUÑANTE\",\n \"ValidFrom\" : \"2024-12-08T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"530\",\n \"U_ClienNom\" : \"INVERSIONES TL S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3741\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000530-SR-001766\",\n \"Name\" : \"CEDULA DE EXTRANJERO - LUIS ANTONIO HERNANDEZ MUÑANTE\",\n \"ValidFrom\" : \"2024-12-08T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"530\",\n \"U_ClienNom\" : \"INVERSIONES TL S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3742\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000530-SR-001968\",\n \"Name\" : \"Residencia Mercosur por dos años - DIEGO ALFONSO VILLEGAS CASTAÑEDA\",\n \"ValidFrom\" : \"2025-04-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"530\",\n \"U_ClienNom\" : \"INVERSIONES TL S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4189\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000530-SR-001969\",\n \"Name\" : \"Cedula de extranjero - DIEGO ALFONSO VILLEGAS CASTAÑEDA\",\n \"ValidFrom\" : \"2025-04-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"530\",\n \"U_ClienNom\" : \"INVERSIONES TL S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4190\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000531-SR-000573\",\n \"Name\" : \"VOD DE 90 DIAS POR TRABAJO - EMILIANO NICOLAS BEURET\",\n \"ValidFrom\" : \"2023-01-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 770.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 770 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"531\",\n \"U_ClienNom\" : \"SGS ARGENTINA S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-01-24T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 3814,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000531-SR-000618\",\n \"Name\" : \"TERCERA VISA DE 30 DIAS POR TRABAJO - RODOLFO OMAR CORDOVA RIVERA\",\n \"ValidFrom\" : \"2023-04-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 358.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 358.64 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"531\",\n \"U_ClienNom\" : \"SGS ARGENTINA S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-04-21T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 4062,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000531-SR-000637\",\n \"Name\" : \"SEGUNDA AMPLIACION DE VISA DE 30 DIAS POR TRABAJO - RODRIGO DA SILVA MARCILIO\",\n \"ValidFrom\" : \"2023-05-26T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 358.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 358,64 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"531\",\n \"U_ClienNom\" : \"SGS ARGENTINA S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-05-26T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 4153,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000531-SR-000638\",\n \"Name\" : \"SEGUNDA AMPLIACION DE VISA TRANSITORIA 30 DIAS POR TRABAJO - GUIDO LEONEL ROUMEC\",\n \"ValidFrom\" : \"2023-05-26T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 358.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 358.64 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"531\",\n \"U_ClienNom\" : \"SGS ARGENTINA S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-05-26T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 4154,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000531-SR-000639\",\n \"Name\" : \"SEGUNDA AMPLIACION DE VISA TRANSITORIA 30 DIAS POR TRABAJO - MATIAS SEBASTIAN RAINONE\",\n \"ValidFrom\" : \"2023-05-26T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 358.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 358.64 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"531\",\n \"U_ClienNom\" : \"SGS ARGENTINA S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-05-26T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 4155,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000531-SR-000966\",\n \"Name\" : \"VISA DE 30 DIAS POR TRABAJO EN AEROPUERTO - GUIDO LEONEL ROUMEC\",\n \"ValidFrom\" : \"2023-03-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 300.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 300 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"531\",\n \"U_ClienNom\" : \"SGS Argentina S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-03-21T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"1449\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4025,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:14-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:14-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=1480\u0026%24top=20 | Status: 200 | Duration: 93.9584ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:14 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000533-SR-000571\",\n \"Name\" : \"Servicios Legales Mensuales\",\n \"ValidFrom\" : \"2023-01-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2500.0,\n \"U_Comentarios\" : \"Retainer mensual: USD 1500 Representación legal y domicilio: USD 800 Adicionar representación lega\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"533\",\n \"U_ClienNom\" : \"TECTONIQ BOLIVIA SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa retainer\",\n \"U_FechaCreacionP\" : \"2023-01-20T00:00:00Z\",\n \"U_AreaProyecto\" : \"Energía y Recursos Naturales\",\n \"U_AbogadoEncargado\" : \"Daniel Arredondo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 12,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"152\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Daniel Arredondo\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 3811,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000533-SR-000774\",\n \"Name\" : \"Servicios de Outsourcing contable, tributario, labora y tesorería.\",\n \"ValidFrom\" : \"2023-11-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"Honorario variable en base al alcance y número de operaciones\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"533\",\n \"U_ClienNom\" : \"TECTONIQ BOLIVIA SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-11-22T00:00:00Z\",\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"745\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4608,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000533-SR-001373\",\n \"Name\" : \"Servicios de apoyo preparacion y llenado form RIOF\",\n \"ValidFrom\" : \"2024-07-18T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Preparación y envío del formulario RIOF al BCB. Servicio trimestral para el envío de la informaci\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"533\",\n \"U_ClienNom\" : \"TECTONIQ BOLIVIA SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3153\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000534-SR-001122\",\n \"Name\" : \"Insumos Agrícolas\",\n \"ValidFrom\" : \"2024-03-14T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"50% Inicio/50% Final - nota: El 50% inicial debió haberse pagado en 2023\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"534\",\n \"U_ClienNom\" : \"ITACAMBA CEMENTO SA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Administrativo\",\n \"U_AbogadoEncargado\" : \"Daniel Arredondo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2698\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Daniel Arredondo\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000535-SR-000561\",\n \"Name\" : \"LINEA DE CREDITO CON PROPARCO\",\n \"ValidFrom\" : \"2022-12-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 3500.0,\n \"U_Comentarios\" : \"\\\"3500 + IVA\\rSe debe pedir el reembolso del courrier del envío que se realizara desde la oficina de Santa Cruz (Ines Ayala) a Francia\\\"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"535\",\n \"U_ClienNom\" : \"COOPERATIVA DE AHORRO Y CREDITO ABIERTA “SAN MARTIN DE PORRES” R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-12-13T00:00:00Z\",\n \"U_AreaProyecto\" : \"Banca, Finanzas y Mercado de Capitales\",\n \"U_AbogadoEncargado\" : \"Teddy Alberto Mercado Carrion\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Teddy Alberto Mercado Carrion\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 3774,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000536-SR-000588\",\n \"Name\" : \"RESIDENCIA MERCOSUR DE 2 AÑOS - LUIGI MICHEL MEZA HERRERA\",\n \"ValidFrom\" : \"2023-02-23T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 600.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 600 INCLUYE GASTOS E IMPUESTOS DE LEY./ Según Triveño Inactivar - este tram\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"536\",\n \"U_ClienNom\" : \"PRECISION SPA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-02-23T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"481\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3926,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000536-SR-000589\",\n \"Name\" : \"RESIDENCIA MERCOSUR DE 2 AÑOS - LIDIA MARINA ZAVALA ACUÑA\",\n \"ValidFrom\" : \"2023-02-23T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 600.0,\n \"U_Comentarios\" : \"LOS HONORARIOS INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"536\",\n \"U_ClienNom\" : \"PRECISION SPA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-02-23T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"482\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3927,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000536-SR-000590\",\n \"Name\" : \"RESIDENCIA MERCOSUR DE 2 AÑOS - SEBASTIAN MATEO MEZA ZAVALA\",\n \"ValidFrom\" : \"2023-02-23T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 600.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 600 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"536\",\n \"U_ClienNom\" : \"PRECISION SPA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-02-23T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"483\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3928,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000536-SR-000967\",\n \"Name\" : \"Constitucion de Sociedad\",\n \"ValidFrom\" : \"2022-12-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2000.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"536\",\n \"U_ClienNom\" : \"PRECISION SPA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-12-15T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Andres Moreno Gutierrez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"1450\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andres Moreno Gutierrez\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3776,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000537-SR-000653\",\n \"Name\" : \"Consultas Legales por hora\",\n \"ValidFrom\" : \"2023-06-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"El honorario no incluye IVA\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"537\",\n \"U_ClienNom\" : \"Embajada de Suiza\",\n \"U_FormaCobro\" : \"Honorario tarifa por hora\",\n \"U_FechaCreacionP\" : \"2023-06-12T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Noelia Sanjinés\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"9\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Noelia Sanjinés\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : 4179,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000537-SR-000718\",\n \"Name\" : \"Terminación Laboral - Mónica Virginia Calyzaya Mendoza\",\n \"ValidFrom\" : \"2023-09-14T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 90.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"537\",\n \"U_ClienNom\" : \"Embajada de Suiza\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-09-14T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"337\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4358,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000537-SR-000719\",\n \"Name\" : \"Terminación laboral - Blanca Carmiña Antezana\",\n \"ValidFrom\" : \"2023-09-14T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 90.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"537\",\n \"U_ClienNom\" : \"Embajada de Suiza\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-09-14T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"338\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4359,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000537-SR-000720\",\n \"Name\" : \"Terminación Laboral - Judy Leny Torrez Ossio\",\n \"ValidFrom\" : \"2023-09-14T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 90.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"537\",\n \"U_ClienNom\" : \"Embajada de Suiza\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-09-14T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"339\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4360,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000537-SR-000790\",\n \"Name\" : \"REVISIÓN DE DOCUMENTOS - FISCALIZACIÓN SENASIR\",\n \"ValidFrom\" : \"2023-12-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"537\",\n \"U_ClienNom\" : \"Embajada de Suiza\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-12-07T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado Ramirez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"340\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado Ramirez\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4638,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000537-SR-001279\",\n \"Name\" : \"Terminación laboral Paola Katherin Portugal Morales\",\n \"ValidFrom\" : \"2024-06-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"537\",\n \"U_ClienNom\" : \"Embajada de Suiza\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3050\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000537-SR-001280\",\n \"Name\" : \"Terminación laboral Stefany Alina Gutiérrez Soliz\",\n \"ValidFrom\" : \"2024-06-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"537\",\n \"U_ClienNom\" : \"Embajada de Suiza\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3051\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000537-SR-001281\",\n \"Name\" : \"Terminación laboral María Amparo Lourdes Tejerina\",\n \"ValidFrom\" : \"2024-06-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"537\",\n \"U_ClienNom\" : \"Embajada de Suiza\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3052\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000538-SR-000855\",\n \"Name\" : \"Regularizacion títulos y transferencia inmueble\",\n \"ValidFrom\" : \"2022-12-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 920.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"538\",\n \"U_ClienNom\" : \"Patricia Miranda\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2022-12-21T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der.Civil\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"1331\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 3781,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000541-SR-000570\",\n \"Name\" : \"Proceso de reorganización empresarial internacional\",\n \"ValidFrom\" : \"2023-01-16T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 12000.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"541\",\n \"U_ClienNom\" : \"GRUPO EMPRESARIAL DE INVERSIONES NACIONAL VIDA S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-01-16T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Andrés Moreno\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"377\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andrés Moreno\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3808,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000541-SR-000877\",\n \"Name\" : \"Proceso Judicial Ejecutivo cobro de Letras de Cambio\",\n \"ValidFrom\" : \"2023-09-14T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 9000.0,\n \"U_Comentarios\" : \"Adicionalmente a estos honorarios fijos, se ha pactado con el Cliente, un honorario variable (succes\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"541\",\n \"U_ClienNom\" : \"GRUPO EMPRESARIAL DE INVERSIONES NACIONAL VIDA S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2023-09-14T00:00:00Z\",\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"1301\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 4361,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:14-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:15-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=1500\u0026%24top=20 | Status: 200 | Duration: 94.5913ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:15 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000541-SR-001216\",\n \"Name\" : \"Informe Legal sobre Terreno Zona Norte - Santa Cruz\",\n \"ValidFrom\" : \"2024-05-03T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"50% Inicio/50% Final\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"541\",\n \"U_ClienNom\" : \"GRUPO EMPRESARIAL DE INVERSIONES NACIONAL VIDA S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Civil\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2925\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000541-SR-001529\",\n \"Name\" : \"Proceso Ejecutivo Letras de Cambio II\",\n \"ValidFrom\" : \"2024-09-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Por favor para la facturación que deberá ser en Bs., tomar nota que el tipo de cambio acordado con\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"541\",\n \"U_ClienNom\" : \"GRUPO EMPRESARIAL DE INVERSIONES NACIONAL VIDA S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3375\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000543-SR-000778\",\n \"Name\" : \"REVISION DE SBLC DISMATEC\",\n \"ValidFrom\" : \"2023-11-27T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"543\",\n \"U_ClienNom\" : \"LG ELECTRONICS PERU\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-11-27T00:00:00Z\",\n \"U_AreaProyecto\" : \"Comercial (Contratación, informes y otros)\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 4614,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000543-SR-000992\",\n \"Name\" : \"Consultas sobre Contrato de Arrendamiento Orpubol\",\n \"ValidFrom\" : \"2024-02-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"543\",\n \"U_ClienNom\" : \"LG Electronics Perú\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Civil (Contratación, informes y otros)\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2290\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000543-SR-001117\",\n \"Name\" : \"Consultas sobre facturación- cargado de combustible a vehículos\",\n \"ValidFrom\" : \"2024-03-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Me pidieron que se facture urgente. Por favor crear urgente el asunto en TM\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"543\",\n \"U_ClienNom\" : \"LG Electronics Perú\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2660\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000544-SR-000577\",\n \"Name\" : \"Servicios de Outsourcing contable, tributario, laboral.\",\n \"ValidFrom\" : \"2023-02-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1400.0,\n \"U_Comentarios\" : \"Los honorarios son variables en función al volumen de operaciones.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"544\",\n \"U_ClienNom\" : \"TECH.EBIZ BOL S.R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-02-01T00:00:00Z\",\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"884\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3825,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000544-SR-000633\",\n \"Name\" : \"Servicios Legales Tributarios y Regulatorios (Por Hora)\",\n \"ValidFrom\" : \"2023-05-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"544\",\n \"U_ClienNom\" : \"YANGO DELIVERY BOLIVIA S.R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa por hora\",\n \"U_FechaCreacionP\" : \"2023-05-22T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Teddy Alberto Mercado Carrion\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"28\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Teddy Alberto Mercado Carrion\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : 4119,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000544-SR-000968\",\n \"Name\" : \"Apoyo administrativo registro de la compañía en la Caja de Salud\",\n \"ValidFrom\" : \"2023-12-27T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1000.0,\n \"U_Comentarios\" : \"El honorario de USD 1000 corresponde al alta de la compañía en caja de salud CORDES en LPB y SCZ. Registros adicionales tendrá un fee adicional de USD 400 por ciudad.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"544\",\n \"U_ClienNom\" : \"YANGO DELIVERY BOLIVIA S.R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-12-27T00:00:00Z\",\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado Ramirez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"1464\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado Ramirez\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4682,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000544-SR-001649\",\n \"Name\" : \"Servicios de apoyo preparacion y llenado form RIOF\",\n \"ValidFrom\" : \"2024-10-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Servicio trimestral de preparación y envío de formularios RIOF\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"544\",\n \"U_ClienNom\" : \"TECH.EBIZ BOL S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3512\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000544-SR-002024\",\n \"Name\" : \"Estudio precios de transferencia\",\n \"ValidFrom\" : \"2025-05-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Estudio de precios de transferencia sobre operaciones de 2024 por un total de USD8K a ser facturable\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"544\",\n \"U_ClienNom\" : \"TECH.EBIZ BOL S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"MB Negocios\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4303\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000545-SR-000578\",\n \"Name\" : \"PROJECT STARLINK\",\n \"ValidFrom\" : \"2023-02-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"Tarifa segun Engagement letter enviado a L. Chalco y M. Davila en 02/02/2023\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"545\",\n \"U_ClienNom\" : \"SPACE X\",\n \"U_FormaCobro\" : \"Honorario tarifa por hora\",\n \"U_FechaCreacionP\" : \"2023-02-02T00:00:00Z\",\n \"U_AreaProyecto\" : \"Telecomunicaciones\",\n \"U_AbogadoEncargado\" : \"Andres Moreno Gutierrez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andres Moreno Gutierrez\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa por hora\",\n \"U_CodAnterior\" : 3827,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000546-SR-000858\",\n \"Name\" : \"ARBITRAJE ZURICH INSURANCE COMPANY LTD V. ESTADO PLURINACIONAL DE BOLIVIA\",\n \"ValidFrom\" : \"2023-02-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 50000.0,\n \"U_Comentarios\" : \"\\\"Se factura mensual con reporte de actividades \\r\\\"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"546\",\n \"U_ClienNom\" : \"ZURICH INSURANCE COMPANY LTD\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2023-02-15T00:00:00Z\",\n \"U_AreaProyecto\" : \"Arbitraje\",\n \"U_AbogadoEncargado\" : \"Andres Moreno Gutierrez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andres Moreno Gutierrez\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa por hitos\",\n \"U_CodAnterior\" : 3843,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000546-SR-001081\",\n \"Name\" : \"Arbitraje Zurich Insurance Company Ltd v. Estado Plurinacional de Bolivia\",\n \"ValidFrom\" : \"2024-02-28T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"546\",\n \"U_ClienNom\" : \"Zurich Insurance Company Ltd\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Arbitraje\",\n \"U_AbogadoEncargado\" : \"Andrés Moreno\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2548\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andrés Moreno\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000548-SR-000649\",\n \"Name\" : \"Regularización Titanium y 515 Creative\",\n \"ValidFrom\" : \"2023-06-05T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2500.0,\n \"U_Comentarios\" : \"El 50% ya se facturo en GHAP, queda pendiente el 50% a facturar en TM\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"548\",\n \"U_ClienNom\" : \"Vivian Aguirre\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-06-05T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Ines Ayala\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"879\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ines Ayala\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4171,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000548-SR-000969\",\n \"Name\" : \"INFORME LEGAL/DUE DILIGENCE\",\n \"ValidFrom\" : \"2023-02-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 5000.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"548\",\n \"U_ClienNom\" : \"Vivian Aguirre\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-02-22T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Ines Ayala\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Moreno Gutierrez\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 3911,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000550-SR-000592\",\n \"Name\" : \"Informe Legal - análisis regulatorio\",\n \"ValidFrom\" : \"2023-02-27T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2847.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"550\",\n \"U_ClienNom\" : \"RIPIO HOLDING INC\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-02-27T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der.Mercantil-Banca\u0026Finanzas\",\n \"U_AbogadoEncargado\" : \"Rene Claure Veizaga\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"495\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Claure Veizaga\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3938,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000551-SR-000862\",\n \"Name\" : \"DD y Restructuración - Estructural\",\n \"ValidFrom\" : \"2023-02-28T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 4800.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"551\",\n \"U_ClienNom\" : \"CERÁMICA ESTRUCTURAL DE BOLIVIA S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2023-02-28T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Daniel Arredondo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"1264\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Daniel Arredondo\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 3944,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000552-SR-000863\",\n \"Name\" : \"DD y Restructuración - Pavinal\",\n \"ValidFrom\" : \"2023-02-28T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 4800.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"552\",\n \"U_ClienNom\" : \"INDUSTRIA CERÁMICA PAVINAL S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2023-02-28T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Daniel Arredondo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"1303\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Daniel Arredondo\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 3945,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000553-SR-000864\",\n \"Name\" : \"DD y Restructuración - INCERCRUZ\",\n \"ValidFrom\" : \"2023-02-28T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 4800.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"553\",\n \"U_ClienNom\" : \"INDUSTRIA CRUCEÑA DE CERÁMICAS LIMITADA - INCERCRUZ Ltda.\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2023-02-28T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Daniel Arredondo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"1304\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Daniel Arredondo\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 3946,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000554-SR-000970\",\n \"Name\" : \"PROJECT VESSEL\",\n \"ValidFrom\" : \"2023-06-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"BS\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 14750.0,\n \"U_Comentarios\" : \"Favor consultar honorario aplicable con Dr. L. Moreno\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"554\",\n \"U_ClienNom\" : \"Monterrey\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-06-29T00:00:00Z\",\n \"U_AreaProyecto\" : \"Comercial (Contratación, informes y otros)\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado Ramirez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"BOL\",\n \"U_Soc_Responsable\" : \"Luis Moreno Gutierrez\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 4203,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:15-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:15-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=1520\u0026%24top=20 | Status: 200 | Duration: 95.5513ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:15 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000555-SR-000865\",\n \"Name\" : \"DD y Restructuración - INCERCO\",\n \"ValidFrom\" : \"2023-02-28T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 4800.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"555\",\n \"U_ClienNom\" : \"INDUSTRIA DE CERÁMICAS COCHABAMBA LIMITADA - INCERCO Ltda.\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2023-02-28T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Daniel Arredondo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"1305\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Daniel Arredondo\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 3947,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000556-SR-000662\",\n \"Name\" : \"ASESORAMIENTO LEGAL PARA COMPRA DE 2 INMUEBLES EN LA CIUDAD DE COCHABAMBA\",\n \"ValidFrom\" : \"2023-07-05T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"BS\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 55000.0,\n \"U_Comentarios\" : \"Se pagará a la firma de la transferencia en el plazo máximo de 60 días. Coordinar con el Dr. Merino un posible adelanto.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"556\",\n \"U_ClienNom\" : \"Aceros Galvanizados S.R.L. Acergal\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-07-05T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Inmobiliario\",\n \"U_AbogadoEncargado\" : \"Carlos Merino Troche\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"BOL\",\n \"U_Soc_Responsable\" : \"Carlos Merino Troche\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 4214,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000556-SR-000971\",\n \"Name\" : \"REVISION CONTRATO CIVIL - CONTRTACIONES BREVES\",\n \"ValidFrom\" : \"2023-03-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"BS\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 180.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"556\",\n \"U_ClienNom\" : \"Aceros Galvanizados S.R.L. Acergal\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-07-05T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Laboral y de Seguridad Social\",\n \"U_AbogadoEncargado\" : \"Carlos Merino Troche\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Claure Veizaga\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 4004,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000556-SR-001432\",\n \"Name\" : \"Analisis Tributario de EEFF / Fusión de Sociedades\",\n \"ValidFrom\" : \"2024-08-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Cobro 60% al inicio y 40% al final, tipo de cambio 6.96\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"556\",\n \"U_ClienNom\" : \"Aceros Galvanizados S.R.L. Acergal\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Luis Valda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3265\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Valda\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000557-SR-000599\",\n \"Name\" : \"Servicios legales\",\n \"ValidFrom\" : \"2023-03-14T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"557\",\n \"U_ClienNom\" : \"EMPRESA CONSTRUCTORA HORUS Ltda\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-03-14T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"Ramiro Moreno Baldivieso\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"342\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ramiro Moreno Baldivieso\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : 4011,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000558-SR-000600\",\n \"Name\" : \"Servicios Legales Mensuales\",\n \"ValidFrom\" : \"2023-03-17T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"Empresa de Familia Moreno\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"558\",\n \"U_ClienNom\" : \"ANDESLINO S.R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-03-17T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"Luis Moreno\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"176\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Moreno\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : 4016,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000559-SR-000601\",\n \"Name\" : \"Servicios Legales Mensuales\",\n \"ValidFrom\" : \"2023-03-17T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"Empresa del Grupo Venado\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"559\",\n \"U_ClienNom\" : \"BIOFERM S.R.L. (GRUPO VENADO)\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-03-17T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"231\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : 4017,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000559-SR-000972\",\n \"Name\" : \"TRANSFERENCIA DE VEHICULO\",\n \"ValidFrom\" : \"2023-08-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 500.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"559\",\n \"U_ClienNom\" : \"BIOFERM S.R.L. (GRUPO VENADO)\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-08-30T00:00:00Z\",\n \"U_AreaProyecto\" : \"Civil (Contratación, informes y otros)\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 4289,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000559-SR-001436\",\n \"Name\" : \"Due Diligence Corporativo para Grupotec S.R.L, Servfin S.R.L., JEC Foods S.R.L., Active Foods S.R.L.\",\n \"ValidFrom\" : \"2024-08-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"559\",\n \"U_ClienNom\" : \"BIOFERM S.R.L. (GRUPO VENADO)\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3270\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000560-SR-000603\",\n \"Name\" : \"Servicios Legales Mensuales\",\n \"ValidFrom\" : \"2023-03-17T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"Empresa del Grupo Venado\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"560\",\n \"U_ClienNom\" : \"INDUSTRIAS FACRULESA S.A. (GRUPO VENADO)\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-03-17T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"401\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : 4018,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000560-SR-000724\",\n \"Name\" : \"Procedimiento Administrativo - Revocación de RAI\",\n \"ValidFrom\" : \"2023-09-19T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 500.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"560\",\n \"U_ClienNom\" : \"INDUSTRIAS FACRULESA S.A. (GRUPO VENADO)\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-09-19T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Constitucional\",\n \"U_AbogadoEncargado\" : \"Andre Luis Tejerina Queiroz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"402\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andre Luis Tejerina Queiroz\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4367,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000560-SR-001165\",\n \"Name\" : \"Elaboración y Presentación de RAI\",\n \"ValidFrom\" : \"2024-04-08T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"La Moneda es Bolivianos. El monto es Bs. 7.500,00 (Siete mil quinientos 00/100 bolivianos)/ 50% Ini\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"560\",\n \"U_ClienNom\" : \"INDUSTRIAS FACRULESA S.A. (GRUPO VENADO)\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Ambiental\",\n \"U_AbogadoEncargado\" : \"André Tejerina\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2828\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"André Tejerina\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000560-SR-001450\",\n \"Name\" : \"Obtención de Licencia para Actividades con Sustancias Peligrosas\",\n \"ValidFrom\" : \"2024-08-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"560\",\n \"U_ClienNom\" : \"INDUSTRIAS FACRULESA S.A. (GRUPO VENADO)\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Ambiental\",\n \"U_AbogadoEncargado\" : \"André Tejerina\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3285\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"André Tejerina\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000561-SR-000605\",\n \"Name\" : \"Servicios Legales Mensuales\",\n \"ValidFrom\" : \"2023-03-17T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"Empresa de Familia Moreno. NO SE FACTURA SOLO GASTOS Y HORAS\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"561\",\n \"U_ClienNom\" : \"MORENOBALDIVIESO INMOBILIARIA S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-03-17T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"441\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4021,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000562-SR-000606\",\n \"Name\" : \"Servicios Legales Mensuales\",\n \"ValidFrom\" : \"2023-03-18T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"562\",\n \"U_ClienNom\" : \"VEMASSA (GRUPO VENADO)\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-03-18T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"775\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : 4022,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000562-SR-001656\",\n \"Name\" : \"Proceso Civil contra Ketal Seguimiento\",\n \"ValidFrom\" : \"2024-10-16T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"562\",\n \"U_ClienNom\" : \"VEMASSA (GRUPO VENADO)\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Zeballos\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3552\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Zeballos\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000562-SR-001657\",\n \"Name\" : \"Proceso Civil Ketal - Hitos\",\n \"ValidFrom\" : \"2024-10-16T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"562\",\n \"U_ClienNom\" : \"VEMASSA (GRUPO VENADO)\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Zeballos\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3553\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Zeballos\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000563-SR-000607\",\n \"Name\" : \"Promoción Empresarial\",\n \"ValidFrom\" : \"2023-03-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"563\",\n \"U_ClienNom\" : \"John Deere (MX)\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-03-20T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Administrativo\",\n \"U_AbogadoEncargado\" : \"Andrés Moreno\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"419\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andrés Moreno\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4023,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000565-SR-001226\",\n \"Name\" : \"Constitución de Sociedad en Bolivia\",\n \"ValidFrom\" : \"2024-05-08T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"100% Final\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"565\",\n \"U_ClienNom\" : \"Biotrop Participações S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Teddy Mercado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2935\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Teddy Mercado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000565-SR-001614\",\n \"Name\" : \"Carta de Cobro\",\n \"ValidFrom\" : \"2024-10-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"No\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"565\",\n \"U_ClienNom\" : \"Biotrop Participações S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Civil\",\n \"U_AbogadoEncargado\" : \"Teddy Mercado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3467\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Teddy Mercado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:15-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:15-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=1540\u0026%24top=20 | Status: 200 | Duration: 103.3188ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:15 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000565-SR-001701\",\n \"Name\" : \"Carta de cobro II\",\n \"ValidFrom\" : \"2024-10-28T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"565\",\n \"U_ClienNom\" : \"Biotrop Participações S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3611\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000566-SR-000610\",\n \"Name\" : \"IPO DUE DILIGENCE, MODIFICACIONES CORPORATIVAS Y ACTOS SOCIETARIOS\",\n \"ValidFrom\" : \"2023-03-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2000.0,\n \"U_Comentarios\" : \"Pago de honorarios ya realizado\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"566\",\n \"U_ClienNom\" : \"INSTITUTO PRIVADO DE OFTALMOLOGIA S.R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-03-29T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Daniel Marcelo Arredondo Zelada\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Daniel Marcelo Arredondo Zelada\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 4035,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000566-SR-001354\",\n \"Name\" : \"Outsourcing contable (FM)\",\n \"ValidFrom\" : \"2024-07-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"El objetivo del servicio de “Outsourcing” es: i) brindar el asesoramiento para el uso de la Comp\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"566\",\n \"U_ClienNom\" : \"Instituto Privado de Oftalmología S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"MB Negocios\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3132\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000566-SR-002059\",\n \"Name\" : \"Elaboración de Actas y Actualización de Matrícula\",\n \"ValidFrom\" : \"2025-06-06T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"566\",\n \"U_ClienNom\" : \"Instituto Privado de Oftalmología S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Daniel Arredondo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"4378\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Daniel Arredondo\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000566-SR-002060\",\n \"Name\" : \"Constitución de Sociedad - Óptica/Café\",\n \"ValidFrom\" : \"2025-06-06T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"566\",\n \"U_ClienNom\" : \"Instituto Privado de Oftalmología S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Daniel Arredondo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"4380\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Daniel Arredondo\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000567-SR-000687\",\n \"Name\" : \"Préstamo Intercompany y Aumento de Capital Bpoint SRL\",\n \"ValidFrom\" : \"2023-08-23T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 8000.0,\n \"U_Comentarios\" : \"Posiblemente el costo sea asumido por Brinks Corporación o por Bpoint SRL.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"567\",\n \"U_ClienNom\" : \"BPOINT S.R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-08-23T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Rene Claure Veizaga\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"235\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Claure Veizaga\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4270,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000567-SR-000973\",\n \"Name\" : \"CONSTITUCION DE SRL\",\n \"ValidFrom\" : \"2023-03-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2540.0,\n \"U_Comentarios\" : \"El proyecto se creo inicialmente bajo Brinks Corporación y debe ser sustituido por este proyecto\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"567\",\n \"U_ClienNom\" : \"BPOINT S.R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-03-29T00:00:00Z\",\n \"U_AreaProyecto\" : \"Fintech, Innovación \u0026 Nuevas Tecnologí­as\",\n \"U_AbogadoEncargado\" : \"Rene Claure Veizaga\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Claure Veizaga\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 4036,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000567-SR-001209\",\n \"Name\" : \"Asesoría General por horas\",\n \"ValidFrom\" : \"2024-04-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Favor aplicar la misma tarifa horaria que se aplica a Brink´s Bolivia\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"567\",\n \"U_ClienNom\" : \"BPOINT S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Fintech \u0026 Nuevas Tecnologías\",\n \"U_AbogadoEncargado\" : \"Noelia Sanjinés\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2917\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Noelia Sanjinés\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000568-SR-000615\",\n \"Name\" : \"REGULARIZACION DE DOCUMENTOS INMUEBLE\",\n \"ValidFrom\" : \"2023-04-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 450.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"568\",\n \"U_ClienNom\" : \"DAISY TRIGOSO\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-04-13T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Inmobiliario\",\n \"U_AbogadoEncargado\" : \"Noelia Patricia Sanjinés Badani\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Noelia Patricia Sanjinés Badani\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 4051,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000569-SR-000616\",\n \"Name\" : \"DD, análisis estructura legal y constitución NEWCO\",\n \"ValidFrom\" : \"2023-04-17T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 27144.0,\n \"U_Comentarios\" : \"Propuesta enviada vía correo el 13/4/2023 y aceptada el mismo día por el cliente. \\rLos honorarios\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"569\",\n \"U_ClienNom\" : \"VICENTE SCAVONE \u0026 CIA S.A.E. SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-04-17T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Paul Aramayo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"858\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Paul Aramayo\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4055,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000569-SR-000684\",\n \"Name\" : \"Visado de Contrato de Hernán Gutiérrez\",\n \"ValidFrom\" : \"2023-08-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 150.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"569\",\n \"U_ClienNom\" : \"Vicente Scavone Suc Bolivia\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-08-15T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Laboral y de Seguridad Social\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"859\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4262,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000569-SR-000685\",\n \"Name\" : \"Visado de Contrato de Corina Ayala\",\n \"ValidFrom\" : \"2023-08-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 150.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"569\",\n \"U_ClienNom\" : \"Vicente Scavone Suc Bolivia\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-08-15T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Laboral y de Seguridad Social\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"860\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4263,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000569-SR-000721\",\n \"Name\" : \"Acta Casa Matriz - Modificación de Objeto - Apertura de Oficinas\",\n \"ValidFrom\" : \"2023-09-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 350.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"569\",\n \"U_ClienNom\" : \"Vicente Scavone Suc Bolivia\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-09-15T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"861\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4364,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000569-SR-000722\",\n \"Name\" : \"AFILIACION EN CPS OFICINAS LA PAZ - COCHABAMBA\",\n \"ValidFrom\" : \"2023-09-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 500.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"569\",\n \"U_ClienNom\" : \"VICENTE SCAVONE SUC BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-09-15T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Laboral y de Seguridad Social\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 4365,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000569-SR-000723\",\n \"Name\" : \"Caso Lecar - Notas de Crédito\",\n \"ValidFrom\" : \"2023-09-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 500.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"569\",\n \"U_ClienNom\" : \"Vicente Scavone Suc Bolivia\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-09-15T00:00:00Z\",\n \"U_AreaProyecto\" : \"Comercial (Contratación, informes y otros)\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"863\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4363,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000569-SR-000734\",\n \"Name\" : \"Visado de 13 Contratos de Trabajo\",\n \"ValidFrom\" : \"2023-10-10T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"BOB\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 13572.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"569\",\n \"U_ClienNom\" : \"Vicente Scavone Suc Bolivia\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-10-10T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Laboral y de Seguridad Social\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"864\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"BOB\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4512,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000569-SR-000775\",\n \"Name\" : \"Servicios de outsourcing administrativo laboral (primera etapa de contratación)\",\n \"ValidFrom\" : \"2023-11-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"Honorario variable en base al volúmen de operaciones.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"569\",\n \"U_ClienNom\" : \"VICENTE SCAVONE \u0026 CIA S.A.E. SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-11-22T00:00:00Z\",\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"865\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4610,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000569-SR-001029\",\n \"Name\" : \"Acta para regularización de situación patrimonial\",\n \"ValidFrom\" : \"2024-02-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"100 % al final. Se ajusto el honorario, pq crearon con un monto de 3480 pero señalan que son bolivi\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"569\",\n \"U_ClienNom\" : \"VICENTE SCAVONE \u0026 CIA S.A.E. SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2350\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000569-SR-001176\",\n \"Name\" : \"Visado Contrato de Trabajo de Gastón Eduardo Ortega\",\n \"ValidFrom\" : \"2024-04-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"100% Final/ Facturar y cobrar en Bs. al tipo de cambio oficial.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"569\",\n \"U_ClienNom\" : \"VICENTE SCAVONE \u0026 CIA S.A.E. SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2860\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000569-SR-001181\",\n \"Name\" : \"Acta de aprobación de EEFF y actualización de Matrícula de Comercio\",\n \"ValidFrom\" : \"2024-04-17T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"100% Final / Honorarios sin impuestos por favor facturar y cobrar en Bolivianos\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"569\",\n \"U_ClienNom\" : \"VICENTE SCAVONE \u0026 CIA S.A.E. SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2868\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:15-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:15-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=1560\u0026%24top=20 | Status: 200 | Duration: 82.431ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:15 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000569-SR-001372\",\n \"Name\" : \"Servicios de apoyo preparacion y llenado form RIOF\",\n \"ValidFrom\" : \"2024-07-18T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Preparación y envío del formulario RIOF al BCB. Servicio anual para el envío de la información d\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"569\",\n \"U_ClienNom\" : \"VICENTE SCAVONE \u0026 CIA S.A.E. SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3152\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000569-SR-001549\",\n \"Name\" : \"CARTA RESCISIÓN CONTRATO SODIPHAR\",\n \"ValidFrom\" : \"2024-09-06T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"569\",\n \"U_ClienNom\" : \"VICENTE SCAVONE \u0026 CIA S.A.E. SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3400\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000569-SR-001717\",\n \"Name\" : \"Visado Contrato de Trabajo Mery Lourdes Martinez Lopez\",\n \"ValidFrom\" : \"2024-11-08T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"569\",\n \"U_ClienNom\" : \"VICENTE SCAVONE \u0026 CIA S.A.E. SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3679\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000569-SR-001736\",\n \"Name\" : \"FIRMA CONTRATO DISTRIBUIDOR ENGELS MERKEL\",\n \"ValidFrom\" : \"2024-11-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"569\",\n \"U_ClienNom\" : \"VICENTE SCAVONE \u0026 CIA S.A.E. SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3702\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000569-SR-001742\",\n \"Name\" : \"Aumento de capital 2024\",\n \"ValidFrom\" : \"2024-11-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"569\",\n \"U_ClienNom\" : \"VICENTE SCAVONE \u0026 CIA S.A.E. SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3709\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000569-SR-001849\",\n \"Name\" : \"Residencia Migratoria y Cédula de Extranjero para Diana Richer\",\n \"ValidFrom\" : \"2025-01-28T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"569\",\n \"U_ClienNom\" : \"VICENTE SCAVONE \u0026 CIA S.A.E. SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3861\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000569-SR-001897\",\n \"Name\" : \"Cambio Representante Legal\",\n \"ValidFrom\" : \"2025-02-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"569\",\n \"U_ClienNom\" : \"VICENTE SCAVONE \u0026 CIA S.A.E. SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3923\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000569-SR-001904\",\n \"Name\" : \"Visado de Contrato de Trabajo de Diana Richer\",\n \"ValidFrom\" : \"2025-03-06T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"569\",\n \"U_ClienNom\" : \"VICENTE SCAVONE \u0026 CIA S.A.E. SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3937\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000569-SR-002055\",\n \"Name\" : \"Ampliacion de dias fuera de Bolivia - DIANA ELIZABETH RICHER VERA\",\n \"ValidFrom\" : \"2025-06-05T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"569\",\n \"U_ClienNom\" : \"VICENTE SCAVONE \u0026 CIA S.A.E. SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4368\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000569-SR-002081\",\n \"Name\" : \"Calendario Legal 2025 - Acta anual y actualización de Matrícula\",\n \"ValidFrom\" : \"2025-06-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"569\",\n \"U_ClienNom\" : \"VICENTE SCAVONE \u0026 CIA S.A.E. SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : null,\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4479\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000570-SR-001734\",\n \"Name\" : \"Legal Report - Share Transfer\",\n \"ValidFrom\" : \"2024-11-19T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"570\",\n \"U_ClienNom\" : \"Maha Energy \u0026 Starboard Partners\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Daniel Arredondo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3700\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Daniel Arredondo\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000571-SR-000619\",\n \"Name\" : \"Recuperación Deuda Surenergy SRL\",\n \"ValidFrom\" : \"2023-04-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 120000.0,\n \"U_Comentarios\" : \"Honorario variable y sujeto a recuperación de deuda de Bs.2000010. El honorario solamente será exigible en caso de recuperar la deuda.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"571\",\n \"U_ClienNom\" : \"PLASTIFORTE SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-04-24T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der.Civil\",\n \"U_AbogadoEncargado\" : \"Alvaro Araoz Ardaya\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"479\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Alvaro Araoz Ardaya\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4067,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000571-SR-000620\",\n \"Name\" : \"Servicios Legales Mensuales\",\n \"ValidFrom\" : \"2023-04-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1290.0,\n \"U_Comentarios\" : \"ahora se factura en el servicio mensual_gestión de cobranza de cartera\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"571\",\n \"U_ClienNom\" : \"PLASTIFORTE SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-04-24T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"480\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 4066,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000571-SR-001470\",\n \"Name\" : \"Revisión de documentación Cartera en Mora Nacional\",\n \"ValidFrom\" : \"2024-08-28T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"571\",\n \"U_ClienNom\" : \"PLASTIFORTE SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Civil\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"3316\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000571-SR-001471\",\n \"Name\" : \"Gestión Recuperación cartera en mora cobranzas\",\n \"ValidFrom\" : \"2024-08-28T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"571\",\n \"U_ClienNom\" : \"PLASTIFORTE SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Civil\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"3317\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000571-SR-001623\",\n \"Name\" : \"Proceso Ejecutivo Freddy Torres Emccocil Bs.65.000\",\n \"ValidFrom\" : \"2024-10-03T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Bs. 5.850 - se debe facturar 100 % al inicio, por lo tanto, se armará por hitos para tener un hito\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"571\",\n \"U_ClienNom\" : \"PLASTIFORTE SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"3476\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000571-SR-001720\",\n \"Name\" : \"Desvinculación Sucre\",\n \"ValidFrom\" : \"2024-11-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"571\",\n \"U_ClienNom\" : \"PLASTIFORTE SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"3682\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000571-SR-001731\",\n \"Name\" : \"Visación Finiquito SC\",\n \"ValidFrom\" : \"2024-11-14T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"571\",\n \"U_ClienNom\" : \"PLASTIFORTE SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"3695\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000571-SR-002056\",\n \"Name\" : \"RITEX\",\n \"ValidFrom\" : \"2025-06-05T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"571\",\n \"U_ClienNom\" : \"PLASTIFORTE SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Luis Valda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4369\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Valda\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000571-SR-002126\",\n \"Name\" : \"Licencia de Funcionamiento Totem\",\n \"ValidFrom\" : \"2025-07-17T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"571\",\n \"U_ClienNom\" : \"PLASTIFORTE SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Administrativo\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"4536\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:15-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:15-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=1580\u0026%24top=20 | Status: 200 | Duration: 91.1797ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:15 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000572-SR-000868\",\n \"Name\" : \"REgistro Hipoteca Naval\",\n \"ValidFrom\" : \"2023-04-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1500.0,\n \"U_Comentarios\" : \"Propuesta aceptado, y primer pago realizado. Cliente generado por contacto de Inés Ayala\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"572\",\n \"U_ClienNom\" : \"Inttoff Estudio Legal - Laura Hernández\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2023-04-25T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der.Civil\",\n \"U_AbogadoEncargado\" : \"Ines Ayala\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"1316\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ines Ayala\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 4069,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000576-SR-001195\",\n \"Name\" : \"Revisión de BES and Termination treatment of the CBI payment\",\n \"ValidFrom\" : \"2024-04-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"100% Final\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"576\",\n \"U_ClienNom\" : \"BLP Abogados S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2902\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000576-SR-001327\",\n \"Name\" : \"Informe legal - estabilidad madre adoptante\",\n \"ValidFrom\" : \"2024-06-28T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Favor enviar ND antes de emitir factura.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"576\",\n \"U_ClienNom\" : \"BLP Abogados S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3100\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000576-SR-002015\",\n \"Name\" : \"Business Rules for RBI/UBI and PPI\\\" Review 2026 - Microsoft Bolivia\",\n \"ValidFrom\" : \"2025-05-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"576\",\n \"U_ClienNom\" : \"BLP Legal\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Noelia Sanjinés\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"4289\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Noelia Sanjinés\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000577-SR-000871\",\n \"Name\" : \"Estructuración de proceso de venta empresarial\",\n \"ValidFrom\" : \"2023-05-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 19000.0,\n \"U_Comentarios\" : \"El tercer hito corresponde a un honorario de éxito, que es del 1,25% del precio total de la venta d\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"577\",\n \"U_ClienNom\" : \"Panadería Victoria\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2023-05-24T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"1330\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 4148,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000577-SR-001827\",\n \"Name\" : \"Informe Legal y carta sobre presuntos actos de competencia desleal\",\n \"ValidFrom\" : \"2025-01-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Se cobra 50% al inicio y 50% al final\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"577\",\n \"U_ClienNom\" : \"Panadería Victoria\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3834\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000578-SR-001254\",\n \"Name\" : \"Consultas legales Asistencias - Línea aérea México\",\n \"ValidFrom\" : \"2024-05-31T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"El contacto para esta facturación es Neftalí Garro NGarro@blplegal.com - El encargo proviene de la\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"578\",\n \"U_ClienNom\" : \"BLP Abogados Internacional SA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Seguros y Reaseguros\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3000\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000578-SR-001376\",\n \"Name\" : \"Informe legal MSFT pago bono a favor de personal subcontratado\",\n \"ValidFrom\" : \"2024-07-19T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"578\",\n \"U_ClienNom\" : \"BLP Abogados Internacional SA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3157\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000579-SR-000642\",\n \"Name\" : \"Servicios Legales Mensuales\",\n \"ValidFrom\" : \"2023-05-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 500.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"579\",\n \"U_ClienNom\" : \"HASHI\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-05-29T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"Alvaro Araoz Ardaya\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"392\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Alvaro Araoz Ardaya\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 4156,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000581-SR-000885\",\n \"Name\" : \"Proceso Judicial Ejecutivo\",\n \"ValidFrom\" : \"2023-10-03T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1000.0,\n \"U_Comentarios\" : \"Adicionalmente se ha pactado un honorario de éxito del 10% sobre el monto efectivamente recuperado\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"581\",\n \"U_ClienNom\" : \"Industrias Saladillo S.A. (Argentina)\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2023-10-03T00:00:00Z\",\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"1312\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 4393,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000581-SR-000974\",\n \"Name\" : \"COBRANZA EXTRAJUDICIAL\",\n \"ValidFrom\" : \"2023-06-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2380.0,\n \"U_Comentarios\" : \"más un honorario de éxito del 5% en caso de arribar a una solución favorable, bien sea a través de un documento de reconocimiento local o del pago efectivo de la obligación. EL honorario mensual es\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"581\",\n \"U_ClienNom\" : \"Industrias Saladillo S.A. (Argentina)\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2023-06-01T00:00:00Z\",\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 4162,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000582-SR-000644\",\n \"Name\" : \"Background Check Hansa\",\n \"ValidFrom\" : \"2023-06-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 700.0,\n \"U_Comentarios\" : \"Favor añadir IVA\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"582\",\n \"U_ClienNom\" : \"Haleon\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-06-01T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Rene Claure Veizaga\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"388\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Claure Veizaga\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4166,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000582-SR-000645\",\n \"Name\" : \"Background Check Bellcos\",\n \"ValidFrom\" : \"2023-06-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 700.0,\n \"U_Comentarios\" : \"Añadir IVA\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"582\",\n \"U_ClienNom\" : \"Haleon\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-06-01T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Rene Claure Veizaga\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"389\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Claure Veizaga\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4167,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000582-SR-000646\",\n \"Name\" : \"Background Check Companex\",\n \"ValidFrom\" : \"2023-06-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 700.0,\n \"U_Comentarios\" : \"Añadir IVA\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"582\",\n \"U_ClienNom\" : \"Haleon\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-06-01T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Rene Claure Veizaga\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"390\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Claure Veizaga\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4168,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000582-SR-000647\",\n \"Name\" : \"Background Check Abbot\",\n \"ValidFrom\" : \"2023-06-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 700.0,\n \"U_Comentarios\" : \"Agregar IVA\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"582\",\n \"U_ClienNom\" : \"Haleon\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-06-01T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Rene Claure Veizaga\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"391\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Claure Veizaga\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4169,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000585-SR-000655\",\n \"Name\" : \"Caso Belisario Quisbert\",\n \"ValidFrom\" : \"2023-06-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"Socio: USD 150 Director: USD 150 Asociado: USD 120\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"585\",\n \"U_ClienNom\" : \"U.S. Department of Justice - Civil Division - Office of Foreign Litigation\",\n \"U_FormaCobro\" : \"Honorario tarifa por hora\",\n \"U_FechaCreacionP\" : \"2023-06-22T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Natalio Zegarra\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"25\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Natalio Zegarra\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : 4201,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000585-SR-001854\",\n \"Name\" : \"PROCESO LABORAL DE REINCORPORACION - EDITH FAJARDO MALALE\",\n \"ValidFrom\" : \"2025-01-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los gastos son reembolsables siempre y cuando existan facturas o comprobantes.\\rLa tarifa acordada po\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"585\",\n \"U_ClienNom\" : \"U.S. Department of Justice - Civil Division - Office of Foreign Litigation\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Natalio Zegarra\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3867\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Natalio Zegarra\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000587-SR-000658\",\n \"Name\" : \"servicios legales y domicilio legal\",\n \"ValidFrom\" : \"2023-06-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1000.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"587\",\n \"U_ClienNom\" : \"DEVELOOP SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-06-30T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"320\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 4206,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000588-SR-000873\",\n \"Name\" : \"Tramitación documentación de nacimiento\",\n \"ValidFrom\" : \"2023-06-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1850.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"588\",\n \"U_ClienNom\" : \"PORZIO, RÍOS, GARCÍA \u0026 ASOCIADOS. LTDA.\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2023-06-30T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der.Civil\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"1334\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 4207,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000589-SR-000661\",\n \"Name\" : \"Asesoria Tributaria y Corporativa\",\n \"ValidFrom\" : \"2023-07-03T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 9800.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"589\",\n \"U_ClienNom\" : \"DISTRIBUIDORA MAYORISTA DE TECNOLOGIA S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-07-03T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Luis Valda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"321\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Valda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4209,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:15-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:15-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=1600\u0026%24top=20 | Status: 200 | Duration: 110.8425ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:15 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000589-SR-000758\",\n \"Name\" : \"Market Place\",\n \"ValidFrom\" : \"2023-11-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 9800.0,\n \"U_Comentarios\" : \"FAvor facturar el 50% ahora mismo\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"589\",\n \"U_ClienNom\" : \"DISTRIBUIDORA MAYORISTA DE TECNOLOGIA S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-11-07T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Fernando Landa\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"322\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Landa\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4574,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000589-SR-001256\",\n \"Name\" : \"Complementación de informe fiscal\",\n \"ValidFrom\" : \"2024-06-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Continuación del informe fiscal inicial. Participarán asociados de otras áreas tarifa por catego\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"589\",\n \"U_ClienNom\" : \"DISTRIBUIDORA MAYORISTA DE TECNOLOGIA S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Luis Valda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3002\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Valda\",\n \"U_Tipo_Honorario\" : \"Por Horas Con CAP\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000590-SR-000667\",\n \"Name\" : \"Servicios Legales Mensuales\",\n \"ValidFrom\" : \"2023-07-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2000.0,\n \"U_Comentarios\" : \"NOTA: Es un honorario fijo de USD. 2,000 hasta 14 horas mensuales. Las horas adicionales tendrán un\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"590\",\n \"U_ClienNom\" : \"MINERA ALCIRA SOCIEDAD ANONIMA ALCIRA S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa retainer\",\n \"U_FechaCreacionP\" : \"2023-07-21T00:00:00Z\",\n \"U_AreaProyecto\" : \"Energía y Recursos Naturales\",\n \"U_AbogadoEncargado\" : \"Daniel Arredondo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 14,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"141\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Daniel Arredondo\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : 4223,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000590-SR-000891\",\n \"Name\" : \"Asesoria Especializada en Procesos Penales\",\n \"ValidFrom\" : \"2023-11-27T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"590\",\n \"U_ClienNom\" : \"MINERA ALCIRA SOCIEDAD ANONIMA ALCIRA S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2023-11-27T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Penal\",\n \"U_AbogadoEncargado\" : \"Daniel Arredondo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"1320\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Daniel Arredondo\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 4615,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000590-SR-001590\",\n \"Name\" : \"Conciliación Civil - Potosí\",\n \"ValidFrom\" : \"2024-09-23T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Aplican las tarifas de los servicios mensuales por hora a Alcira. SE CIERRA EL ASUNTO A SOLICTUD DEL\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"590\",\n \"U_ClienNom\" : \"MINERA ALCIRA SOCIEDAD ANONIMA ALCIRA S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Daniel Arredondo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3442\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Daniel Arredondo\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000591-SR-000673\",\n \"Name\" : \"Contrato Elaboración Software\",\n \"ValidFrom\" : \"2023-07-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 800.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"591\",\n \"U_ClienNom\" : \"HealthC Management Services S.L\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-07-24T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"394\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4229,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000592-SR-000674\",\n \"Name\" : \"Transferencia de Cuotas y Activos\",\n \"ValidFrom\" : \"2023-07-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"592\",\n \"U_ClienNom\" : \"ENERFLEX SERVICES BOLIVIA S.R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa por hora\",\n \"U_FechaCreacionP\" : \"2023-07-25T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Andrés Moreno\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"10\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andrés Moreno\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : 4231,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000592-SR-000760\",\n \"Name\" : \"Licencia Ambiental - Ministerio de Medio Ambiente y Agua\",\n \"ValidFrom\" : \"2023-11-14T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1500.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"592\",\n \"U_ClienNom\" : \"ENERFLEX SERVICES BOLIVIA S.R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-11-14T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Constituciona\",\n \"U_AbogadoEncargado\" : \"André Tejerina\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"345\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"André Tejerina\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4581,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000592-SR-001294\",\n \"Name\" : \"Amended and Restated Credit Agreement - Acknowledgement and Confirmation\",\n \"ValidFrom\" : \"2024-06-19T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"USD. 250 Socio USD. 200 Asociado Senior and USD. 180 Asociado\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"592\",\n \"U_ClienNom\" : \"ENERFLEX SERVICES BOLIVIA S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Mercantil-Banca\u0026Finanzas\",\n \"U_AbogadoEncargado\" : \"Teddy Alberto Mercado Carrion\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3064\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Teddy Alberto Mercado Carrion\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000592-SR-001363\",\n \"Name\" : \"Presentación de IMA - Gobernación Santa Cruz\",\n \"ValidFrom\" : \"2024-07-17T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"ESTE ASUNTO SE FUE A EXTERRAN POR SOLICITUD DE CLIENTE\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"592\",\n \"U_ClienNom\" : \"ENERFLEX SERVICES BOLIVIA S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Ambiental\",\n \"U_AbogadoEncargado\" : \"André Tejerina\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3143\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"André Tejerina\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000592-SR-001364\",\n \"Name\" : \"Licencia Ambiental - Ministerio de Medio Ambiente y Agua (Ajuste)\",\n \"ValidFrom\" : \"2024-07-17T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Emitir factura por el 100%\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"592\",\n \"U_ClienNom\" : \"ENERFLEX SERVICES BOLIVIA S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Ambiental\",\n \"U_AbogadoEncargado\" : \"André Tejerina\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3144\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"André Tejerina\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000592-SR-001577\",\n \"Name\" : \"Elaboración de Matriz de Cumplimiento Ambiental\",\n \"ValidFrom\" : \"2024-09-19T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"592\",\n \"U_ClienNom\" : \"ENERFLEX SERVICES BOLIVIA S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Ambiental\",\n \"U_AbogadoEncargado\" : \"André Tejerina\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3427\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"André Tejerina\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000592-SR-001694\",\n \"Name\" : \"Servicios Legales Mensuales\",\n \"ValidFrom\" : \"2024-10-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"ENERFLEX: USD. 1080.- más impuestos, por 10 horas mensuales (no acumulables) y USD. 90.- la hora a\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"592\",\n \"U_ClienNom\" : \"ENERFLEX SERVICES BOLIVIA S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3604\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000592-SR-001718\",\n \"Name\" : \"Actualización Prendas Cuotas Socios\",\n \"ValidFrom\" : \"2024-11-08T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Socio: USD 250, Asociado Senior: USD 200, Asociado: USD 180.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"592\",\n \"U_ClienNom\" : \"ENERFLEX SERVICES BOLIVIA S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Mercantil-Banca\u0026Finanzas\",\n \"U_AbogadoEncargado\" : \"Teddy Mercado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3680\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Teddy Mercado\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000592-SR-001831\",\n \"Name\" : \"Consultoría EEFF - Tax y Corp\",\n \"ValidFrom\" : \"2025-01-16T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Facturación del 60% al inicio\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"592\",\n \"U_ClienNom\" : \"ENERFLEX SERVICES BOLIVIA S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Luis Valda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3842\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Valda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000592-SR-001885\",\n \"Name\" : \"Consultoría\",\n \"ValidFrom\" : \"2025-02-18T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Servicio conjunto entre OUT y TAX.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"592\",\n \"U_ClienNom\" : \"ENERFLEX SERVICES BOLIVIA S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3911\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000592-SR-001970\",\n \"Name\" : \"Consulado del Peru Visa de Negocios - WASHINGTON VERA ALIAGA\",\n \"ValidFrom\" : \"2025-04-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"592\",\n \"U_ClienNom\" : \"ENERFLEX SERVICES BOLIVIA S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4191\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000592-SR-002043\",\n \"Name\" : \"Visa de negocios Peru - DANIEL LEOPOLDO JURCICH GIRON\",\n \"ValidFrom\" : \"2025-05-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"592\",\n \"U_ClienNom\" : \"ENERFLEX SERVICES BOLIVIA S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4353\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000592-SR-002114\",\n \"Name\" : \"Visa de negocios Consulado General del Peru - GONZALO OJEDA MACHICADO\",\n \"ValidFrom\" : \"2025-07-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"592\",\n \"U_ClienNom\" : \"ENERFLEX SERVICES BOLIVIA S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : null,\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4524\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000592-SR-002142\",\n \"Name\" : \"Consultoría cumplimiento GAAP local\",\n \"ValidFrom\" : \"2025-07-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Evaluación de las potenciales contingencias por no incumplimiento de PCGA y preparación de recomen\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"592\",\n \"U_ClienNom\" : \"ENERFLEX SERVICES BOLIVIA S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"MBN CONSULTORIA\",\n \"U_AbogadoEncargado\" : null,\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4552\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:15-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:16-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=1620\u0026%24top=20 | Status: 200 | Duration: 94.7512ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:16 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000592-SR-002144\",\n \"Name\" : \"Servicios de apoyo preparacion y llenado form RIOF\",\n \"ValidFrom\" : \"2025-07-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Servicio trimestral para la preparación y envío de los formularios RIOF al BCB.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"592\",\n \"U_ClienNom\" : \"ENERFLEX SERVICES BOLIVIA S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : null,\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4554\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000594-SR-000875\",\n \"Name\" : \"IP legal assistance in Bolivia - copyright infringement case (17074) - Monthly update reports\",\n \"ValidFrom\" : \"2023-08-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 450.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"594\",\n \"U_ClienNom\" : \"FIFA\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2023-08-11T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Penal\",\n \"U_AbogadoEncargado\" : \"Ariel Zeballos\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"1298\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Zeballos\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : 4257,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000595-SR-000682\",\n \"Name\" : \"Servicios Legales Mensuales\",\n \"ValidFrom\" : \"2023-08-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1000.0,\n \"U_Comentarios\" : \"Los honorarios son acumulables como máximo por 3 meses. La vigencia de este Contrato es retroactiv\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"595\",\n \"U_ClienNom\" : \"EFICIENCIA INDUSTRIAL BOLIVIA S.R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa retainer\",\n \"U_FechaCreacionP\" : \"2023-08-11T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 7,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"137\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 4259,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000595-SR-000771\",\n \"Name\" : \"Outsourcing contable, tributario, laboral y tesoreria.\",\n \"ValidFrom\" : \"2023-11-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"Honorario variable en función a volumend e operaciones. Take over USD 700\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"595\",\n \"U_ClienNom\" : \"EFICIENCIA INDUSTRIAL BOLIVIA S.R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-11-22T00:00:00Z\",\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"327\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4609,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000595-SR-001374\",\n \"Name\" : \"Servicios de apoyo preparacion y llenado form RIOF\",\n \"ValidFrom\" : \"2024-07-18T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"595\",\n \"U_ClienNom\" : \"EFICIENCIA INDUSTRIAL BOLIVIA S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3154\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000596-SR-000686\",\n \"Name\" : \"Constitución de Sociedad Anónima\",\n \"ValidFrom\" : \"2023-08-18T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2500.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"596\",\n \"U_ClienNom\" : \"Grupo Gadea\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-08-18T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"378\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4267,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000597-SR-001141\",\n \"Name\" : \"Implementación de Sistema de Cumplimiento - UIF\",\n \"ValidFrom\" : \"2024-03-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"597\",\n \"U_ClienNom\" : \"Urbanizaciones del Norte S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Mercantil-Banca\u0026Finanzas\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2743\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000598-SR-000700\",\n \"Name\" : \"NEGOCACION POIESIS\",\n \"ValidFrom\" : \"2023-08-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1600.0,\n \"U_Comentarios\" : \"Se acordó con el cliente un honorario cap de USD 800 dólares americanos por 8 horas al mes (por 2 meses que podrá ampliarse). Costo por hora : USD.120/hora.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"598\",\n \"U_ClienNom\" : \"CLUB DE TENIS LA PAZ\",\n \"U_FormaCobro\" : \"Honorario tarifa CAP\",\n \"U_FechaCreacionP\" : \"2023-08-29T00:00:00Z\",\n \"U_AreaProyecto\" : \"Comercial (Contratación, informes y otros)\",\n \"U_AbogadoEncargado\" : \"Teddy Alberto Mercado Carrion\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Teddy Alberto Mercado Carrion\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa CAP\",\n \"U_CodAnterior\" : 4288,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000599-SR-001113\",\n \"Name\" : \"Asesoría regulatoria especializada por horas\",\n \"ValidFrom\" : \"2023-08-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Favor liquidar mensualmente. Considerar que por el Contrato no se aceptan facturas con más de tres\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"599\",\n \"U_ClienNom\" : \"3M COMPANY\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Registros Sanitarios-Regul.\",\n \"U_AbogadoEncargado\" : \"Fernando Sanchez Peña\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"29\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Sanchez Peña\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000599-SR-001924\",\n \"Name\" : \"Informe Migratorio\",\n \"ValidFrom\" : \"2025-03-19T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"599\",\n \"U_ClienNom\" : \"3M COMPANY\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Agronegocios\",\n \"U_AbogadoEncargado\" : null,\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3961\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : null,\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000601-SR-000975\",\n \"Name\" : \"Elaboración de finiquito y recibo de pago beneficios sociales Adriana Molina\",\n \"ValidFrom\" : \"2023-09-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 300.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"601\",\n \"U_ClienNom\" : \"Alberto Vladimir Pacheco Mendoza\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2023-09-01T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Rene Claure Veizaga\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"1454\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Claure Veizaga\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4314,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000602-SR-000706\",\n \"Name\" : \"Negociación de Contrato con Thales LAS FRANCE SAS\",\n \"ValidFrom\" : \"2023-09-06T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 13000.0,\n \"U_Comentarios\" : \"13000 + IVA\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"602\",\n \"U_ClienNom\" : \"Constructora e Inmobiliaria Wework Srl\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-09-06T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Teddy Mercado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"264\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Teddy Mercado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4326,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000603-SR-000726\",\n \"Name\" : \"Asesoría legal por horas\",\n \"ValidFrom\" : \"2023-09-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"Se debe añadir impuestos - IVA\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"603\",\n \"U_ClienNom\" : \"Embajada de Suecia, La Paz, Bolivia\",\n \"U_FormaCobro\" : \"Honorario tarifa por hora\",\n \"U_FechaCreacionP\" : \"2023-09-21T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Noelia Sanjinés\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"8\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Noelia Sanjinés\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : 4376,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000604-SR-000001\",\n \"Name\" : \"ARBITRAJE CONTRA CREDINFORM INTERNATIONAL\",\n \"ValidFrom\" : \"2017-10-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"604\",\n \"U_ClienNom\" : \"IDEPRO DESARROLLO EMPRESARIAL\",\n \"U_FormaCobro\" : \"Honorario tarifa CAP\",\n \"U_FechaCreacionP\" : \"2017-10-01T00:00:00Z\",\n \"U_AreaProyecto\" : \"Civil (Contratación, informes y otros)\",\n \"U_AbogadoEncargado\" : \"Andres Moreno Gutierrez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andres Moreno Gutierrez\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa CAP\",\n \"U_CodAnterior\" : 59,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000604-SR-002045\",\n \"Name\" : \"Redacción de 4 Notas con Global Partnerships Impact-First Growth Fund LLC\",\n \"ValidFrom\" : \"2025-05-26T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"604\",\n \"U_ClienNom\" : \"IDEPRO DESARROLLO EMPRESARIAL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Mercantil-Banca\u0026Finanzas\",\n \"U_AbogadoEncargado\" : \"Teddy Mercado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"4354\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Teddy Mercado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000606-SR-000882\",\n \"Name\" : \"ARBITRAJE CHINA RAILWAY CONTRA PREMEBOL\",\n \"ValidFrom\" : \"2023-09-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 9000.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"606\",\n \"U_ClienNom\" : \"PBAA DESARROLLOS SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2023-09-20T00:00:00Z\",\n \"U_AreaProyecto\" : \"Arbitraje\",\n \"U_AbogadoEncargado\" : \"Andres Moreno Gutierrez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andres Moreno Gutierrez\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa por hitos\",\n \"U_CodAnterior\" : 4374,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000607-SR-000729\",\n \"Name\" : \"Aumento de Capital\",\n \"ValidFrom\" : \"2023-09-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 350.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"607\",\n \"U_ClienNom\" : \"EPICUSINE GROUP LTDA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-09-22T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"348\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4378,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000608-SR-000976\",\n \"Name\" : \"ASESORAMIENTO LEGAL SINIESTRO AUTOMOVIL - HECHO DE TRANSITO\",\n \"ValidFrom\" : \"2023-09-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 696.0,\n \"U_Comentarios\" : \"Gastos reembolsables de USD 130. El cliente efectuó el pago de honorarios y gastos el 22 de septiembre. Usó un tipo de cambio de Bs. 7. Total transferido a cuenta MB SRL Bs. 5782\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"608\",\n \"U_ClienNom\" : \"Anna Steiger\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2023-09-22T00:00:00Z\",\n \"U_AreaProyecto\" : \"Penal - Económico\",\n \"U_AbogadoEncargado\" : \"Edwin Rodrigo Burgos Fernandez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Claure Veizaga\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 4380,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000609-SR-000884\",\n \"Name\" : \"RECURSO DE CASACION - SR. GONZALO CASTILLO\",\n \"ValidFrom\" : \"2023-09-26T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 26400.0,\n \"U_Comentarios\" : \"NO SE TIENE IGUALA FIRMADA A LA FECHA\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"609\",\n \"U_ClienNom\" : \"SIKA BOLIVIA SA\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2023-09-26T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Laboral y de Seguridad Social\",\n \"U_AbogadoEncargado\" : \"Andres Moreno Gutierrez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andres Moreno Gutierrez\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa por hitos\",\n \"U_CodAnterior\" : 4384,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000609-SR-000977\",\n \"Name\" : \"SERVICIOS LEGALES\",\n \"ValidFrom\" : \"2023-09-26T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"NO SE TIENE IGUALA FIRMADA A LA FECHA\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"609\",\n \"U_ClienNom\" : \"Sika Bolivia SA\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2023-09-26T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Laboral y de Seguridad Social\",\n \"U_AbogadoEncargado\" : \"Andres Moreno Gutierrez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andres Moreno Gutierrez\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:16-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:16-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=1640\u0026%24top=20 | Status: 200 | Duration: 86.4623ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:16 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000609-SR-001556\",\n \"Name\" : \"Servicios Legales Mensuales\",\n \"ValidFrom\" : \"2024-09-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"El honorario por servicios legales mensuales pactados es de Bs. 12.000.- (incluye impuestos) por un\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"609\",\n \"U_ClienNom\" : \"Sika Bolivia SA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3407\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000609-SR-001645\",\n \"Name\" : \"SUSTANCIACIÓN PROCESO SUMARIO INTERNO\",\n \"ValidFrom\" : \"2024-10-10T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Facturar 100 % a la conclusión del servicio\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"609\",\n \"U_ClienNom\" : \"Sika Bolivia SA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Paul Aramayo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3498\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Paul Aramayo\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000609-SR-001975\",\n \"Name\" : \"Servicios de apoyo preparacion y llenado form RIOF\",\n \"ValidFrom\" : \"2025-04-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Servicios de preparacion de RIOF un trimestre mas capacitacion al personal designado para los proxim\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"609\",\n \"U_ClienNom\" : \"Sika Bolivia SA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4202\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000609-SR-002146\",\n \"Name\" : \"Servicios de apoyo preparacion y llenado form RIOF\",\n \"ValidFrom\" : \"2025-07-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Servicios de preparación y envío de formularios RIOF al BCB\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"609\",\n \"U_ClienNom\" : \"Sika Bolivia SA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"4556\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000611-SR-000636\",\n \"Name\" : \"RETAINER MENSUAL - MINERO/AMBIENTAL\",\n \"ValidFrom\" : \"2023-05-26T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1800.0,\n \"U_Comentarios\" : \"Retainer Mensual para temas Mineros y Ambientales, sin límite de horas a partir del 1 de septiembre de 2023. Para facturación contacto con Itacamba, son empresas del mismo grupo.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"611\",\n \"U_ClienNom\" : \"GB MINERALES Y AGREGADOS S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-05-26T00:00:00Z\",\n \"U_AreaProyecto\" : \"Energía y Recursos Naturales\",\n \"U_AbogadoEncargado\" : \"Daniel Marcelo Arredondo Zelada\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Daniel Marcelo Arredondo Zelada\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 4152,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000611-SR-000978\",\n \"Name\" : \"SERVICIO LEGAL MENSUAL MINERO AMBIENTAL\",\n \"ValidFrom\" : \"2023-10-04T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"611\",\n \"U_ClienNom\" : \"GB Minerales y Agregados S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-10-04T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Ambiental\",\n \"U_AbogadoEncargado\" : \"Daniel Marcelo Arredondo Zelada\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Daniel Marcelo Arredondo Zelada\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000612-SR-000725\",\n \"Name\" : \"Revisión de presentación y reunión virtual sobre desvinculaciones laborales\",\n \"ValidFrom\" : \"2023-09-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 500.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"612\",\n \"U_ClienNom\" : \"YANGO RUSIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-09-20T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Paul Aramayo Salinas\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"885\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Paul Aramayo Salinas\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4372,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000612-SR-000786\",\n \"Name\" : \"Llenado de tabla con obligaciones laborales y sociales en Bolivia\",\n \"ValidFrom\" : \"2023-12-05T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"612\",\n \"U_ClienNom\" : \"YANGO RUSIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-12-05T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Paul Aramayo Salinas\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"886\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Paul Aramayo Salinas\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4629,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000612-SR-000998\",\n \"Name\" : \"CUESTIONARIO A CONSULTAS SOBRE DESVINCULACIONES LABORALES EN BOLIVIA\",\n \"ValidFrom\" : \"2024-02-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"612\",\n \"U_ClienNom\" : \"YANGO RUSIA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Derecho Laboral y de Seguridad Social\",\n \"U_AbogadoEncargado\" : \"Paul Aramayo Salinas\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2296\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Paul Aramayo Salinas\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000613-SR-000886\",\n \"Name\" : \"Apoyo Tributario en la Revisión de Documentación Contable Troibutaria\",\n \"ValidFrom\" : \"2023-10-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1100.0,\n \"U_Comentarios\" : \"Cliente de Sucre, con 2 hitos\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"613\",\n \"U_ClienNom\" : \"Super Abasto Sur Ltda. SAS\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2023-10-09T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Luis Valda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"1342\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Valda\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 4500,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000614-SR-000733\",\n \"Name\" : \"TECNICAS DE NEGOCIACION PARA ABOGADOS\",\n \"ValidFrom\" : \"2023-10-10T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"BS\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 626.40,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"614\",\n \"U_ClienNom\" : \"MB ACADEMY\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-10-10T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Rene Claure Veizaga\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"BOL\",\n \"U_Soc_Responsable\" : \"Rene Claure Veizaga\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 4503,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000614-SR-001272\",\n \"Name\" : \"Finanzas para no financieros\",\n \"ValidFrom\" : \"2024-06-10T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"614\",\n \"U_ClienNom\" : \"MB Academy\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3031\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000614-SR-001907\",\n \"Name\" : \"Legal Ops en la práctica\",\n \"ValidFrom\" : \"2025-02-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"614\",\n \"U_ClienNom\" : \"MB Academy\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Luis Moreno\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3940\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Moreno\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000615-SR-000887\",\n \"Name\" : \"PROCESO CAJA PETROLERA DE SALUD ct. AGENCIA EFE\",\n \"ValidFrom\" : \"2023-10-10T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1748.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"615\",\n \"U_ClienNom\" : \"AGENCIA EFE S.A.U., S.M.E. SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2023-10-10T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Natalio Zegarra\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"1248\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Natalio Zegarra\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 4504,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000615-SR-001883\",\n \"Name\" : \"REVISION DE 3 CONTRATOS Y ANEXOS\",\n \"ValidFrom\" : \"2025-02-17T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Se acordó con el cliente el cobro de Bs. 3.500 por la ejecución de este proyecto.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"615\",\n \"U_ClienNom\" : \"AGENCIA EFE S.A.U., S.M.E. SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Telecomunicaciones\",\n \"U_AbogadoEncargado\" : \"Natalio Zegarra\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3909\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Natalio Zegarra\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000616-SR-000735\",\n \"Name\" : \"Cambio de Nombre Departamento Baulera\",\n \"ValidFrom\" : \"2023-10-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 450.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"616\",\n \"U_ClienNom\" : \"MARIA VIRGINIA FLORES CRONEMBOLD\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-10-11T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Inmobiliario\",\n \"U_AbogadoEncargado\" : \"Alvaro Araoz Ardaya\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"434\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Alvaro Araoz Ardaya\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4513,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000617-SR-000776\",\n \"Name\" : \"Outsourcing contable, tributario, laboral y de tesorería.\",\n \"ValidFrom\" : \"2023-11-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"El honorario es variable en base al volúmen de transacciones y se debe incluir un pago al inicio ta\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"617\",\n \"U_ClienNom\" : \"WESTLAND CONSTRUCTION BOLIVIA S.R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-11-22T00:00:00Z\",\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"882\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4611,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000617-SR-000979\",\n \"Name\" : \"Honorarios por servicios legales\",\n \"ValidFrom\" : \"2023-10-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"617\",\n \"U_ClienNom\" : \"WESTLAND CONSTRUCTION BOLIVIA S.R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-10-24T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Daniel Marcelo Arredondo Zelada\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"1457\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Daniel Marcelo Arredondo Zelada\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000617-SR-001108\",\n \"Name\" : \"Representacion legal\",\n \"ValidFrom\" : \"2024-03-05T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"617\",\n \"U_ClienNom\" : \"WESTLAND CONSTRUCTION BOLIVIA S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"Teddy Mercado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2642\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Teddy Mercado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000617-SR-001146\",\n \"Name\" : \"Adaptación de Contrato de Obra\",\n \"ValidFrom\" : \"2024-03-27T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"100% Final\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"617\",\n \"U_ClienNom\" : \"WESTLAND CONSTRUCTION BOLIVIA S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Teddy Mercado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2762\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Teddy Mercado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:16-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:16-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=1660\u0026%24top=20 | Status: 200 | Duration: 88.3303ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:16 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000617-SR-001371\",\n \"Name\" : \"Servicios de apoyo preparacion y llenado form RIOF\",\n \"ValidFrom\" : \"2024-07-18T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Preparación y envío del formulario RIOF al BCB. Servicio anual para el envío de la información d\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"617\",\n \"U_ClienNom\" : \"WESTLAND CONSTRUCTION BOLIVIA S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3151\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000617-SR-002028\",\n \"Name\" : \"Estudio precios de transferencia\",\n \"ValidFrom\" : \"2025-05-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Estudio de precios de transferencia\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"617\",\n \"U_ClienNom\" : \"WESTLAND CONSTRUCTION BOLIVIA S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"MB Negocios\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"4312\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000617-SR-002150\",\n \"Name\" : \"Servicios Legales Mensuales (Por Hora)\",\n \"ValidFrom\" : \"2025-07-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"USD 220 per hour for Partner\\rUSD 200 per hour for Director or Senior Associate\\rUSD 180 per hour for\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"617\",\n \"U_ClienNom\" : \"WESTLAND CONSTRUCTION BOLIVIA S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : null,\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"4562\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Teddy Mercado\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000618-SR-000737\",\n \"Name\" : \"Adquisición Inmueble Sarco\",\n \"ValidFrom\" : \"2023-10-17T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 450.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"618\",\n \"U_ClienNom\" : \"Familia Tejerina Rivera\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-10-17T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Inmobiliario\",\n \"U_AbogadoEncargado\" : \"Alvaro Araoz Ardaya\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"358\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Alvaro Araoz Ardaya\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4520,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000619-SR-000738\",\n \"Name\" : \"Registro Corredor de Reaseguro Extranjero\",\n \"ValidFrom\" : \"2023-10-17T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 3500.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"619\",\n \"U_ClienNom\" : \"MALAKUT CORREDORES DE REASEGUROS, S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-10-17T00:00:00Z\",\n \"U_AreaProyecto\" : \"Seguros y Reaseguros\",\n \"U_AbogadoEncargado\" : \"Rene Claure Veizaga\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"430\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Claure Veizaga\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4521,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000619-SR-001709\",\n \"Name\" : \"Renovación Anual Certificado 2024-2025\",\n \"ValidFrom\" : \"2024-11-05T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"619\",\n \"U_ClienNom\" : \"MALAKUT CORREDORES DE REASEGUROS, S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Seguros y Reaseguros\",\n \"U_AbogadoEncargado\" : \"Lilian Rodríguez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3650\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Lilian Rodríguez\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000620-SR-000888\",\n \"Name\" : \"Proceso Laboral contra Yovana Zenteno Rioja\",\n \"ValidFrom\" : \"2023-10-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1000.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"620\",\n \"U_ClienNom\" : \"EGOSCENTRI SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2023-10-20T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"1287\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 4539,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000622-SR-001244\",\n \"Name\" : \"Asesoramiento legal para la legalización de sentencia alemana en Bolivia\",\n \"ValidFrom\" : \"2024-05-27T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"622\",\n \"U_ClienNom\" : \"REEGRECHTSANWÄLTE\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"André Tejerina\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2977\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"André Tejerina\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000622-SR-002094\",\n \"Name\" : \"Información Rápida de Inmuebles\",\n \"ValidFrom\" : \"2025-07-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"622\",\n \"U_ClienNom\" : \"REEGRECHTSANWÄLTE\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"André Tejerina\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4496\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"André Tejerina\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000622-SR-002095\",\n \"Name\" : \"Actualización de datos personales en 5 inmuebles en Derechos Reales de Santa Cruz\",\n \"ValidFrom\" : \"2025-07-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"622\",\n \"U_ClienNom\" : \"REEGRECHTSANWÄLTE\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : null,\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4497\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"André Tejerina\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000622-SR-002096\",\n \"Name\" : \"Elaboración de Poder Especial de Representación para gestiones en Derechos Reales\",\n \"ValidFrom\" : \"2025-07-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"622\",\n \"U_ClienNom\" : \"REEGRECHTSANWÄLTE\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : null,\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4498\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"André Tejerina\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000624-SR-000756\",\n \"Name\" : \"Defensa Tributaria\",\n \"ValidFrom\" : \"2023-10-31T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1200.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"624\",\n \"U_ClienNom\" : \"ONG ASOCIACIÓN NUEVO CAMINO\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-10-31T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Luis Valda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"451\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Valda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4573,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000625-SR-000759\",\n \"Name\" : \"Opinion Legal Brasilagro\",\n \"ValidFrom\" : \"2023-11-14T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 3000.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"625\",\n \"U_ClienNom\" : \"Agropecuaria Acres del Sud S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-11-14T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Andrés Moreno\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"170\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andrés Moreno\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4579,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000626-SR-000761\",\n \"Name\" : \"REDACCION DE PROYECTO DE ACUERDO PRIVADO DE PAGO COMPENSATORIO\",\n \"ValidFrom\" : \"2023-11-16T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"626\",\n \"U_ClienNom\" : \"EMBAJADA DE FRANCIA EN BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-11-16T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Natalio Eduardo Zegarra Ribera\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"333\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Natalio Eduardo Zegarra Ribera\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4596,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000627-SR-000782\",\n \"Name\" : \"SERVICIOS LEGALES INTEGRALES\",\n \"ValidFrom\" : \"2023-11-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"627\",\n \"U_ClienNom\" : \"SERVECO\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-11-30T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"507\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 4621,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000627-SR-001357\",\n \"Name\" : \"Transformación Unipersonal a S.R.L.\",\n \"ValidFrom\" : \"2024-07-16T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"627\",\n \"U_ClienNom\" : \"SERVECO\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"3137\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000627-SR-001571\",\n \"Name\" : \"Cambio de divisas\",\n \"ValidFrom\" : \"2024-09-18T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Cobro del 50% según propuesta\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"627\",\n \"U_ClienNom\" : \"SERVECO\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Luis Valda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3421\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Valda\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000627-SR-001629\",\n \"Name\" : \"OUT - Evaluación preliminar para la transformación de sociedad\",\n \"ValidFrom\" : \"2024-10-08T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Servicio que consistirá en el poyo para la evaluación preliminar de la información para la transf\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"627\",\n \"U_ClienNom\" : \"SERVECO\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"3482\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000681-SR-000231\",\n \"Name\" : \"ENTREGA DE CARTAS NOTARIADAS\",\n \"ValidFrom\" : \"2020-01-31T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 500.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"681\",\n \"U_ClienNom\" : \"AGROCERES MULTIMIX NUTRICAO ANIMAL LTDA.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-01-31T00:00:00Z\",\n \"U_AreaProyecto\" : \"Civil (Contratación, informes y otros)\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 1901,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000739-SR-000390\",\n \"Name\" : \"SEGUIMIENTO POSIBLE PROCESO PENAL MINISTERIO DE GOBIERNO - CONTRATO 2019\",\n \"ValidFrom\" : \"2021-06-23T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2000.0,\n \"U_Comentarios\" : \"Favor enviar facturas a zohra.pattenden@airbus.com\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"739\",\n \"U_ClienNom\" : \"AIRBUS HELICOPTERS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-06-23T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Penal\",\n \"U_AbogadoEncargado\" : \"Rene Claure Veizaga\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Claure Veizaga\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 2752,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:16-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:16-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=1680\u0026%24top=20 | Status: 200 | Duration: 84.0144ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:16 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000744-SR-000080\",\n \"Name\" : \"Sindico\",\n \"ValidFrom\" : \"2019-04-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 200.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"744\",\n \"U_ClienNom\" : \"AGENCIA DE MARKETINGPROMOCIONAL LUCKY BOLIVIA S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-04-09T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"Ines Ayala\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"379\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ines Ayala\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 1292,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000744-SR-000081\",\n \"Name\" : \"Servicios Legales Mensuales (FM)\",\n \"ValidFrom\" : \"2019-04-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1500.0,\n \"U_Comentarios\" : \"USD. 1.500.- de manera mensual, sin impuestos, por doce (12) horas al mes de servicios. Por cada ho\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"744\",\n \"U_ClienNom\" : \"AGENCIA DE MARKETINGPROMOCIONAL LUCKY BOLIVIA S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa retainer\",\n \"U_FechaCreacionP\" : \"2019-04-09T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"Ines Ayala\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 12,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"140\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ines Ayala\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 1294,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000744-SR-000082\",\n \"Name\" : \"Representante Legal\",\n \"ValidFrom\" : \"2019-04-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 350.0,\n \"U_Comentarios\" : \"El honorario se ajusta a USD. 350.- con impuestos. Esto a partir del 01 de diciembre de 2022\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"744\",\n \"U_ClienNom\" : \"AGENCIA DE MARKETINGPROMOCIONAL LUCKY BOLIVIA S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-04-09T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"Ines Ayala\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"380\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ines Ayala\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 1291,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000744-SR-000385\",\n \"Name\" : \"PERMANENCIA TEMPORAL DE 2 AÑOS POR TRABAJO- ALEXIS EINAR ESCUDERO JAIMES\",\n \"ValidFrom\" : \"2021-06-16T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 10907.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 10.907,22.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\\r\\rNOTA: este tramite tiene mul\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"744\",\n \"U_ClienNom\" : \"AGENCIA DE MARKETINGPROMOCIONAL LUCKY BOLIVIA S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-06-16T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"381\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2744,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000744-SR-000386\",\n \"Name\" : \"PERMANENCIA TEMPORAL DE 2 AÑOS POR TRABAJO- MICHELE OSKARINA GUTIERREZ REGIS\",\n \"ValidFrom\" : \"2021-06-16T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 10907.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 10.907,22.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"744\",\n \"U_ClienNom\" : \"AGENCIA DE MARKETINGPROMOCIONAL LUCKY BOLIVIA S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-06-16T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"382\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2745,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000744-SR-000387\",\n \"Name\" : \"RENOVACIÓN CÉDULA DE EXTRANJERO - MICHELE OSKARINA GUTIERREZ REGIS\",\n \"ValidFrom\" : \"2021-06-16T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2654.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 2.654,33.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"744\",\n \"U_ClienNom\" : \"AGENCIA DE MARKETINGPROMOCIONAL LUCKY BOLIVIA S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-06-16T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"383\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2746,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000744-SR-000388\",\n \"Name\" : \"RENOVACIÓN CÉDULA DE EXTRANJERO - ALEXIS EINAR ESCUDERO JAIMES\",\n \"ValidFrom\" : \"2021-06-16T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2654.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 2.654,33.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"744\",\n \"U_ClienNom\" : \"AGENCIA DE MARKETINGPROMOCIONAL LUCKY BOLIVIA S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-06-16T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"384\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2747,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000744-SR-000640\",\n \"Name\" : \"RENOVACION DE CÉDULA DE EXTRANJERO- ALEXIS EINAR ESCUDERO JAIMES\",\n \"ValidFrom\" : \"2023-05-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2654.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 2654.34 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"744\",\n \"U_ClienNom\" : \"AGENCIA DE MARKETINGPROMOCIONAL LUCKY BOLIVIA S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-05-29T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"385\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4157,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000744-SR-000641\",\n \"Name\" : \"RENOVACIÓN DE CÉDULA DE EXTRANJERO- MICHELE OSKARINA GUTIERREZ REGIS\",\n \"ValidFrom\" : \"2023-05-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2654.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE BS. 2654.34 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"744\",\n \"U_ClienNom\" : \"AGENCIA DE MARKETINGPROMOCIONAL LUCKY BOLIVIA S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-05-29T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"386\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4158,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000744-SR-000836\",\n \"Name\" : \"PROCESO LABORAL INTERPUESTO POR YONATAN GARCIA MARUPA\",\n \"ValidFrom\" : \"2022-06-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"BS\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"744\",\n \"U_ClienNom\" : \"GRUPO LUCKY\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2022-06-02T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Laboral y de Seguridad Social\",\n \"U_AbogadoEncargado\" : \"Paul Aramayo Salinas\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"BOL\",\n \"U_Soc_Responsable\" : \"Paul Aramayo Salinas\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa por hitos\",\n \"U_CodAnterior\" : 3414,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000744-SR-000983\",\n \"Name\" : \"Servicios mensuales Director\",\n \"ValidFrom\" : \"2024-01-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 200.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"744\",\n \"U_ClienNom\" : \"AGENCIA DE MARKETINGPROMOCIONAL LUCKY BOLIVIA S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2024-01-01T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"1506\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000744-SR-001232\",\n \"Name\" : \"PERMANENCIA TEMPORAL DE 1 AÑO POR TRABAJO - ALEXIS EINAR ESCUDERO JAIMES\",\n \"ValidFrom\" : \"2024-05-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"100% Final/ LOS HONORARIOS DE USD. 1356.92 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"744\",\n \"U_ClienNom\" : \"AGENCIA DE MARKETINGPROMOCIONAL LUCKY BOLIVIA S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2955\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000744-SR-001233\",\n \"Name\" : \"PERMANENCIA TEMPORAL DE 1 AÑO POR TRABAJO - MICHELE OSKARINA GUTIERREZ REGIS\",\n \"ValidFrom\" : \"2024-05-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"100% Final /LOS HONORARIOS DE USD. 1356.92 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"744\",\n \"U_ClienNom\" : \"AGENCIA DE MARKETINGPROMOCIONAL LUCKY BOLIVIA S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2956\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Christian Ariel Triveño Cossio\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000744-SR-001440\",\n \"Name\" : \"Representación para firmas de Contratos (LP - Cbba. - SCZ)\",\n \"ValidFrom\" : \"2024-08-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Facturar por favor a partir del 01 de agosto de 2024\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"744\",\n \"U_ClienNom\" : \"AGENCIA DE MARKETINGPROMOCIONAL LUCKY BOLIVIA S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Ines Ayala\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3274\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ines Ayala\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000752-SR-000326\",\n \"Name\" : \"INFORME LEGAL GOOGLE ADS\",\n \"ValidFrom\" : \"2021-01-14T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 300.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"752\",\n \"U_ClienNom\" : \"LG ELECTRONICS INC. CHILE LIMITADA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-01-14T00:00:00Z\",\n \"U_AreaProyecto\" : \"Registros Sanitarios\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 2466,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000752-SR-001301\",\n \"Name\" : \"Servicios Legales integrales por hora\",\n \"ValidFrom\" : \"2024-06-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"El tarifario acordado es el siguiente: \\r* Hora Socio: USD. 250.-\\r• Hora Director: USD. 250.-\\r• H\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"752\",\n \"U_ClienNom\" : \"LG ELECTRONICS INC. CHILE LIMITADA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3071\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000782-SR-000299\",\n \"Name\" : \"ASESORAMIENTO LAGUNA COLORADA (FM) FEB JUL\",\n \"ValidFrom\" : \"2020-11-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2500.0,\n \"U_Comentarios\" : \"Facturar los meses de Feb - Jul\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"367\",\n \"U_ClienNom\" : \"SACYR INDUSTRIAS BOLIVIA SIB SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-11-20T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Andres Moreno Gutierrez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andres Moreno Gutierrez\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 2367,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000782-SR-000342\",\n \"Name\" : \"Servicio Legal Mensual Sociedad Accidental (FM)\",\n \"ValidFrom\" : \"2021-03-26T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 3800.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"782\",\n \"U_ClienNom\" : \"SACYR\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-03-26T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"Fernando Landa\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"498\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Landa\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 2578,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000782-SR-000394\",\n \"Name\" : \"Disolución y Liquidación de Sacyr F e Iberese\",\n \"ValidFrom\" : \"2021-07-03T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 3500.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"782\",\n \"U_ClienNom\" : \"SACYR\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-07-03T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"500\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2775,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000782-SR-000784\",\n \"Name\" : \"ASESORAMIENTO LAGUNA COLORADA 2022 - 2023\",\n \"ValidFrom\" : \"2023-12-04T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"367\",\n \"U_ClienNom\" : \"SACYR INDUSTRIAS BOLIVIA SIB SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-12-04T00:00:00Z\",\n \"U_AreaProyecto\" : \"Contratación Pública\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 4626,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:16-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:16-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=1700\u0026%24top=20 | Status: 200 | Duration: 94.4561ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:16 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000782-SR-000805\",\n \"Name\" : \"PROCESO LUCIA FLORENSA AÑEZ Y OTOS CT. SACYR BOLIVIA Y OTROS\",\n \"ValidFrom\" : \"2020-04-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"\\\"La defensa legal dentro del proceso, incluyo o contempla a las tres empresas codemandadas. (Sacyr Industrial Bolivia, S.R.L.; Imasa Bolivia, S.R.L. y Valoriza Servicios Medio Ambientales, S.R.L.) SEG\\\"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"782\",\n \"U_ClienNom\" : \"SACYR\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2020-04-20T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Laboral y de Seguridad Social\",\n \"U_AbogadoEncargado\" : \"Natalio Eduardo Zegarra Ribera\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Natalio Eduardo Zegarra Ribera\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa por hitos\",\n \"U_CodAnterior\" : 2035,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000782-SR-000928\",\n \"Name\" : \"Informe sobre caso fortuito - evento compensable (Asociación Accidental Sacyr Ormat)\",\n \"ValidFrom\" : \"2020-09-04T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 3000.0,\n \"U_Comentarios\" : \"Por favor antes de facturar coordinar con el cliente a nombre de qué empresa de su grupo empresarial facturar\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"782\",\n \"U_ClienNom\" : \"SACYR\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-09-04T00:00:00Z\",\n \"U_AreaProyecto\" : \"Contratación Pública\",\n \"U_AbogadoEncargado\" : \"Andres Moreno Gutierrez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"1421\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andres Moreno Gutierrez\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2245,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000782-SR-000980\",\n \"Name\" : \"Proceso Civil Har Hormigones\",\n \"ValidFrom\" : \"2024-01-23T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"2\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Asunto pertenece a MB SRL\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"782\",\n \"U_ClienNom\" : \"SACYR\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2024-01-23T00:00:00Z\",\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Fernando Landa\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"1503\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Landa\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000782-SR-000982\",\n \"Name\" : \"TRANSFERENCIA TOTAL DE CUOTAS VSMBO\",\n \"ValidFrom\" : \"2023-07-26T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"BS\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"782\",\n \"U_ClienNom\" : \"SACYR\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-07-26T00:00:00Z\",\n \"U_AreaProyecto\" : \"Comercial (Contratación, informes y otros)\",\n \"U_AbogadoEncargado\" : \"Andres Moreno Gutierrez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Carlos Fernando Landa Alejandro\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000782-SR-001002\",\n \"Name\" : \"Asesoramiento Laguna Colorada 2022 - 2023\",\n \"ValidFrom\" : \"2024-02-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"782\",\n \"U_ClienNom\" : \"SACYR\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"Fernando Landa\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2302\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Landa\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000782-SR-001003\",\n \"Name\" : \"Asesoramiento renuncia mandatos - representación\",\n \"ValidFrom\" : \"2024-02-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"782\",\n \"U_ClienNom\" : \"SACYR\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Rene Claure Veizaga\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2303\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Claure Veizaga\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000782-SR-001078\",\n \"Name\" : \"Cesion VSM - AAC\",\n \"ValidFrom\" : \"2023-07-26T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"782\",\n \"U_ClienNom\" : \"SACYR\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Contratación Pública\",\n \"U_AbogadoEncargado\" : \"Carlos Fernando Landa Alejandro\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"1217\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Carlos Fernando Landa Alejandro\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000782-SR-001079\",\n \"Name\" : \"Transferencia total de cuotas VSMBO\",\n \"ValidFrom\" : \"2023-07-26T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"782\",\n \"U_ClienNom\" : \"SACYR\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Fernando Landa\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"1218\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Landa\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000782-SR-001080\",\n \"Name\" : \"Cambio de denominación\",\n \"ValidFrom\" : \"2023-09-14T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"782\",\n \"U_ClienNom\" : \"SACYR\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Carlos Fernando Landa Alejandro\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"1219\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Carlos Fernando Landa Alejandro\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000782-SR-001098\",\n \"Name\" : \"Asesoramiento Laguna Colorada (FM) Feb Jul\",\n \"ValidFrom\" : \"2020-11-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Facturar los meses de Feb - Jul\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"782\",\n \"U_ClienNom\" : \"SACYR\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Andres Moreno Gutierrez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"499\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andres Moreno Gutierrez\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000782-SR-001160\",\n \"Name\" : \"Representacion legal\",\n \"ValidFrom\" : \"2024-04-04T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"(1) Del monto pagado corresponden 2000 para Gonzalo Crespo Urquizu.\\r(2) Debe cobrarse a Sacyr desde\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"782\",\n \"U_ClienNom\" : \"SACYR\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Contratación Pública\",\n \"U_AbogadoEncargado\" : \"Carlos Fernando Landa Alejandro\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2822\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Carlos Fernando Landa Alejandro\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000782-SR-001697\",\n \"Name\" : \"Analisis tributario de Asociaciones Accidentales\",\n \"ValidFrom\" : \"2024-10-27T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"60% al inicio y 40% al final\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"782\",\n \"U_ClienNom\" : \"SACYR\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Luis Valda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3607\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Valda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000795-SR-000215\",\n \"Name\" : \"CONSTITUCION DE SOCIEDAD ANONIMA\",\n \"ValidFrom\" : \"2019-11-18T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2700.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"795\",\n \"U_ClienNom\" : \"SAN MIGUEL INDUSTRIAS\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-11-18T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Rene Claure Veizaga\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Claure Veizaga\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 1786,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000802-SR-000046\",\n \"Name\" : \"REVISION DE CONTRATO, ASISTENCIA A REUNIONES, COORDINACION FIRMA CONTRATO\",\n \"ValidFrom\" : \"2019-03-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 3600.0,\n \"U_Comentarios\" : \"USD 3600 + impuestos\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"802\",\n \"U_ClienNom\" : \"CNC CENTRO NACIONAL DE CONSULTORIA (VIACIENCIA)\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-03-12T00:00:00Z\",\n \"U_AreaProyecto\" : \"Civil (Contratación, informes y otros)\",\n \"U_AbogadoEncargado\" : \"Rene Claure Veizaga\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Claure Veizaga\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 1193,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000802-SR-000065\",\n \"Name\" : \"ELABORACION DE PODER ESPECIAL FIRMA CONTRATOS FABRICIO ALARCON\",\n \"ValidFrom\" : \"2019-03-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 450.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"802\",\n \"U_ClienNom\" : \"CNC CENTRO NACIONAL DE CONSULTORIA (VIACIENCIA)\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-03-22T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Rene Claure Veizaga\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Claure Veizaga\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 1253,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000802-SR-000072\",\n \"Name\" : \"APERTURA DE CUENTAS BANCARIAS\",\n \"ValidFrom\" : \"2019-03-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 450.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"802\",\n \"U_ClienNom\" : \"CNC CENTRO NACIONAL DE CONSULTORIA (VIACIENCIA)\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-03-29T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Rene Claure Veizaga\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Claure Veizaga\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 1268,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000814-SR-000132\",\n \"Name\" : \"Representacion Legal (FM)\",\n \"ValidFrom\" : \"2019-07-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 475.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"814\",\n \"U_ClienNom\" : \"Farmex S.R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-07-25T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"359\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 1518,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000814-SR-000133\",\n \"Name\" : \"Domicilio Legal (FM)\",\n \"ValidFrom\" : \"2019-07-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 190.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"814\",\n \"U_ClienNom\" : \"Farmex S.R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-07-25T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"Rene Claure Veizaga\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"360\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Claure Veizaga\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 1519,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000814-SR-000338\",\n \"Name\" : \"CIERRE CORPORATIVO ANUAL 2020\",\n \"ValidFrom\" : \"2021-03-17T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 680.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"814\",\n \"U_ClienNom\" : \"FARMEX S.R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-03-17T00:00:00Z\",\n \"U_AreaProyecto\" : \"Comercial (Contratación, informes y otros)\",\n \"U_AbogadoEncargado\" : \"Rene Claure Veizaga\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Claure Veizaga\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 2563,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000814-SR-000643\",\n \"Name\" : \"Outsourcing contable\",\n \"ValidFrom\" : \"2023-05-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 190.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"814\",\n \"U_ClienNom\" : \"Farmex S.R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-05-30T00:00:00Z\",\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"362\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 4160,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:16-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:16-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=1720\u0026%24top=20 | Status: 200 | Duration: 105.8594ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:16 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000814-SR-000913\",\n \"Name\" : \"Outsourcing de Declaraciones Juradas (FM)\",\n \"ValidFrom\" : \"2019-06-27T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"SEGUN PROPUESTA\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"814\",\n \"U_ClienNom\" : \"Farmex S.R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-06-27T00:00:00Z\",\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado Ramirez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"1407\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado Ramirez\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000814-SR-001036\",\n \"Name\" : \"Outsourcing de Declaraciones Juradas\",\n \"ValidFrom\" : \"2019-06-27T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"SE FACTURARA LA TARIFA PLANA MIENTRAS LA EMPRESA ESTE SIN MOVIMIENTO CONTABLE\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"814\",\n \"U_ClienNom\" : \"Farmex S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado Ramirez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"1085\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado Ramirez\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000814-SR-001149\",\n \"Name\" : \"CIERRE CORPORATIVO ANUAL GESTIÓN 2023\",\n \"ValidFrom\" : \"2024-04-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"814\",\n \"U_ClienNom\" : \"Farmex S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Registros Sanitarios-Regul.\",\n \"U_AbogadoEncargado\" : \"Fernando Jose Sanchez Peña Von Nagy\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2772\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Jose Sanchez Peña Von Nagy\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000814-SR-001960\",\n \"Name\" : \"Cierre corporativo anual 2024\",\n \"ValidFrom\" : \"2025-04-03T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"814\",\n \"U_ClienNom\" : \"Farmex S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Registros Sanitarios-Regul.\",\n \"U_AbogadoEncargado\" : \"Fernando Sanchez Peña\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"4179\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Sanchez Peña\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000820-SR-000152\",\n \"Name\" : \"REVISION CARTA DE AUTORIZACION DISTRIBUIDOR\",\n \"ValidFrom\" : \"2019-08-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 200.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"820\",\n \"U_ClienNom\" : \"ARCHER DANIELS MIDLAND COMPANY\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-08-12T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Rene Claure Veizaga\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Claure Veizaga\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 1561,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000820-SR-000797\",\n \"Name\" : \"AMPARO CONSTITUCIONAL COSTA BEBER\",\n \"ValidFrom\" : \"2019-08-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 65000.0,\n \"U_Comentarios\" : \"Coordinar facturación con Dr. AMG\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"820\",\n \"U_ClienNom\" : \"ARCHER DANIELS MIDLAND COMPANY\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2019-08-20T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Andres Moreno Gutierrez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andres Moreno Gutierrez\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa por hitos\",\n \"U_CodAnterior\" : 1582,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000822-SR-001913\",\n \"Name\" : \"Permanencia Temporal de 1 año por trabajo - JANE SCHMITT\",\n \"ValidFrom\" : \"2025-03-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 1357.00 INLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"822\",\n \"U_ClienNom\" : \"TRAXYS GROUP\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3948\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000822-SR-001914\",\n \"Name\" : \"Cedula para Extranjero - JANE SCHMITT\",\n \"ValidFrom\" : \"2025-03-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorarios de USD. 257.83 incluyen gastos e impuestos de ley.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"822\",\n \"U_ClienNom\" : \"TRAXYS GROUP\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3949\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000824-SR-000189\",\n \"Name\" : \"INFORME LEGAL CONTRATO DE DISTRIBUCION\",\n \"ValidFrom\" : \"2019-09-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1200.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"824\",\n \"U_ClienNom\" : \"EF COMPOSITE TECHNOLOGIES, L.P.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-09-20T00:00:00Z\",\n \"U_AreaProyecto\" : \"Comercial (Contratación, informes y otros)\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 1675,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000850-SR-000312\",\n \"Name\" : \"ELABORACION INFORME LABORAL\",\n \"ValidFrom\" : \"2020-12-16T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 700.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"850\",\n \"U_ClienNom\" : \"GOJA POWERING ECOMMERCE - GOJA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-12-16T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Laboral y de Seguridad Social\",\n \"U_AbogadoEncargado\" : \"Juan Pablo Zegada\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Juan Pablo Zegada\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 2414,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000852-SR-000418\",\n \"Name\" : \"Adenda Total Línea de Crédito CAF (2021)\",\n \"ValidFrom\" : \"2021-09-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2000.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"852\",\n \"U_ClienNom\" : \"CRÉDITO CON EDUCACIÓN RURAL INSTITUCIÓN FINANCIERA DE DESARROLLO - CRECER IFD\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-09-09T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der.Mercantil-Banca\u0026Finanzas\",\n \"U_AbogadoEncargado\" : \"Teddy Mercado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"309\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Teddy Mercado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2929,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000860-SR-000368\",\n \"Name\" : \"INFORME LEGAL LABORAL\",\n \"ValidFrom\" : \"2021-04-26T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 600.0,\n \"U_Comentarios\" : \"Facturar de manera inmediata.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"860\",\n \"U_ClienNom\" : \"EXTERRAN ENERGY SOLUTIONS L.P.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-04-26T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Laboral y de Seguridad Social\",\n \"U_AbogadoEncargado\" : \"Paul Aramayo Salinas\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Paul Aramayo Salinas\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 2654,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000873-SR-000958\",\n \"Name\" : \"PRESENTACION AEMP\",\n \"ValidFrom\" : \"2022-09-10T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"BS\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 550.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"873\",\n \"U_ClienNom\" : \"Ipsos Group\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-09-10T00:00:00Z\",\n \"U_AreaProyecto\" : \"Comercial (Contratación, informes y otros)\",\n \"U_AbogadoEncargado\" : \"Carlos Merino Troche\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Daniel Marcelo Arredondo Zelada\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 3576,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000873-SR-001309\",\n \"Name\" : \"Informe Tributario - Intercompany Loans\",\n \"ValidFrom\" : \"2024-06-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"873\",\n \"U_ClienNom\" : \"Ipsos Group\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Daniel Arredondo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3080\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Daniel Arredondo\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000884-SR-001602\",\n \"Name\" : \"Consulta sobre los alcances del incremento salarial obligatorio\",\n \"ValidFrom\" : \"2024-09-27T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Cobrar por favor de inmediato\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"884\",\n \"U_ClienNom\" : \"TMF GROUP\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Paul Aramayo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3456\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Paul Aramayo\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000893-SR-000540\",\n \"Name\" : \"RECURSO DE ALZADA Y JERARQUICO MARZO - ABRIL 2019\",\n \"ValidFrom\" : \"2022-10-03T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 4000.0,\n \"U_Comentarios\" : \"EXISTE UN HONORARIO DE EXITO DEL 4% SOBRE EL IMPORTE GANADO EN RECURSO JERARQUICO\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"893\",\n \"U_ClienNom\" : \"ADMINISTRACIÓN \u0026 ESTRUCTURAS PHOENIXTORRES II S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-10-03T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Rodrigo Burgos\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"161\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rodrigo Burgos\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3619,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000893-SR-000659\",\n \"Name\" : \"Defensa DCA\",\n \"ValidFrom\" : \"2023-07-03T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 3500.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"893\",\n \"U_ClienNom\" : \"ADMINISTRACIÓN \u0026 ESTRUCTURAS PHOENIXTORRES II S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-07-03T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Luis Valda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"162\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Valda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4210,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000893-SR-001289\",\n \"Name\" : \"DCA RRJ 1051/2023 (creado 06/2024)\",\n \"ValidFrom\" : \"2024-06-17T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Cobro del 50% al inicio y 50% al final\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"893\",\n \"U_ClienNom\" : \"ADMINISTRACIÓN \u0026 ESTRUCTURAS PHOENIXTORRES II S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Luis Valda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3058\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Valda\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000894-SR-000126\",\n \"Name\" : \"Servicios Legales Mensuales\",\n \"ValidFrom\" : \"2019-07-08T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1584.0,\n \"U_Comentarios\" : \"PUSE TF02 PORQUE NO HAY EL MONTO REQUERIDO. TOMAR EN CUENTA QUE LA HORA ADICIONAL ES USD. 125.- SE R\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"894\",\n \"U_ClienNom\" : \"SERVICIOS DE ALQUILERES PHOENIXTOWER S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa retainer\",\n \"U_FechaCreacionP\" : \"2019-07-08T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 22,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"148\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 1482,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000894-SR-000153\",\n \"Name\" : \"Servicios Legales Mensuales(FM)\",\n \"ValidFrom\" : \"2019-08-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1800.0,\n \"U_Comentarios\" : \"Horas extras US$ 125\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"894\",\n \"U_ClienNom\" : \"SERVICIOS DE ALQUILERES PHOENIXTOWER S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa retainer\",\n \"U_FechaCreacionP\" : \"2019-08-12T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Paul Aramayo Salinas\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 20,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"149\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Paul Aramayo Salinas\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 1564,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:16-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:16-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=1740\u0026%24top=20 | Status: 200 | Duration: 86.7479ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:17 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000894-SR-000219\",\n \"Name\" : \"Representante Legal (FM)\",\n \"ValidFrom\" : \"2019-12-03T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 2000.0,\n \"U_Comentarios\" : \"2000 más IVA cobrar desde el 01 de diciembre\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"894\",\n \"U_ClienNom\" : \"SERVICIOS DE ALQUILERES PHOENIXTOWER S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-12-03T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"508\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 1811,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000894-SR-000262\",\n \"Name\" : \"ANALISIS DOCUMENTACION HOTEL ITAUBA BO-EB-1037 GLBO\",\n \"ValidFrom\" : \"2020-07-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 640.0,\n \"U_Comentarios\" : \"Se aplicarán honorarios adicionales en caso de servicios adicionales (USD. 200 por cada servicio).\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"894\",\n \"U_ClienNom\" : \"SERVICIOS DE ALQUILERES PHOENIXTOWER S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-07-13T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Inmobiliario\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 2168,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000894-SR-000263\",\n \"Name\" : \"ANALISIS DOCUMENTACION TRANSCONTINENTAL BO-SC-1257 GLBO\",\n \"ValidFrom\" : \"2020-07-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 640.0,\n \"U_Comentarios\" : \"Se aplicarán honorarios adicionales en caso de servicios adicionales (USD. 200 por cada servicio).\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"894\",\n \"U_ClienNom\" : \"SERVICIOS DE ALQUILERES PHOENIXTOWER S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-07-13T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Inmobiliario\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 2170,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000894-SR-000267\",\n \"Name\" : \"ANALISIS DOCUMENTACION COPAPELAO BO-SC-1176 GLBO\",\n \"ValidFrom\" : \"2020-08-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 640.0,\n \"U_Comentarios\" : \"Se aplicarán honorarios adicionales en caso de servicios adicionales (USD. 200 por cada servicio).\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"894\",\n \"U_ClienNom\" : \"SERVICIOS DE ALQUILERES PHOENIXTOWER S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-08-11T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Inmobiliario\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 2210,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000894-SR-000293\",\n \"Name\" : \"ANALISIS DOCUMENTACION CARAPARI BO-TR-1007 GLBO\",\n \"ValidFrom\" : \"2020-10-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 640.0,\n \"U_Comentarios\" : \"Se aplicarán honorarios adicionales en caso de servicios adicionales (USD. 200 por cada servicio).\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"894\",\n \"U_ClienNom\" : \"SERVICIOS DE ALQUILERES PHOENIXTOWER S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-10-20T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Inmobiliario\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 2316,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000894-SR-000623\",\n \"Name\" : \"VISADO DE FINIQUITO DE CECILIA VARGAS\",\n \"ValidFrom\" : \"2023-04-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 250.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"894\",\n \"U_ClienNom\" : \"SERVICIOS DE ALQUILERES PHOENIXTOWER S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-04-25T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Laboral y de Seguridad Social\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 4068,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000894-SR-000631\",\n \"Name\" : \"ELABORACION DE ADENDA A CONTRATO DE TRABAJO\",\n \"ValidFrom\" : \"2023-05-16T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 300.0,\n \"U_Comentarios\" : \"Cobrar esto a Ximena Bautista\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"894\",\n \"U_ClienNom\" : \"SERVICIOS DE ALQUILERES PHOENIXTOWER S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-05-16T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Laboral y de Seguridad Social\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 4116,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000894-SR-000777\",\n \"Name\" : \"Outsourcing para llevar libros contables locales BOAE\",\n \"ValidFrom\" : \"2023-11-23T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"El honorario incluye un take over de USD 10,000 a ser cancelado 50% a la emisión del contrato, 40%\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"894\",\n \"U_ClienNom\" : \"SERVICIOS DE ALQUILERES PHOENIXTOWER S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-11-23T00:00:00Z\",\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"515\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4613,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000894-SR-000812\",\n \"Name\" : \"REGISTRO DE PRENDAS V GRUPO\",\n \"ValidFrom\" : \"2021-03-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1000.0,\n \"U_Comentarios\" : \"Gastos reembosables solo aranceles de Derechos Reales para el registro de las prendas sin desplazamiento, honorarios de Notarias\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"894\",\n \"U_ClienNom\" : \"SERVICIOS DE ALQUILERES PHOENIXTOWER S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2021-03-21T00:00:00Z\",\n \"U_AreaProyecto\" : \"Civil (Contratación, informes y otros)\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa por hitos\",\n \"U_CodAnterior\" : 2570,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000894-SR-000844\",\n \"Name\" : \"Proceso Judicial de Cobranza contra PUNTONET BOLIVIA S.R.L.\",\n \"ValidFrom\" : \"2022-09-18T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 4995.0,\n \"U_Comentarios\" : \"Adicionalmente a los honorarios fijos, un honorario variable (success fee) equivalente al 5% del mon\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"894\",\n \"U_ClienNom\" : \"SERVICIOS DE ALQUILERES PHOENIXTOWER S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2022-09-18T00:00:00Z\",\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"1337\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 3583,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000894-SR-000853\",\n \"Name\" : \"Cancelación de Registros de Prendas en Derechos Reales\",\n \"ValidFrom\" : \"2022-12-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 10000.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"894\",\n \"U_ClienNom\" : \"SERVICIOS DE ALQUILERES PHOENIXTOWER S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2022-12-09T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Inmobiliario\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"1338\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : 3769,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000894-SR-000876\",\n \"Name\" : \"LICENCIA DE FUNCIONAMIENTO TARIJA - DOMICILIO\",\n \"ValidFrom\" : \"2023-08-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 800.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"894\",\n \"U_ClienNom\" : \"SERVICIOS DE ALQUILERES PHOENIXTOWER S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2023-08-24T00:00:00Z\",\n \"U_AreaProyecto\" : \"Derecho Administrativo\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa por hitos\",\n \"U_CodAnterior\" : 4280,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000894-SR-000914\",\n \"Name\" : \"REGISTRO DE PRENDAS V GRUPO\",\n \"ValidFrom\" : \"2020-02-26T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 500.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"894\",\n \"U_ClienNom\" : \"SERVICIOS DE ALQUILERES PHOENIXTOWER S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2020-02-26T00:00:00Z\",\n \"U_AreaProyecto\" : \"Civil (Contratación, informes y otros)\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Paul Aramayo Salinas\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 1968,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000894-SR-000915\",\n \"Name\" : \"ELABORACION DOCUMENTO DE USUFRUCTO\",\n \"ValidFrom\" : \"2020-05-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"894\",\n \"U_ClienNom\" : \"SERVICIOS DE ALQUILERES PHOENIXTOWER S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2020-05-01T00:00:00Z\",\n \"U_AreaProyecto\" : \"Civil (Contratación, informes y otros)\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000894-SR-000916\",\n \"Name\" : \"REGISTRO DE USUFRUCTO\",\n \"ValidFrom\" : \"2020-05-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"894\",\n \"U_ClienNom\" : \"SERVICIOS DE ALQUILERES PHOENIXTOWER S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2020-05-01T00:00:00Z\",\n \"U_AreaProyecto\" : \"Civil (Contratación, informes y otros)\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000894-SR-001183\",\n \"Name\" : \"Gestiones para firma de poder y regularización sitio para inscripción usufructo BO-OR-1010\",\n \"ValidFrom\" : \"2024-04-18T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"100% Final / Facturar USD. 300 más IVA\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"894\",\n \"U_ClienNom\" : \"SERVICIOS DE ALQUILERES PHOENIXTOWER S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2870\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000894-SR-001314\",\n \"Name\" : \"Asistencia legal en desvinculación laboral\",\n \"ValidFrom\" : \"2024-06-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"894\",\n \"U_ClienNom\" : \"SERVICIOS DE ALQUILERES PHOENIXTOWER S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Paul Aramayo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3085\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Paul Aramayo\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000894-SR-001393\",\n \"Name\" : \"Asesoramiento pago de quinquenios y refrendado de finiquitos ante el Ministerio de Trabajo\",\n \"ValidFrom\" : \"2024-07-26T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"894\",\n \"U_ClienNom\" : \"SERVICIOS DE ALQUILERES PHOENIXTOWER S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Paul Aramayo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3184\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Paul Aramayo\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000894-SR-001449\",\n \"Name\" : \"Apoyo en la preparación de descargos para AEMP\",\n \"ValidFrom\" : \"2024-08-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Hemos estimado que nuestro apoyo en este proceso requerirá al menos 40 horas para la búsqueda y so\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"894\",\n \"U_ClienNom\" : \"SERVICIOS DE ALQUILERES PHOENIXTOWER S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3284\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000894-SR-001457\",\n \"Name\" : \"Entrega de carta notariada en El Alto\",\n \"ValidFrom\" : \"2024-08-26T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"894\",\n \"U_ClienNom\" : \"SERVICIOS DE ALQUILERES PHOENIXTOWER S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3293\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:17-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:17-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=1760\u0026%24top=20 | Status: 200 | Duration: 102.8129ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:17 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000894-SR-001548\",\n \"Name\" : \"AEMP\",\n \"ValidFrom\" : \"2024-09-06T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"El número de PO BOSA-002421 para facturar el fee adicional de USD 1,200 (soporte con varios requeri\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"894\",\n \"U_ClienNom\" : \"SERVICIOS DE ALQUILERES PHOENIXTOWER S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : null,\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3399\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000894-SR-001665\",\n \"Name\" : \"Impugnación de Resolución Sancionatoria de la AEMP\",\n \"ValidFrom\" : \"2024-10-16T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"894\",\n \"U_ClienNom\" : \"SERVICIOS DE ALQUILERES PHOENIXTOWER S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3561\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000894-SR-001692\",\n \"Name\" : \"Apoyo en la preparación de descargos para AEMP\",\n \"ValidFrom\" : \"2024-10-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Les adjunto la PO BOSA-002497 por el servicio de la 2da respuesta a la AEMP.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"894\",\n \"U_ClienNom\" : \"SERVICIOS DE ALQUILERES PHOENIXTOWER S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3602\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000894-SR-001770\",\n \"Name\" : \"Proceso de Oferta de Pago y Consignación (BO-SC-1235)\",\n \"ValidFrom\" : \"2024-12-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"894\",\n \"U_ClienNom\" : \"SERVICIOS DE ALQUILERES PHOENIXTOWER S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3754\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000894-SR-001771\",\n \"Name\" : \"Proceso de Oferta de Pago y Consignación (BO-SC-1023)\",\n \"ValidFrom\" : \"2024-12-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"894\",\n \"U_ClienNom\" : \"SERVICIOS DE ALQUILERES PHOENIXTOWER S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3755\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000894-SR-001772\",\n \"Name\" : \"Proceso de Oferta de Pago y Consignación (BO-SC-1143)\",\n \"ValidFrom\" : \"2024-12-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"894\",\n \"U_ClienNom\" : \"SERVICIOS DE ALQUILERES PHOENIXTOWER S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3756\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000894-SR-001773\",\n \"Name\" : \"Proceso de Oferta de Pago y Consignación (BO-SC-1162)\",\n \"ValidFrom\" : \"2024-12-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"894\",\n \"U_ClienNom\" : \"SERVICIOS DE ALQUILERES PHOENIXTOWER S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3757\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000894-SR-001811\",\n \"Name\" : \"BO-CB-1072 - servicios legales de entrega de cartas notariales\",\n \"ValidFrom\" : \"2024-12-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"894\",\n \"U_ClienNom\" : \"SERVICIOS DE ALQUILERES PHOENIXTOWER S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3799\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000894-SR-001820\",\n \"Name\" : \"Gestiones en Ministerio de Trabajo para visado de finiquito de Susana Martin\",\n \"ValidFrom\" : \"2025-01-08T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"894\",\n \"U_ClienNom\" : \"SERVICIOS DE ALQUILERES PHOENIXTOWER S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3817\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000894-SR-001832\",\n \"Name\" : \"Apoyo en la preparación de descargos para AEMP\",\n \"ValidFrom\" : \"2025-01-17T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Debe ser cargada a la PO por el mismo asunto que se generó anteriormente.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"894\",\n \"U_ClienNom\" : \"SERVICIOS DE ALQUILERES PHOENIXTOWER S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3843\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000894-SR-001853\",\n \"Name\" : \"Acompañamiento a pago de quinquenio y refrendo de finiquito ante el Ministerio de Trabajo (Rodolfo\",\n \"ValidFrom\" : \"2025-01-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"894\",\n \"U_ClienNom\" : \"SERVICIOS DE ALQUILERES PHOENIXTOWER S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Paul Aramayo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3866\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Paul Aramayo\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000894-SR-001872\",\n \"Name\" : \"Apoyo en la preparación de descargos para AEMP\",\n \"ValidFrom\" : \"2025-02-10T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Servicios de envío de RIOF\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"894\",\n \"U_ClienNom\" : \"SERVICIOS DE ALQUILERES PHOENIXTOWER S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3890\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000894-SR-001873\",\n \"Name\" : \"Servicios de apoyo preparación y llenado form RIOF\",\n \"ValidFrom\" : \"2025-02-10T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Preparación de información RIOF\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"894\",\n \"U_ClienNom\" : \"SERVICIOS DE ALQUILERES PHOENIXTOWER S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3891\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000894-SR-001881\",\n \"Name\" : \"Gestiones de desvinculación laboral Gerente General\",\n \"ValidFrom\" : \"2025-02-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"894\",\n \"U_ClienNom\" : \"SERVICIOS DE ALQUILERES PHOENIXTOWER S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Paul Aramayo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3906\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Paul Aramayo\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000894-SR-001952\",\n \"Name\" : \"Gestiones de refrendo del Finiquito de la Sra. Glenda Bohrt ante el Ministerio de Trabajo\",\n \"ValidFrom\" : \"2025-04-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"894\",\n \"U_ClienNom\" : \"SERVICIOS DE ALQUILERES PHOENIXTOWER S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Paul Aramayo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4155\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Paul Aramayo\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000894-SR-001992\",\n \"Name\" : \"Gestiones de refrendo del finiquito de la Sra. Nadim Julien en el Ministerio de Trabajo\",\n \"ValidFrom\" : \"2025-04-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Facturar la totalidad al cumplimiento del servicio\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"894\",\n \"U_ClienNom\" : \"SERVICIOS DE ALQUILERES PHOENIXTOWER S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Paul Aramayo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4221\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Paul Aramayo\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000894-SR-002003\",\n \"Name\" : \"Impugnación RA 232579000372\",\n \"ValidFrom\" : \"2025-05-05T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"894\",\n \"U_ClienNom\" : \"SERVICIOS DE ALQUILERES PHOENIXTOWER S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Luis Valda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4275\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Valda\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000894-SR-002027\",\n \"Name\" : \"2da impugnación - RA 232579000408\",\n \"ValidFrom\" : \"2025-05-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"894\",\n \"U_ClienNom\" : \"SERVICIOS DE ALQUILERES PHOENIXTOWER S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Luis Valda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4311\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Valda\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000894-SR-002070\",\n \"Name\" : \"Outsourcing para llevar libros contables locales BOAE\",\n \"ValidFrom\" : \"2025-06-16T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Regularización de los libros para propósitos locales de las gestiones 2019 hasta 2024 (incluye IVA\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"894\",\n \"U_ClienNom\" : \"SERVICIOS DE ALQUILERES PHOENIXTOWER S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4462\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000894-SR-002140\",\n \"Name\" : \"Outsourcing para llevar libros contables locales BOAE\",\n \"ValidFrom\" : \"2025-07-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Servicio de traducción y conversión de registros contables proporcionados por el cliente en format\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"894\",\n \"U_ClienNom\" : \"SERVICIOS DE ALQUILERES PHOENIXTOWER S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : null,\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4550\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:17-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:17-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=1780\u0026%24top=20 | Status: 200 | Duration: 90.4032ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:17 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000900-SR-001263\",\n \"Name\" : \"Saneamiento Agrario Los Tajibos\",\n \"ValidFrom\" : \"2024-06-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Tomar en cuenta que vinculado a este Proyecto, le pagamos al abogado Antonio Chavez, con quien terce\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"900\",\n \"U_ClienNom\" : \"MARIA DEL CARMEN MASANES\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Agronegocios\",\n \"U_AbogadoEncargado\" : null,\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3013\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000901-SR-000926\",\n \"Name\" : \"Regularización Certificado de Nacimiento\",\n \"ValidFrom\" : \"2020-07-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 550.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"901\",\n \"U_ClienNom\" : \"Mercedes La zarte\",\n \"U_FormaCobro\" : \"Honorario tarifa por hitos\",\n \"U_FechaCreacionP\" : \"2020-07-22T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Administrativo\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"1419\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 2182,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000904-SR-000742\",\n \"Name\" : \"Servicios legales por hora\",\n \"ValidFrom\" : \"2023-10-18T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"904\",\n \"U_ClienNom\" : \"SCALAOPM BOLIVIA S.R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa por hora\",\n \"U_FechaCreacionP\" : \"2023-10-18T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"20\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : 4525,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000904-SR-000933\",\n \"Name\" : \"REPRESENTACION LEGAL (FM)\",\n \"ValidFrom\" : \"2021-01-18T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"904\",\n \"U_ClienNom\" : \"SCALAOPM BOLIVIA S.R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa por hora\",\n \"U_FechaCreacionP\" : \"2021-01-18T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Teddy Alberto Mercado Carrion\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Teddy Alberto Mercado Carrion\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa por hora\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000904-SR-000934\",\n \"Name\" : \"Representacion legal\",\n \"ValidFrom\" : \"2023-10-10T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"904\",\n \"U_ClienNom\" : \"SCALAOPM BOLIVIA S.R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa por hora\",\n \"U_FechaCreacionP\" : \"2021-01-18T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"1394\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 2672,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000906-SR-000507\",\n \"Name\" : \"APERTURA CUENTA BANCARIA - SERVICIOS LEGALES MENSUALES\",\n \"ValidFrom\" : \"2022-06-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"Esta empresa es parte del Grupo Lucky, NO se cobrará honorario adicional al que se le cobra a Lucky Bolivia S.A., se crea el proyecto solo para temas de los gastos que van facturados a nombre de esta\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"906\",\n \"U_ClienNom\" : \"PROMOCIONES ESTRATEGICAS S.R.L. (GRUPO LUCKY)\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2022-06-15T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : 3430,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000906-SR-001441\",\n \"Name\" : \"Representacion legal\",\n \"ValidFrom\" : \"2024-08-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"906\",\n \"U_ClienNom\" : \"PROMOCIONES ESTRATÉGICAS S.R.L. (GRUPO LUCKY)\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Ines Ayala\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3275\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ines Ayala\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000906-SR-002064\",\n \"Name\" : \"PATROCINIO LEGAL PROCESO LABORAL EDISON BRUNO ESTIGARRIBIA PEDRAZA Y OTROS\",\n \"ValidFrom\" : \"2025-06-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"906\",\n \"U_ClienNom\" : \"PROMOCIONES ESTRATÉGICAS S.R.L. (GRUPO LUCKY)\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Paul Aramayo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4452\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Paul Aramayo\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000908-SR-000787\",\n \"Name\" : \"SERVICIOS LEGALES INTEGRALES\",\n \"ValidFrom\" : \"2023-12-06T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"Sin límite de horas\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"908\",\n \"U_ClienNom\" : \"CAMBRIDGE COLLEGE S.R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-12-06T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Paul Aramayo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"242\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Paul Aramayo\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 4631,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000908-SR-001138\",\n \"Name\" : \"Demanda ejecutiva Apelación Cambridge contra Yumilka Peña Soliz\",\n \"ValidFrom\" : \"2024-03-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"En este proceso se pactó que se cobrara USD. 500.- hasta la presentación de la Apelación al auto\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"908\",\n \"U_ClienNom\" : \"CAMBRIDGE COLLEGE S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2740\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000908-SR-001398\",\n \"Name\" : \"Due Diligence Societario\",\n \"ValidFrom\" : \"2024-07-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"908\",\n \"U_ClienNom\" : \"CAMBRIDGE COLLEGE S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3200\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000908-SR-001861\",\n \"Name\" : \"Anticipo de Legítima\",\n \"ValidFrom\" : \"2025-02-03T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"908\",\n \"U_ClienNom\" : \"CAMBRIDGE COLLEGE S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Inmobiliario\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3876\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000909-SR-000793\",\n \"Name\" : \"Garantía Emisión de Bonos Sociales Bancosol\",\n \"ValidFrom\" : \"2023-12-08T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 23000.0,\n \"U_Comentarios\" : \"Legal Due Dilligence: USD 8,000.-\\rFinancing Documents: USD 9,000.-\\rClosing - Post Closing Matters: U\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"909\",\n \"U_ClienNom\" : \"IDB Invest\",\n \"U_FormaCobro\" : \"Honorario tarifa CAP\",\n \"U_FechaCreacionP\" : \"2023-12-08T00:00:00Z\",\n \"U_AreaProyecto\" : \"Der.Mercantil-Banca\u0026Finanzas\",\n \"U_AbogadoEncargado\" : \"Teddy Mercado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"1354\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Teddy Mercado\",\n \"U_Tipo_Honorario\" : \"Por Horas Con CAP\",\n \"U_CodAnterior\" : 4639,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000910-SR-000893\",\n \"Name\" : \"Outsourcing contable (FM)\",\n \"ValidFrom\" : \"2019-03-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 19488.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"910\",\n \"U_ClienNom\" : \"ACCENTURE S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2019-03-15T00:00:00Z\",\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"155\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 1211,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000911-SR-000894\",\n \"Name\" : \"Asesoramiento Legal\",\n \"ValidFrom\" : \"2023-12-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 8000.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"911\",\n \"U_ClienNom\" : \"RADIO FIDES SANTA CRUZ SRL\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-12-12T00:00:00Z\",\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"Carlos Merino Troche\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"490\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Carlos Merino Troche\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : 4650,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000911-SR-001677\",\n \"Name\" : \"Preparación, elaboración actas asamblea extraordinaria revocatoria poderes nuevo representante leg\",\n \"ValidFrom\" : \"2024-10-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Según correo de Dr. Carlos Merino de fecha 03-12-24\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"911\",\n \"U_ClienNom\" : \"RADIO FIDES SANTA CRUZ SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Carlos Merino\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3584\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Carlos Merino\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000915-SR-000899\",\n \"Name\" : \"Presentación de descargos ante C.N.S. para Baja Definitiva\",\n \"ValidFrom\" : \"2021-11-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"N\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1000.0,\n \"U_Comentarios\" : \"se recibirá el pago anticipadamente, porque enviarán una sóla transferencia que incluirá el pago\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"915\",\n \"U_ClienNom\" : \"AGROINDUSTRIAS BUNGE BOLIVIA S.A.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-11-11T00:00:00Z\",\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"1397\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 3008,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000916-SR-000908\",\n \"Name\" : \"GASTOS DE REPOSICION\",\n \"ValidFrom\" : \"2018-12-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"solo para gastos de reposicion\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"916\",\n \"U_ClienNom\" : \"INVERSIONES INMOBILIARIAS INIMBOL SA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2018-12-01T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Limbert Alfredo Chalco Herrera\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Daniel Marcelo Arredondo Zelada\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa plana\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000917-SR-000918\",\n \"Name\" : \"Honorarios por Servicios Legales.\",\n \"ValidFrom\" : \"2023-12-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 3750.0,\n \"U_Comentarios\" : \"facturar lo siguiente: (i) Primera Fase: facturar el 50%, es decir USD 1500, (ii) Segunda Fase: facturar el 50% es decir, USD 2,250. Todo va en la misma factura, en total son USD 3,750.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"917\",\n \"U_ClienNom\" : \"EDUCTRADE S.A. - SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2023-12-21T00:00:00Z\",\n \"U_AreaProyecto\" : \"Arbitraje\",\n \"U_AbogadoEncargado\" : \"Andres Moreno Gutierrez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"1411\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andres Moreno Gutierrez\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : 4677,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000917-SR-001760\",\n \"Name\" : \"Asesoramiento legal y cobranza importes adeudados AISEM\",\n \"ValidFrom\" : \"2024-12-04T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"La factura debe ser emitida a nombre de EDUCTRADE S.A. SUCURSAL BOLIVIA, NIT 382411021\\rLos correos e\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"917\",\n \"U_ClienNom\" : \"EDUCTRADE S.A. - SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Arbitraje\",\n \"U_AbogadoEncargado\" : \"Noelia Sanjinés\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3735\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Noelia Sanjinés\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:17-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:17-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=1800\u0026%24top=20 | Status: 200 | Duration: 97.394ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:17 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000918-SR-000921\",\n \"Name\" : \"Outsourcing Declaracion Impositiva (FM)\",\n \"ValidFrom\" : \"2020-02-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : \"Y\",\n \"U_MontoFijo\" : 800.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"918\",\n \"U_ClienNom\" : \"AON CONSULTING BOLIVIA S.R.L.\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2020-02-01T00:00:00Z\",\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : 0,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"1414\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000919-SR-000944\",\n \"Name\" : \"SERVICIOS LEGALES MENSUALES RETAINER (FM)\",\n \"ValidFrom\" : \"2021-04-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : \"1\",\n \"U_Y\" : null,\n \"U_MontoFijo\" : 1.0,\n \"U_Comentarios\" : \"Servicio a partir del mes de marzo 2021\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"919\",\n \"U_ClienNom\" : \"TECNOFARMA SA\",\n \"U_FormaCobro\" : \"Honorario tarifa plana\",\n \"U_FechaCreacionP\" : \"2021-04-09T00:00:00Z\",\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado Ramirez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : null,\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Paul Aramayo Salinas\",\n \"U_Tipo_Honorario\" : \"Honorario tarifa retainer\",\n \"U_CodAnterior\" : 2607,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000920-SR-001006\",\n \"Name\" : \"Negociación salida de sociedad Convipa\",\n \"ValidFrom\" : \"2024-02-05T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"920\",\n \"U_ClienNom\" : \"Gastón Parra\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Comercial (Contratación, informes y otros)\",\n \"U_AbogadoEncargado\" : null,\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2306\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Claure Veizaga\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000926-SR-000991\",\n \"Name\" : \"Operación de Software Banco Fie\",\n \"ValidFrom\" : \"2024-01-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"926\",\n \"U_ClienNom\" : \"JARDECOM S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Teddy Mercado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2286\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Teddy Mercado\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000928-SR-001011\",\n \"Name\" : \"Constitución de Sociedad Anónima\",\n \"ValidFrom\" : \"2024-02-05T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"928\",\n \"U_ClienNom\" : \"BBA BARZALLO ABOGADOS\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2314\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000929-SR-001010\",\n \"Name\" : \"Constitución Entidad Sin Fines de Lucro Nacional\",\n \"ValidFrom\" : \"2024-02-05T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"929\",\n \"U_ClienNom\" : \"Asociación de Líderes Haggai Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2313\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000932-SR-000885\",\n \"Name\" : \"Proceso Judicial Ejecutivo\",\n \"ValidFrom\" : \"2023-10-03T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Adicionalmente se ha pactado un honorario de éxito del 10% sobre el monto efectivamente recuperado a raíz del Juicio que se inicie (cuya cuantía demandada es de USD. 565.000.-). Este honorario se paga\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"932\",\n \"U_ClienNom\" : \"Industrias Saladillo S.A. (Argentina)\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"1312\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000933-SR-001018\",\n \"Name\" : \"Procesos Contenciosos contra EMAVRA y Alcaldía de Cochabamba\",\n \"ValidFrom\" : \"2024-02-16T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"933\",\n \"U_ClienNom\" : \"SIERRA TRADING COMPANY S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2330\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000933-SR-001188\",\n \"Name\" : \"Proceso Contencioso contra Empresa Boliviana de Alimentos - EBA\",\n \"ValidFrom\" : \"2024-04-23T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"A los honorarios se debe adicionar el 13% correspondiente al IVA y no incluyen gastos de cualquier t\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"933\",\n \"U_ClienNom\" : \"SIERRA TRADING COMPANY S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2893\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000933-SR-001664\",\n \"Name\" : \"Análisis tributario - operaciones BG\",\n \"ValidFrom\" : \"2024-10-16T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Bs. 8.500\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"933\",\n \"U_ClienNom\" : \"SIERRA TRADING COMPANY S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Luis Valda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3560\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Valda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000933-SR-001973\",\n \"Name\" : \"Proceso contencioso II c/ Empresa Boliviana de Alimentos EBA\",\n \"ValidFrom\" : \"2025-04-10T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Se ha acordado un honorario variable (sucess fee) equivalente al 7% del monto o valor total efectiva\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"933\",\n \"U_ClienNom\" : \"SIERRA TRADING COMPANY S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Litigios\",\n \"U_AbogadoEncargado\" : \"Mauricio Aguirre\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4200\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Mauricio Aguirre\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000933-SR-001994\",\n \"Name\" : \"Proceso contencioso contra EBA - Honorario de éxito\",\n \"ValidFrom\" : \"2025-04-28T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"933\",\n \"U_ClienNom\" : \"SIERRA TRADING COMPANY S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Litigios\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4261\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000934-SR-001019\",\n \"Name\" : \"Informe Legal sobre regulación aplicable a Programas de Fidelización\",\n \"ValidFrom\" : \"2024-02-16T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"934\",\n \"U_ClienNom\" : \"Servicio de Intermediación Comercial Loyalty Club S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Administrativo\",\n \"U_AbogadoEncargado\" : \"André Tejerina\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2331\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"André Tejerina\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000934-SR-001119\",\n \"Name\" : \"Elaboración y revisión de Documentos Programa Permanente Itacamba\",\n \"ValidFrom\" : \"2024-03-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"100% al final\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"934\",\n \"U_ClienNom\" : \"Servicio de Intermediación Comercial Loyalty Club S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Administrativo\",\n \"U_AbogadoEncargado\" : \"Rene Claure Veizaga\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2692\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Claure Veizaga\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000934-SR-001219\",\n \"Name\" : \"Servicio Mensual por horas\",\n \"ValidFrom\" : \"2024-05-06T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"USD 150 por hora, incluye 10 horas en total.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"934\",\n \"U_ClienNom\" : \"Servicio de Intermediación Comercial Loyalty Club S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"André Tejerina\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2928\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"André Tejerina\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000935-SR-001023\",\n \"Name\" : \"Conversatorios\",\n \"ValidFrom\" : \"2024-02-19T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"PRO BONO\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"935\",\n \"U_ClienNom\" : \"La Asociación de Productores de Oleaginosas y Trigo- ANAPO\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Agronegocios\",\n \"U_AbogadoEncargado\" : \"Wilfredo Rojo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2340\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Wilfredo Rojo\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000936-SR-001025\",\n \"Name\" : \"Asesoría General por horas\",\n \"ValidFrom\" : \"2024-02-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"150 $us x hora\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"936\",\n \"U_ClienNom\" : \"Clínica Angel Foianini S.R.L\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"Pamela Muñoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2343\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Pamela Muñoz\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000936-SR-001171\",\n \"Name\" : \"Programa permanente de descuentos\",\n \"ValidFrom\" : \"2024-04-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"100% Final\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"936\",\n \"U_ClienNom\" : \"Clínica Angel Foianini S.R.L\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Administrativo\",\n \"U_AbogadoEncargado\" : \"Rene Claure Veizaga\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2834\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Claure Veizaga\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000940-SR-001038\",\n \"Name\" : \"Inscripción corredor de reaseguro extranjero 2024\",\n \"ValidFrom\" : \"2024-02-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"100% al final\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"940\",\n \"U_ClienNom\" : \"Ardonagh Specialty\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Seguros y Reaseguros\",\n \"U_AbogadoEncargado\" : \"Rene Claure Veizaga\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2351\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Claure Veizaga\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000941-SR-001058\",\n \"Name\" : \"Consultas Laborales\",\n \"ValidFrom\" : \"2024-02-23T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Facturar 100% al Final del servicio\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"941\",\n \"U_ClienNom\" : \"COSAPI S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Andre Luis Tejerina Queiroz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2385\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andre Luis Tejerina Queiroz\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:17-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:17-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=1820\u0026%24top=20 | Status: 200 | Duration: 91.3365ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:17 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000941-SR-001356\",\n \"Name\" : \"Consulta Laboral - Obreros Civiles - Proyecto Templo Santa Cruz (Bolivia) - Cosapi SA\",\n \"ValidFrom\" : \"2024-07-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"941\",\n \"U_ClienNom\" : \"COSAPI S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3136\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000949-SR-001085\",\n \"Name\" : \"SERVICIO PRO BONO\",\n \"ValidFrom\" : \"2024-02-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"949\",\n \"U_ClienNom\" : \"RENACER BOLIVIA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2562\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000950-SR-001086\",\n \"Name\" : \"SERVICIO PRO BONO\",\n \"ValidFrom\" : \"2024-02-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"950\",\n \"U_ClienNom\" : \"AB CREA BOLIVIA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Agronegocios\",\n \"U_AbogadoEncargado\" : \"Wilfredo Rojo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2563\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Wilfredo Rojo\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000952-SR-001116\",\n \"Name\" : \"Trámites sucesorios\",\n \"ValidFrom\" : \"2024-03-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Acordamos que puede pagar en Dólares o en Bolivianos al tipo de cambio oficial a la fecha de pago /\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"952\",\n \"U_ClienNom\" : \"María Inmaculada Pintos Vázquez Figueroa\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Civil\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2659\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000952-SR-001813\",\n \"Name\" : \"Trámites sucesorios ante la Gestora Pública de Pensiones\",\n \"ValidFrom\" : \"2024-12-31T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"952\",\n \"U_ClienNom\" : \"María Inmaculada Pintos Vázquez Figueroa\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Administrativo\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3801\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000953-SR-001109\",\n \"Name\" : \"SERVICIO PRO BONO\",\n \"ValidFrom\" : \"2024-03-06T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"953\",\n \"U_ClienNom\" : \"Orquesta Filarmónica de Santa Cruz de la Sierra\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2643\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000954-SR-001110\",\n \"Name\" : \"Elaboración de carta notariada Jair Jorge Mezzomo\",\n \"ValidFrom\" : \"2024-03-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"El cliente es parte del grupo Brasil Agro / 100% al final\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"954\",\n \"U_ClienNom\" : \"Yuchan Agropecuaria S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Agronegocios\",\n \"U_AbogadoEncargado\" : \"Rene Claure Veizaga\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2644\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Claure Veizaga\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000954-SR-001179\",\n \"Name\" : \"Elaboración informe sobre demanda o denuncia contra personas desconocidas\",\n \"ValidFrom\" : \"2024-04-16T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"100% Final\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"954\",\n \"U_ClienNom\" : \"Yuchan Agropecuaria S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2865\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000956-SR-001133\",\n \"Name\" : \"Búsqueda corporativa\",\n \"ValidFrom\" : \"2024-03-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"El honorario incluye impuestos y gastos, por lo que los gastos que serán de aprox. Bs. 200.- no deb\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"956\",\n \"U_ClienNom\" : \"OLC Ingenieros EIRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2709\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000957-RE-000766\",\n \"Name\" : \"Inscripción empresa SENASAG\",\n \"ValidFrom\" : \"2024-07-23T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"957\",\n \"U_ClienNom\" : \"Industrias Alimenticias Colombina de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Registros Sanitarios-Regul.\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3164\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000957-RE-000895\",\n \"Name\" : \"APROBACIÓN DE ETIQUETAS GALLETAS CRACKERS SALADAS. DENOMINACION DE FANTASIA: DORADITAS - CRAKEÑAS\",\n \"ValidFrom\" : \"2024-11-06T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"957\",\n \"U_ClienNom\" : \"Industrias Alimenticias Colombina de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Registros Sanitarios-Regul.\",\n \"U_AbogadoEncargado\" : \"Fernando Sanchez Peña\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3665\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Sanchez Peña\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000957-RE-000896\",\n \"Name\" : \"APROBACIÓN DE ETIQUETAS GALLETAS DE CHOCOLATE CON CREMA SABOR A VAINILLA - BRINKY CHOCOLATE BO\",\n \"ValidFrom\" : \"2024-11-06T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"957\",\n \"U_ClienNom\" : \"Industrias Alimenticias Colombina de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Registros Sanitarios-Regul.\",\n \"U_AbogadoEncargado\" : \"Fernando Sanchez Peña\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3666\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Sanchez Peña\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000957-RE-000897\",\n \"Name\" : \"APROBACIÓN DE ETIQUETAS GALLETAS DE CHOCOLAT E CON CREMA SABOR A VAINILLA. DENOMINACION DE FANTASIA\",\n \"ValidFrom\" : \"2024-11-06T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"957\",\n \"U_ClienNom\" : \"Industrias Alimenticias Colombina de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Registros Sanitarios-Regul.\",\n \"U_AbogadoEncargado\" : \"Fernando Sanchez Peña\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3667\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Sanchez Peña\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000957-RE-000898\",\n \"Name\" : \"APROBACIÓN DE ETIQUETAS GALLETAS SALADAS. DENOMINACION DE FANTASIA: SALTIN. - CRAKEÑAS SALTIN TC\",\n \"ValidFrom\" : \"2024-11-06T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"957\",\n \"U_ClienNom\" : \"Industrias Alimenticias Colombina de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Registros Sanitarios-Regul.\",\n \"U_AbogadoEncargado\" : \"Fernando Sanchez Peña\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3668\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Sanchez Peña\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000957-RE-000899\",\n \"Name\" : \"APROBACIÓN DE ETIQUETAS GALLETAS WAFER CON CREMA SABOR A VAINILLA - COLOMBINA WAFER VAINILLA BO\",\n \"ValidFrom\" : \"2024-11-06T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"957\",\n \"U_ClienNom\" : \"Industrias Alimenticias Colombina de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Registros Sanitarios-Regul.\",\n \"U_AbogadoEncargado\" : \"Fernando Sanchez Peña\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3669\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Sanchez Peña\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000957-RE-000900\",\n \"Name\" : \"APROBACIÓN DE ETIQUETA CARAMELO DURO (CHUPETA) SABOR A CEREZA INTENSA CON RELLENO GOMA DE MARCAR SA\",\n \"ValidFrom\" : \"2024-11-06T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"957\",\n \"U_ClienNom\" : \"Industrias Alimenticias Colombina de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Registros Sanitarios-Regul.\",\n \"U_AbogadoEncargado\" : \"Fernando Sanchez Peña\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3670\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Sanchez Peña\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000957-RE-000901\",\n \"Name\" : \"APROBACIÓN DE ETIQUETA CARAMELO DURO (CHUPETA) SABOR A MANGO CON RELLENO GOMA DE MASCAR SABOR A TUT\",\n \"ValidFrom\" : \"2024-11-06T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"957\",\n \"U_ClienNom\" : \"Industrias Alimenticias Colombina de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Registros Sanitarios-Regul.\",\n \"U_AbogadoEncargado\" : \"Fernando Sanchez Peña\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3671\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Sanchez Peña\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000957-RE-000902\",\n \"Name\" : \"APROBACIÓN DE ETIQUETA CARAMELO DURO (CHUPETA) SABOR A SANDIA REFRESCANTE CON RELLENO GOMA DE MASCA\",\n \"ValidFrom\" : \"2024-11-06T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"957\",\n \"U_ClienNom\" : \"Industrias Alimenticias Colombina de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Registros Sanitarios-Regul.\",\n \"U_AbogadoEncargado\" : \"Fernando Sanchez Peña\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3672\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Sanchez Peña\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000957-RE-000903\",\n \"Name\" : \"APROBACIÓN DE ETIQUETA CARAMELO DURO (CHUPETA) SABOR A UVA - FRESA CON RELLENO GOMA DE MASCAR SABOR\",\n \"ValidFrom\" : \"2024-11-06T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"957\",\n \"U_ClienNom\" : \"Industrias Alimenticias Colombina de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Registros Sanitarios-Regul.\",\n \"U_AbogadoEncargado\" : \"Fernando Sanchez Peña\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3673\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Sanchez Peña\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000957-SR-001134\",\n \"Name\" : \"Revisión de Contrato de Arrendamiento\",\n \"ValidFrom\" : \"2024-03-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"100% Final\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"957\",\n \"U_ClienNom\" : \"Industrias Alimenticias Colombina de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Civil\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2710\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:17-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:17-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=1840\u0026%24top=20 | Status: 200 | Duration: 87.1112ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:17 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000957-SR-001258\",\n \"Name\" : \"Representación Legal - Actas Anuales - Domicilio\",\n \"ValidFrom\" : \"2024-06-04T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"957\",\n \"U_ClienNom\" : \"Industrias Alimenticias Colombina de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3007\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000957-SR-001259\",\n \"Name\" : \"APROBACIÓN STRAWBERRY\",\n \"ValidFrom\" : \"2024-06-04T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"SE CREO EN LA SRL Y DEBE SER REGULATORIOS\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"957\",\n \"U_ClienNom\" : \"Industrias Alimenticias Colombina de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Registros Sanitarios-Regul.\",\n \"U_AbogadoEncargado\" : \"Fernando Sanchez Peña\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3009\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Sanchez Peña\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000957-SR-001260\",\n \"Name\" : \"APROBACIÓN FRUIT\",\n \"ValidFrom\" : \"2024-06-04T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"957\",\n \"U_ClienNom\" : \"Industrias Alimenticias Colombina de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Registros Sanitarios-Regul.\",\n \"U_AbogadoEncargado\" : \"Fernando Sanchez Peña\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3010\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Sanchez Peña\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000957-SR-001261\",\n \"Name\" : \"APROBACIÓN CEREZA\",\n \"ValidFrom\" : \"2024-06-04T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"957\",\n \"U_ClienNom\" : \"Industrias Alimenticias Colombina de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Registros Sanitarios-Regul.\",\n \"U_AbogadoEncargado\" : \"Fernando Sanchez Peña\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3011\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Sanchez Peña\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000957-SR-001262\",\n \"Name\" : \"APROBACIÓN SANDIA\",\n \"ValidFrom\" : \"2024-06-04T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"957\",\n \"U_ClienNom\" : \"Industrias Alimenticias Colombina de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Registros Sanitarios-Regul.\",\n \"U_AbogadoEncargado\" : \"Fernando Sanchez Peña\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3012\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Sanchez Peña\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000957-SR-001353\",\n \"Name\" : \"Búsqueda y Evaluación de Personal B\u0026E\",\n \"ValidFrom\" : \"2024-07-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Búsqueda de personal para la Compañía, se factura 50% al inicio y 50% a la entrega de las postula\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"957\",\n \"U_ClienNom\" : \"Industrias Alimenticias Colombina de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3131\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000957-SR-001369\",\n \"Name\" : \"Búsqueda y Evaluación de Personal B\u0026E\",\n \"ValidFrom\" : \"2024-07-18T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"El objetivo general del servicio será apoyar a Colombina en la búsqueda de personal para sus ofici\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"957\",\n \"U_ClienNom\" : \"Industrias Alimenticias Colombina de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3148\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000957-SR-001400\",\n \"Name\" : \"APROBACIÓN DEL PRODUCTO BON\",\n \"ValidFrom\" : \"2024-07-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"957\",\n \"U_ClienNom\" : \"Industrias Alimenticias Colombina de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Registros Sanitarios-Regul.\",\n \"U_AbogadoEncargado\" : \"Fernando Sanchez Peña\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3207\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Sanchez Peña\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000957-SR-001401\",\n \"Name\" : \"APROBACIÓN DE ETI\",\n \"ValidFrom\" : \"2024-07-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"957\",\n \"U_ClienNom\" : \"Industrias Alimenticias Colombina de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Registros Sanitarios-Regul.\",\n \"U_AbogadoEncargado\" : \"Fernando Sanchez Peña\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3208\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Sanchez Peña\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000957-SR-001402\",\n \"Name\" : \"APROBACIÓN DE ETIQUETA AF\",\n \"ValidFrom\" : \"2024-07-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"957\",\n \"U_ClienNom\" : \"Industrias Alimenticias Colombina de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Registros Sanitarios-Regul.\",\n \"U_AbogadoEncargado\" : \"Fernando Sanchez Peña\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3209\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Sanchez Peña\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000957-SR-001403\",\n \"Name\" : \"APROBACIÓN DE ETIQUETA STRAW\",\n \"ValidFrom\" : \"2024-07-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"957\",\n \"U_ClienNom\" : \"Industrias Alimenticias Colombina de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Registros Sanitarios-Regul.\",\n \"U_AbogadoEncargado\" : \"Fernando Sanchez Peña\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3210\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Sanchez Peña\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000957-SR-001425\",\n \"Name\" : \"Servicios legales integrales generales\",\n \"ValidFrom\" : \"2024-08-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Tarifario acordado: Hora Socio: USD. 200.-\\rHora Director: USD. 180.-\\rHora Asociado Senior: USD. 150.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"957\",\n \"U_ClienNom\" : \"Industrias Alimenticias Colombina de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3251\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000957-SR-001460\",\n \"Name\" : \"MERCOSUR DE 2 AÑOS - LUIS CARLOS YEPES AREVALO\",\n \"ValidFrom\" : \"2024-08-26T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorarios de USD. 856.46 incluyen gastos e impuestos de ley.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"957\",\n \"U_ClienNom\" : \"Industrias Alimenticias Colombina de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3296\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000957-SR-001461\",\n \"Name\" : \"MERCOSUR DE 2 AÑOS - CAROLINA GONZALEZ PALACIO\",\n \"ValidFrom\" : \"2024-08-26T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorarios de USD. 856.46 incluyen gastos e impuestos de ley.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"957\",\n \"U_ClienNom\" : \"Industrias Alimenticias Colombina de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3297\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000957-SR-001462\",\n \"Name\" : \"MERCOSUR DE 2 AÑOS - FEDERICO ALEJANDRO YEPES GONZALEZ\",\n \"ValidFrom\" : \"2024-08-26T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorarios de USD. 856.46 incluyen gastos e impuestos de ley.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"957\",\n \"U_ClienNom\" : \"Industrias Alimenticias Colombina de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3298\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000957-SR-001463\",\n \"Name\" : \"CEDULA PARA EXTRANJERO - FEDERICO ALEJANDRO YEPES GONZALEZ\",\n \"ValidFrom\" : \"2024-08-26T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorarios de USD. 257.83 incluyen gastos e impuestos de ley.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"957\",\n \"U_ClienNom\" : \"Industrias Alimenticias Colombina de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3299\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000957-SR-001464\",\n \"Name\" : \"CEDULA PARA EXTRANJERO - CAROLINA GONZALEZ PALACIO\",\n \"ValidFrom\" : \"2024-08-26T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorarios de USD. 257.83 incluyen gastos e impuestos de ley.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"957\",\n \"U_ClienNom\" : \"Industrias Alimenticias Colombina de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3300\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000957-SR-001465\",\n \"Name\" : \"CARNET PARA EXTRANJERO - LUIS CARLOS YEPES AREVALO\",\n \"ValidFrom\" : \"2024-08-26T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorarios de USD. 257.83 incluyen gastos e impuestos de ley.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"957\",\n \"U_ClienNom\" : \"Industrias Alimenticias Colombina de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3301\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000957-SR-001544\",\n \"Name\" : \"ELABORACION DE REGLAMENTO INTERNO (POLITICAS DE GESTION HUMANA)\",\n \"ValidFrom\" : \"2024-09-05T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Cobrar el 100 % a la conclusión del servicio. Bs 15,000.00\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"957\",\n \"U_ClienNom\" : \"Industrias Alimenticias Colombina de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Paul Aramayo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3392\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Paul Aramayo\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000957-SR-001545\",\n \"Name\" : \"INATAURACION DE REGIMEN DISCIPLINARIO\",\n \"ValidFrom\" : \"2024-09-05T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Cobrar el 100% de honorarios a la conclusión del servicio. Bs. 10,000.00\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"957\",\n \"U_ClienNom\" : \"Industrias Alimenticias Colombina de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Paul Aramayo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3393\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Paul Aramayo\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:17-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:17-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=1860\u0026%24top=20 | Status: 200 | Duration: 98.6868ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:17 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000957-SR-001546\",\n \"Name\" : \"CONFORMACION DEL PRIMER COMITE DISCIPLINARIO\",\n \"ValidFrom\" : \"2024-09-05T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Cobrar el 100% de honorario a la conclusión del servicio. Bs. 5,000.00\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"957\",\n \"U_ClienNom\" : \"Industrias Alimenticias Colombina de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Paul Aramayo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3394\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Paul Aramayo\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000957-SR-001558\",\n \"Name\" : \"Servicios de outsourcing administrativo laboral (primera etapa de contratación)\",\n \"ValidFrom\" : \"2024-09-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Soporte en procedimientos de contratación incluyendo seguimiento en para la firma de contratos, vis\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"957\",\n \"U_ClienNom\" : \"Industrias Alimenticias Colombina de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3410\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000957-SR-001561\",\n \"Name\" : \"Apertura de 3 Sucursales\",\n \"ValidFrom\" : \"2024-09-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"957\",\n \"U_ClienNom\" : \"Industrias Alimenticias Colombina de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3413\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000957-SR-001562\",\n \"Name\" : \"Domicilio Legal para 4 Sucursales\",\n \"ValidFrom\" : \"2024-09-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Por favor iniciar la facturación a partir del 01 de octubre de 2024\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"957\",\n \"U_ClienNom\" : \"Industrias Alimenticias Colombina de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3414\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000957-SR-001596\",\n \"Name\" : \"ELABORACION Y PRESENTACION DE PGSST\",\n \"ValidFrom\" : \"2024-09-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Bs. 13.000. El 100% del honorario será cobrado a la conclusión del servicio\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"957\",\n \"U_ClienNom\" : \"Industrias Alimenticias Colombina de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Paul Aramayo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3450\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Paul Aramayo\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000957-SR-001601\",\n \"Name\" : \"Obtención de Licencia de Funcionamiento Municipal del domicilio principal en Torre Empresarial Cain\",\n \"ValidFrom\" : \"2024-09-27T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"957\",\n \"U_ClienNom\" : \"Industrias Alimenticias Colombina de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3455\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000957-SR-001628\",\n \"Name\" : \"Apertura de 1 Sucursal\",\n \"ValidFrom\" : \"2024-10-08T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"957\",\n \"U_ClienNom\" : \"Industrias Alimenticias Colombina de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3481\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000957-SR-001710\",\n \"Name\" : \"APROBACIÓN DE ETIQUETA CARAMELO DURO (CHUPETA) SABOR A CEREZA INTENSA CON RELLENO GOMA DE MARCAR SA\",\n \"ValidFrom\" : \"2024-11-06T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"SE EQUIVOCO DE COMPAÑIA ES EN REGULATORIOS\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"957\",\n \"U_ClienNom\" : \"Industrias Alimenticias Colombina de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Registros Sanitarios-Regul.\",\n \"U_AbogadoEncargado\" : null,\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3661\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Sanchez Peña\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000957-SR-001711\",\n \"Name\" : \"APROBACIÓN DE ETIQUETA CARAMELO DURO (CHUPETA) SABOR A MANGO CON RELLENO GOMA DE MASCAR SABOR A TUT\",\n \"ValidFrom\" : \"2024-11-06T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"SE EQUIVOCO DE COMPAÑIA ES EN REGULATORIOS\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"957\",\n \"U_ClienNom\" : \"Industrias Alimenticias Colombina de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Registros Sanitarios-Regul.\",\n \"U_AbogadoEncargado\" : null,\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3662\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Sanchez Peña\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000957-SR-001712\",\n \"Name\" : \"APROBACIÓN DE ETIQUETA CARAMELO DURO (CHUPETA) SABOR A SANDIA REFRESCANTE CON RELLENO GOMA DE MASCA\",\n \"ValidFrom\" : \"2024-11-06T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"SE EQUIVOCO DE COMPAÑIA ES EN REGULATORIOS\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"957\",\n \"U_ClienNom\" : \"Industrias Alimenticias Colombina de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Registros Sanitarios-Regul.\",\n \"U_AbogadoEncargado\" : null,\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3663\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Sanchez Peña\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000957-SR-001713\",\n \"Name\" : \"APROBACIÓN DE ETIQUETA CARAMELO DURO (CHUPETA) SABOR A UVA - FRESA CON RELLENO GOMA DE MASCAR SABOR\",\n \"ValidFrom\" : \"2024-11-06T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"SE EQUIVOCO DE COMPAÑIA ES EN REGULATORIOS\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"957\",\n \"U_ClienNom\" : \"Industrias Alimenticias Colombina de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Registros Sanitarios-Regul.\",\n \"U_AbogadoEncargado\" : null,\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3664\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Sanchez Peña\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000957-SR-002041\",\n \"Name\" : \"Outsourcing Payroll\",\n \"ValidFrom\" : \"2025-05-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Administración de planilla salarial, inicialmente gestoría.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"957\",\n \"U_ClienNom\" : \"Industrias Alimenticias Colombina de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4351\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000957-SR-002062\",\n \"Name\" : \"Informe sobre la Compra de Activos Digitales (USDT) en Bolivia\",\n \"ValidFrom\" : \"2025-06-10T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"957\",\n \"U_ClienNom\" : \"Industrias Alimenticias Colombina de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Mercantil-Banca\u0026Finanzas\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4384\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000957-SR-002124\",\n \"Name\" : \"Videoconferencia sobre contexto económico, político y legal de Bolivia\",\n \"ValidFrom\" : \"2025-07-16T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"957\",\n \"U_ClienNom\" : \"Industrias Alimenticias Colombina de Bolivia S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4534\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000958-SR-001136\",\n \"Name\" : \"Informe Legal Corporativo y Tributario\",\n \"ValidFrom\" : \"2024-03-19T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"50% Inicio/50% Final\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"958\",\n \"U_ClienNom\" : \"CERVECERÍA BOLIVIANA NACIONAL S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2731\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000958-SR-001161\",\n \"Name\" : \"Informe Divisas\",\n \"ValidFrom\" : \"2024-04-05T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"50% Inicio/50% Final\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"958\",\n \"U_ClienNom\" : \"CERVECERÍA BOLIVIANA NACIONAL S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Luis Moreno Gutierrez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2824\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Moreno Gutierrez\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000958-SR-001269\",\n \"Name\" : \"INFORME LEGAL LABORAL SOBRE PAGO DE VACACIONES A LIDERES SINDICALES\",\n \"ValidFrom\" : \"2024-06-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"La totalidad de los honorarios serán cobrados a la entrega del informe, hecho que deberá ser reali\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"958\",\n \"U_ClienNom\" : \"CERVECERÍA BOLIVIANA NACIONAL S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Paul Aramayo Salinas\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3028\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Paul Aramayo Salinas\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000958-SR-001305\",\n \"Name\" : \"Asesoramiento Directorio\",\n \"ValidFrom\" : \"2024-06-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"El honorario se ha fijado en USD 16,650 en 2 pagos de 50% cada uno al inicio y final del proyecto.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"958\",\n \"U_ClienNom\" : \"CERVECERÍA BOLIVIANA NACIONAL S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Carlos Fernando Landa Alejandro\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3074\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Carlos Fernando Landa Alejandro\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000958-SR-001306\",\n \"Name\" : \"Asesoramiento Directorio\",\n \"ValidFrom\" : \"2024-06-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"958\",\n \"U_ClienNom\" : \"CERVECERÍA BOLIVIANA NACIONAL S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Fernando Landa\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3075\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Landa\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000958-SR-001310\",\n \"Name\" : \"Informe legal sobre convenios sobre el beneficio 45/48 y su aplicación a líderes sindicales.\",\n \"ValidFrom\" : \"2024-06-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"El total del honorario será cancelado a la entrega del informe. 100% al final.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"958\",\n \"U_ClienNom\" : \"CERVECERÍA BOLIVIANA NACIONAL S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Paul Aramayo Salinas\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3081\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Paul Aramayo Salinas\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:17-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:18-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=1880\u0026%24top=20 | Status: 200 | Duration: 92.8009ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:18 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000958-SR-001312\",\n \"Name\" : \"Informe Cash pooling\",\n \"ValidFrom\" : \"2024-06-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"958\",\n \"U_ClienNom\" : \"CERVECERÍA BOLIVIANA NACIONAL S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Mercantil-Banca\u0026Finanzas\",\n \"U_AbogadoEncargado\" : \"Fernando Landa\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3083\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Landa\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000958-SR-001313\",\n \"Name\" : \"Informe - Alternativas pago dividendos\",\n \"ValidFrom\" : \"2024-06-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"958\",\n \"U_ClienNom\" : \"CERVECERÍA BOLIVIANA NACIONAL S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Mercantil-Banca\u0026Finanzas\",\n \"U_AbogadoEncargado\" : \"Fernando Landa\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3084\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Landa\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000958-SR-001328\",\n \"Name\" : \"Informe sobre Facilidades de Pago\",\n \"ValidFrom\" : \"2024-06-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"958\",\n \"U_ClienNom\" : \"CERVECERÍA BOLIVIANA NACIONAL S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Luis Valda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3101\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Valda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000958-SR-001346\",\n \"Name\" : \"Reportes - ASFI\",\n \"ValidFrom\" : \"2024-07-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"958\",\n \"U_ClienNom\" : \"CERVECERÍA BOLIVIANA NACIONAL S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Mercantil-Banca\u0026Finanzas\",\n \"U_AbogadoEncargado\" : \"Fernando Landa\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3124\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Landa\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000958-SR-001416\",\n \"Name\" : \"Evento MB Legal Summit- Auspicio\",\n \"ValidFrom\" : \"2024-08-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"A facturar 14.000 Bs. (Caroll Porcel, seguimiento)\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"958\",\n \"U_ClienNom\" : \"CERVECERÍA BOLIVIANA NACIONAL S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Back Office\",\n \"U_AbogadoEncargado\" : \"Luis Moreno\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3238\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : null,\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000958-SR-001443\",\n \"Name\" : \"Reestructuración laboral SERVIEMPRESAS S.A.\",\n \"ValidFrom\" : \"2024-08-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"958\",\n \"U_ClienNom\" : \"CERVECERÍA BOLIVIANA NACIONAL S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Paul Aramayo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3278\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Paul Aramayo\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000958-SR-001452\",\n \"Name\" : \"Informe sobre tratamiento de pagos extraordinarios con relación a aportes a los entes gestores\",\n \"ValidFrom\" : \"2024-08-23T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"El 100% del honorario será cobrado a la entrega del informe. SON 22.000 BS.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"958\",\n \"U_ClienNom\" : \"CERVECERÍA BOLIVIANA NACIONAL S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Paul Aramayo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3288\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Paul Aramayo\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000958-SR-001557\",\n \"Name\" : \"Preparación proceso judicial Amazónica\",\n \"ValidFrom\" : \"2024-09-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"958\",\n \"U_ClienNom\" : \"CERVECERÍA BOLIVIANA NACIONAL S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Litigios\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3409\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000958-SR-001630\",\n \"Name\" : \"Informe Legal sobre Auditoria Ambiental en Planta Santa Cruz\",\n \"ValidFrom\" : \"2024-10-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"958\",\n \"U_ClienNom\" : \"CERVECERÍA BOLIVIANA NACIONAL S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Ambiental\",\n \"U_AbogadoEncargado\" : \"André Tejerina\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3483\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"André Tejerina\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000958-SR-001705\",\n \"Name\" : \"Negociación - posible conciliación Amazónica\",\n \"ValidFrom\" : \"2024-11-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"958\",\n \"U_ClienNom\" : \"CERVECERÍA BOLIVIANA NACIONAL S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Civil\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3633\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000958-SR-001751\",\n \"Name\" : \"Retainer Mensual Ambiental\",\n \"ValidFrom\" : \"2024-12-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"La tarifa es de Bs. 20.000 por 20 horas (Bs 1000/hora), pasadas éstas se cobrará Bs 950 por hora e\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"958\",\n \"U_ClienNom\" : \"CERVECERÍA BOLIVIANA NACIONAL S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Ambiental\",\n \"U_AbogadoEncargado\" : \"André Tejerina\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3720\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"André Tejerina\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000958-SR-001786\",\n \"Name\" : \"Informe sobre modelos comerciales para venta de productos\",\n \"ValidFrom\" : \"2024-12-18T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"958\",\n \"U_ClienNom\" : \"CERVECERÍA BOLIVIANA NACIONAL S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3771\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000958-SR-001810\",\n \"Name\" : \"Asesoría legal ambiental por horas\",\n \"ValidFrom\" : \"2024-12-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Horas con CAP por un total de 20 horas al mes hora extra es por USD 140.80\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"958\",\n \"U_ClienNom\" : \"CERVECERÍA BOLIVIANA NACIONAL S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Ambiental\",\n \"U_AbogadoEncargado\" : \"André Tejerina\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3798\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"André Tejerina\",\n \"U_Tipo_Honorario\" : \"Por Horas Con CAP\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000958-SR-001906\",\n \"Name\" : \"Informe sobre condición de Dirigentes Sindicales e inamovilidad laboral por fuero sindical\",\n \"ValidFrom\" : \"2025-03-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"958\",\n \"U_ClienNom\" : \"CERVECERÍA BOLIVIANA NACIONAL S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Paul Aramayo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3939\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Paul Aramayo\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000959-SR-001140\",\n \"Name\" : \"Servicios Legales Mensuales (FM)\",\n \"ValidFrom\" : \"2024-03-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"USD. 1000 es de: Socio 180, Asociado Senior 140 y Asociado 100. Horas extras a los USD. 1000 que deb\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"959\",\n \"U_ClienNom\" : \"TECNOLOGIA EN PREFABRICADOS PARA LA CONSTRUCCION TECNOPRECO S.R.L\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Teddy Mercado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2742\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Teddy Mercado\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000959-SR-002012\",\n \"Name\" : \"proceso judicial de cobro Flia. Cassap - Yacuiba\",\n \"ValidFrom\" : \"2025-05-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"El cliente ya pago el primer hito por adelantado, se debe facturar\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"959\",\n \"U_ClienNom\" : \"TECNOLOGIA EN PREFABRICADOS PARA LA CONSTRUCCION TECNOPRECO S.R.L\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Zeballos\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"4286\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Zeballos\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000960-SR-001184\",\n \"Name\" : \"Cámaras de Polímeros, Supermercados y Farmacias\",\n \"ValidFrom\" : \"2024-04-18T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"960\",\n \"U_ClienNom\" : \"CÁMARA DE INDUSTRIA, COMERCIO, SERVICIOS Y TURISMO -CAINCO\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Wilfredo Rojo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2871\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Wilfredo Rojo\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000963-SR-001143\",\n \"Name\" : \"FINANCIAMIENTO YPFB\",\n \"ValidFrom\" : \"2024-03-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"100% Final\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"963\",\n \"U_ClienNom\" : \"RPC PAR\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Mercantil-Banca\u0026Finanzas\",\n \"U_AbogadoEncargado\" : \"Andres Moreno Gutierrez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2748\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andres Moreno Gutierrez\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000964-SR-001144\",\n \"Name\" : \"La Francesa - Venta de Activos\",\n \"ValidFrom\" : \"2024-03-26T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"100% Final - El honorario está sujeto a ajustes.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"964\",\n \"U_ClienNom\" : \"Alejandro Yaffar\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"M\u0026A\",\n \"U_AbogadoEncargado\" : \"Daniel Marcelo Arredondo Zelada\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2758\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Daniel Marcelo Arredondo Zelada\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000966-SR-001145\",\n \"Name\" : \"Revisión Contrato de Distribución\",\n \"ValidFrom\" : \"2024-03-27T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"966\",\n \"U_ClienNom\" : \"EXPOCEAVET S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Andre Luis Tejerina Queiroz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2760\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andre Luis Tejerina Queiroz\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:18-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:18-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=1900\u0026%24top=20 | Status: 200 | Duration: 84.954ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:18 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000968-SR-001156\",\n \"Name\" : \"Ampliación de Objeto Social\",\n \"ValidFrom\" : \"2024-04-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"968\",\n \"U_ClienNom\" : \"RADIO FIDES TARIJA S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Carlos Merino\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2779\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Carlos Merino\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000968-SR-001680\",\n \"Name\" : \"Preparación, elaboración actas asamblea extraordinaria revocatoria poderes nuevo representante leg\",\n \"ValidFrom\" : \"2024-10-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Según correo de Dr. Carlos Merino de fecha 03-12-24\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"968\",\n \"U_ClienNom\" : \"RADIO FIDES TARIJA S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Carlos Merino\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3587\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Carlos Merino\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000969-SR-001157\",\n \"Name\" : \"Regularización De Datos Técnicos Y Derecho Propietario De Un Departamento, Parqueo Y Baulera Edif\",\n \"ValidFrom\" : \"2024-04-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"El asunto fue inactivado por instrucciones verbal de Fernando Sanchez Peña la solicitud fue in sit\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"969\",\n \"U_ClienNom\" : \"KARIN MARIA EUGENIA EULERT VON NAGY\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Civil\",\n \"U_AbogadoEncargado\" : \"Carlos Merino\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2785\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Carlos Merino\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000970-SR-001162\",\n \"Name\" : \"Due Diligence Mini\",\n \"ValidFrom\" : \"2024-04-05T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"100% Final- El cliente no acepto el servicio y se da de baja.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"970\",\n \"U_ClienNom\" : \"MARCELINO\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Luis Moreno Gutierrez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2825\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Moreno Gutierrez\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000971-SR-001163\",\n \"Name\" : \"PROCESO LABORAL MARCO ANTONIO HURTADO BAUER\",\n \"ValidFrom\" : \"2024-04-05T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"971\",\n \"U_ClienNom\" : \"ROGHUR S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Paul Aramayo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2826\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Paul Aramayo\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000971-SR-002025\",\n \"Name\" : \"ASESORIA LEGAL\",\n \"ValidFrom\" : \"2025-05-14T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Asesoría legal respecto problemática emergente de contrato administrativo suscrito con el Minister\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"971\",\n \"U_ClienNom\" : \"ROGHUR S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Contratación Pública\",\n \"U_AbogadoEncargado\" : \"Mauricio Aguirre\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4307\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Mauricio Aguirre\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000971-SR-002050\",\n \"Name\" : \"Asistencia legal entrega bomba Misicuni CBA\",\n \"ValidFrom\" : \"2025-05-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"971\",\n \"U_ClienNom\" : \"ROGHUR S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Administrativo\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"4361\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000972-SR-001164\",\n \"Name\" : \"Constitución SRL\",\n \"ValidFrom\" : \"2024-04-08T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"50% Inicio/50% Final\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"972\",\n \"U_ClienNom\" : \"GRAMAR S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2827\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000973-SR-001168\",\n \"Name\" : \"Proceso Judicial Tributario (Primera Instancia)\",\n \"ValidFrom\" : \"2024-04-08T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"50% Inicio/50% Final/ facturar 50% ahora y 50% cuando se presente el recurso de primera instancia (M\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"973\",\n \"U_ClienNom\" : \"MISTURA S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Teddy Alberto Mercado Carrion\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2831\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Teddy Alberto Mercado Carrion\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000973-SR-001173\",\n \"Name\" : \"Defensa Tributaria VISTA DE CARGO Nº 292420000223\",\n \"ValidFrom\" : \"2024-04-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"50% Inicio/50% Final/ 700 Dólares al inicio 800 Dólares al final de segunda instancia\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"973\",\n \"U_ClienNom\" : \"MISTURA S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Edwin Rodrigo Burgos Fernandez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2857\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Edwin Rodrigo Burgos Fernandez\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000973-SR-001271\",\n \"Name\" : \"Fiscalización Integral Gestión 2021\",\n \"ValidFrom\" : \"2024-06-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"973\",\n \"U_ClienNom\" : \"MISTURA S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Luis Valda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3030\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Valda\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000973-SR-001274\",\n \"Name\" : \"Proceso Verificación Específica del IVA – Gestión 2021\",\n \"ValidFrom\" : \"2024-06-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Honorario de éxito de 5% al final del servicio.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"973\",\n \"U_ClienNom\" : \"MISTURA S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Luis Valda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3044\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Valda\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000975-SR-001177\",\n \"Name\" : \"Impugnación Proveído (Mala notificación de RD)\",\n \"ValidFrom\" : \"2024-04-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"50% Inicio/50% Final\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"975\",\n \"U_ClienNom\" : \"Prefabricados y Montajes del Noroeste S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Luis Valda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2861\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Valda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000976-SR-001178\",\n \"Name\" : \"Calendario Legal 2024\",\n \"ValidFrom\" : \"2024-04-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"100% Final\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"976\",\n \"U_ClienNom\" : \"DESARROLLADORA INMOBILIARIA MITRA S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2862\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000978-SR-001185\",\n \"Name\" : \"MINISTERIO TRABAJO/HORACIO LUIS ARIAS ct. INCONTACT\",\n \"ValidFrom\" : \"2024-04-18T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"SE INACTIVA A SOLICITUD DEL DR RENE CLAURE, YA QUE ESTE ASUNTO FUE DUPLICADO SE ACTIVA EL ASUNTO PAR\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"978\",\n \"U_ClienNom\" : \"INCONTACT BOLIVIA S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Natalio Zegarra\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2883\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Natalio Zegarra\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000978-SR-001270\",\n \"Name\" : \"Exportación de servicios (informe y tramitación)\",\n \"ValidFrom\" : \"2024-06-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"978\",\n \"U_ClienNom\" : \"INCONTACT BOLIVIA S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Luis Valda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3029\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Valda\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000979-SR-001186\",\n \"Name\" : \"Revisión de 2 Contratos de Comisión Mercantil\",\n \"ValidFrom\" : \"2024-04-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"100% Final\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"979\",\n \"U_ClienNom\" : \"LG Electronics lnc..Chile Ltda.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2884\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000979-SR-001304\",\n \"Name\" : \"Servicios legales\",\n \"ValidFrom\" : \"2024-06-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"El tarifario acordado es el siguiente: \\r* Hora Socio: USD. 250.-\\r• Hora Director: USD. 250.-\\r• H\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"979\",\n \"U_ClienNom\" : \"LG Electronics lnc..Chile Ltda.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3071\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000979-SR-001320\",\n \"Name\" : \"Servicios Legales inte pro bono\",\n \"ValidFrom\" : \"2024-06-26T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"El tarifario de horas acordadas es el siguiente: Hora Socio USD 250.-, Hora Director USD. 250.-, Hor\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"979\",\n \"U_ClienNom\" : \"LG Electronics lnc..Chile Ltda.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : null,\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3092\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000980-SR-001189\",\n \"Name\" : \"Informe Legal\",\n \"ValidFrom\" : \"2024-04-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"100% Final\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"980\",\n \"U_ClienNom\" : \"NUVOLIS BOLIVIA S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Andres Moreno Gutierrez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2894\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andres Moreno Gutierrez\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:18-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:18-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=1920\u0026%24top=20 | Status: 200 | Duration: 91.8722ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:18 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000981-SR-001222\",\n \"Name\" : \"Revisión Contrato de Distribución Química Amparo\",\n \"ValidFrom\" : \"2024-05-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"100% Final\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"981\",\n \"U_ClienNom\" : \"Vouga Abogados S.S.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Rene Claure Veizaga\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2931\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Claure Veizaga\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000982-SR-001192\",\n \"Name\" : \"Asesoría Tributaria en RRA y RRJ\",\n \"ValidFrom\" : \"2024-04-26T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"100% Final\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"982\",\n \"U_ClienNom\" : \"Inquidor S.R.L. Químicos Industriales\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Edwin Rodrigo Burgos Fernandez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2899\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Edwin Rodrigo Burgos Fernandez\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000982-SR-001223\",\n \"Name\" : \"Legal report regarding seniority bonus payment\",\n \"ValidFrom\" : \"2024-05-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"100% Final\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"982\",\n \"U_ClienNom\" : \"Embajada de la República de Corea en Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Rene Claure Veizaga\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2932\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Claure Veizaga\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000982-SR-001224\",\n \"Name\" : \"Calculation of seniority bonuses for employees\",\n \"ValidFrom\" : \"2024-05-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"100% Final\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"982\",\n \"U_ClienNom\" : \"Embajada de la República de Corea en Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Rene Claure Veizaga\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2933\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Claure Veizaga\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000983-SR-001196\",\n \"Name\" : \"Obtención de Certificado de Antecedentes Policiales\",\n \"ValidFrom\" : \"2024-04-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"50% Inicio/50% Final\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"983\",\n \"U_ClienNom\" : \"DONGHWAN KO\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Administrativo\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2903\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000984-SR-001198\",\n \"Name\" : \"Acuerdo Transaccional Club Náutico\",\n \"ValidFrom\" : \"2024-04-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"984\",\n \"U_ClienNom\" : \"Juan Carlos Rivero Jordán\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Civil\",\n \"U_AbogadoEncargado\" : \"Rene Cuellar Miranda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2905\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Cuellar Miranda\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000984-SR-001923\",\n \"Name\" : \"M\u0026A - ED - Contactmedia\",\n \"ValidFrom\" : \"2025-03-18T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"984\",\n \"U_ClienNom\" : \"Juan Carlos Rivero Jordán\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3960\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000985-SR-001204\",\n \"Name\" : \"Obtención de Personalidad Jurídica- Pro Bono\",\n \"ValidFrom\" : \"2024-04-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"985\",\n \"U_ClienNom\" : \"JCI Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2911\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000986-SR-001205\",\n \"Name\" : \"ACOMPAÑAMIENTO ARBITRAJE CCI\",\n \"ValidFrom\" : \"2024-04-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Marcelito, señalan se debe cobrar desde abril 2024. rescicion de contrato segun cite de 03 de septi\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"986\",\n \"U_ClienNom\" : \"Clínica Metropolitana de las Américas S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Arbitraje\",\n \"U_AbogadoEncargado\" : \"Andrés Moreno\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2912\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andrés Moreno\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000986-SR-001264\",\n \"Name\" : \"Proceso de negociación\",\n \"ValidFrom\" : \"2024-06-05T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"986\",\n \"U_ClienNom\" : \"Clínica Metropolitana de las Américas S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Arbitraje\",\n \"U_AbogadoEncargado\" : \"Andrés Moreno\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3014\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andrés Moreno\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000986-SR-002093\",\n \"Name\" : \"Informe Legal sobre capitalización con Letras de Cambio\",\n \"ValidFrom\" : \"2025-07-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"986\",\n \"U_ClienNom\" : \"Clínica Metropolitana de las Américas S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4495\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000988-SR-001211\",\n \"Name\" : \"Análisis Tributario Tarjeta Asistencia\",\n \"ValidFrom\" : \"2024-05-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorarios se pagan así: Firma del contrato 30%Segunda semana 30%Entrega del trabajo 40%\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"988\",\n \"U_ClienNom\" : \"Viajes Espacial\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Luis Valda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2919\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Valda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000988-SR-001302\",\n \"Name\" : \"Informe Legal Análisis Modelo de Negocio\",\n \"ValidFrom\" : \"2024-06-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"TOTAL DEL SERVICIO $US 2300 EN FECHA 27 DE JUNI SE INACTIVA EL ASUNTO POR ERROE EN LA CREACION DUPLI\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"988\",\n \"U_ClienNom\" : \"Viajes Espacial\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Luis Moreno Gutierrez\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3072\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Moreno Gutierrez\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000989-SR-001212\",\n \"Name\" : \"Nueva Estructura Empresarial Tributaria - Corporativa\",\n \"ValidFrom\" : \"2024-05-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"50% Inicio/50% Final\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"989\",\n \"U_ClienNom\" : \"Grupo DEANE\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Luis Valda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2920\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Valda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000990-SR-001215\",\n \"Name\" : \"Homologación - Adecuación Personalidad Jurídica\",\n \"ValidFrom\" : \"2024-05-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"50% Inicio/50% Final\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"990\",\n \"U_ClienNom\" : \"Fundación Cristiana de Ayuda Mutua\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Civil\",\n \"U_AbogadoEncargado\" : \"Rene Claure Veizaga\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2924\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rene Claure Veizaga\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000991-SR-001223\",\n \"Name\" : \"Legal report regarding seniority bonus payment\",\n \"ValidFrom\" : \"2024-05-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"100% Final\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"991\",\n \"U_ClienNom\" : \"Embajada de la República de Corea en Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2932\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000991-SR-001224\",\n \"Name\" : \"Calculation of seniority bonuses for employees\",\n \"ValidFrom\" : \"2024-05-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"100% Final\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"991\",\n \"U_ClienNom\" : \"Embajada de la República de Corea en Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2933\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000991-SR-001777\",\n \"Name\" : \"Cálculo y liquidación trabajadora Yaquelin Colque\",\n \"ValidFrom\" : \"2024-12-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"991\",\n \"U_ClienNom\" : \"Embajada de la República de Corea en Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3762\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000991-SR-001837\",\n \"Name\" : \"ASESORAMIENTO LEGAL DISCONTINUO EN CASOS ESPECIFICOS\",\n \"ValidFrom\" : \"2025-01-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"El proyecto se crea con base a dos hitos. El primer hito se debe cobrar la totalidad del monto estab\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"991\",\n \"U_ClienNom\" : \"Embajada de la República de Corea en Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Natalio Zegarra\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3848\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Natalio Zegarra\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000991-SR-002091\",\n \"Name\" : \"Informe - Pago de Quinquenios en Bolivia\",\n \"ValidFrom\" : \"2025-06-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"991\",\n \"U_ClienNom\" : \"Embajada de la República de Corea en Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Noelia Sanjinés\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"4493\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Noelia Sanjinés\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:18-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:18-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=1940\u0026%24top=20 | Status: 200 | Duration: 86.3212ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:18 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"000992-SR-001230\",\n \"Name\" : \"Elaboración Carta Judith Zelmy del Carpio\",\n \"ValidFrom\" : \"2024-05-10T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"100% Inicio\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"992\",\n \"U_ClienNom\" : \"MASTER MOTORS S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Alvaro Araoz Ardaya\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"2942\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Alvaro Araoz Ardaya\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000996-SR-001231\",\n \"Name\" : \"Adecuación de Estatutos y Reglamento\",\n \"ValidFrom\" : \"2024-05-10T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"100% Final\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"996\",\n \"U_ClienNom\" : \"Asociación de Copropietarios Torre Empresarial CAINCO\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2943\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000998-SR-001240\",\n \"Name\" : \"SERVICIOS LEGALES INTEGRALES\",\n \"ValidFrom\" : \"2024-05-17T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"998\",\n \"U_ClienNom\" : \"ALMA S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Mercantil-Banca\u0026Finanzas\",\n \"U_AbogadoEncargado\" : \"Fernando Landa\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"2973\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Landa\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000999-SR-001250\",\n \"Name\" : \"Defensa Legal Resolución Sancionatoria Aduana 564/2024\",\n \"ValidFrom\" : \"2024-05-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"999\",\n \"U_ClienNom\" : \"IMEMED IMPORTACIONES EXPORTACIONES\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"2995\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000999-SR-001320\",\n \"Name\" : \"SERVICIOS LEGALES INTEGRALES\",\n \"ValidFrom\" : \"2024-06-26T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"999\",\n \"U_ClienNom\" : \"IMEMED IMPORTACIONES EXPORTACIONES\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"3093\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000999-SR-001737\",\n \"Name\" : \"Corrección Datos propietario Unipersonal SEGIP\",\n \"ValidFrom\" : \"2024-11-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"999\",\n \"U_ClienNom\" : \"IMEMED IMPORTACIONES EXPORTACIONES\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Administrativo\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"3703\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000999-SR-001886\",\n \"Name\" : \"Proceso Contencioso Administrativo Aduana Sucre\",\n \"ValidFrom\" : \"2025-02-19T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"999\",\n \"U_ClienNom\" : \"IMEMED IMPORTACIONES EXPORTACIONES\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"3912\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"000999-SR-001887\",\n \"Name\" : \"Patrocinio Intención Resolución Hospital Viedma\",\n \"ValidFrom\" : \"2025-02-19T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"999\",\n \"U_ClienNom\" : \"IMEMED IMPORTACIONES EXPORTACIONES\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Administrativo\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"3913\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001000-SR-001245\",\n \"Name\" : \"Servicios Legales integrales PRO BONO\",\n \"ValidFrom\" : \"2024-05-27T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"PRO BONO DE LA FAMILIA MORENO\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1000\",\n \"U_ClienNom\" : \"TOMOSUR S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"Andrés Moreno\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2978\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andrés Moreno\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001002-SR-001252\",\n \"Name\" : \"CONSULTA AMAZON WEB SERVICES (AWS)\",\n \"ValidFrom\" : \"2024-05-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1002\",\n \"U_ClienNom\" : \"WHITE -\u0026 CASE MEXICO\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Mercantil-Banca\u0026Finanzas\",\n \"U_AbogadoEncargado\" : \"Andrés Moreno\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"2996\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andrés Moreno\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001003-SR-001343\",\n \"Name\" : \"Arbitraje CCI - Zurich\",\n \"ValidFrom\" : \"2024-07-08T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1003\",\n \"U_ClienNom\" : \"PAUL HASTINGS\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Arbitraje\",\n \"U_AbogadoEncargado\" : \"Andrés Moreno\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3121\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andrés Moreno\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001004-SR-001257\",\n \"Name\" : \"Informe BELFAST\",\n \"ValidFrom\" : \"2024-06-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Tarifas por categoria Socio USD 180 Director USD 160 Asociado Senior USD 140 Asociado USD 120\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1004\",\n \"U_ClienNom\" : \"CONFIE Latinoamérica S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Luis Valda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3003\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Valda\",\n \"U_Tipo_Honorario\" : \"Por Horas Con CAP\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001010-SR-001273\",\n \"Name\" : \"Asesoramiento Tributario y Legal\",\n \"ValidFrom\" : \"2024-06-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Tarifa por Categoría: TC03\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1010\",\n \"U_ClienNom\" : \"ONG FIE\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Luis Valda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3043\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Valda\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001010-SR-002125\",\n \"Name\" : \"INFORME LEGAL LABORAL - MODALIDADES CONTRACTUALES\",\n \"ValidFrom\" : \"2025-07-17T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Por favor facturar el 50% de inmediato\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1010\",\n \"U_ClienNom\" : \"ONG FIE\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Paul Aramayo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4535\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Paul Aramayo\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001011-SR-001293\",\n \"Name\" : \"Servicios Legales integrales PRO BONO\",\n \"ValidFrom\" : \"2024-06-19T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Este asunto no se factura_pero se tienen gastos reembolsables y horas.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1011\",\n \"U_ClienNom\" : \"CONSULTORA LEGAL MENTE S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3063\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001012-SR-001295\",\n \"Name\" : \"Servicio Legal Mensual Sociedad Accidental (FM)\",\n \"ValidFrom\" : \"2024-06-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"UN MISMO SERVICIO SE TUVO QUE DIVIDIR EN 3 ASUNTOS, YA QUE EL CLIENTE HA SOLICITADO QUE LA FACTURA S\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1012\",\n \"U_ClienNom\" : \"THYSSENKRUPP POLYSIUS IBÉRICA S.A. SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Contratación Pública\",\n \"U_AbogadoEncargado\" : \"Fernando Landa\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3065\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Landa\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001012-SR-001303\",\n \"Name\" : \"Servicio de Representación Legal Mensual\",\n \"ValidFrom\" : \"2024-06-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1012\",\n \"U_ClienNom\" : \"THYSSENKRUPP POLYSIUS IBÉRICA S.A. SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"Fernando Landa\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3073\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Landa\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001012-SR-001422\",\n \"Name\" : \"Opinion Legal\",\n \"ValidFrom\" : \"2024-08-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1012\",\n \"U_ClienNom\" : \"THYSSENKRUPP POLYSIUS IBÉRICA S.A. SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Contratación Pública\",\n \"U_AbogadoEncargado\" : \"Fernando Landa\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3248\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Landa\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001014-SR-001020\",\n \"Name\" : \"residencia Mercosur por dos años y cedula de extranjero - RANDY ENMANUEL AVALOS CASTILLO\",\n \"ValidFrom\" : \"2025-07-27T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1014\",\n \"U_ClienNom\" : \"Magraing Bolivia S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : null,\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4564\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001014-SR-001307\",\n \"Name\" : \"OUTSOURCING CONTABLE Y TRIBUTARIO\",\n \"ValidFrom\" : \"2024-06-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Servicios de outsourcing en contabilidad, impuestos y planillas. El personal ingresará en la planil\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1014\",\n \"U_ClienNom\" : \"Magraing Bolivia S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3078\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:18-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:18-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=1960\u0026%24top=20 | Status: 200 | Duration: 96.1374ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:18 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"001014-SR-001331\",\n \"Name\" : \"Representacion Legal (FM)\",\n \"ValidFrom\" : \"2024-07-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1014\",\n \"U_ClienNom\" : \"Magraing Bolivia S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3106\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001014-SR-001681\",\n \"Name\" : \"Servicios Legales Mensuales\",\n \"ValidFrom\" : \"2024-10-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"El honorario acordado es de USD. 500.- más impuestos por 5 horas al mes (no acumulables) y USD. 100\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1014\",\n \"U_ClienNom\" : \"Magraing Bolivia S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3588\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001014-SR-001892\",\n \"Name\" : \"PERMANENCIA MERCOSUR Y CARNET EXTRANJERO - JAIRO PACHON PAEZ\",\n \"ValidFrom\" : \"2025-02-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"LOS GASTOS DE HONORARIOS USD. 1100.00, INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1014\",\n \"U_ClienNom\" : \"Magraing Bolivia S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3918\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001014-SR-001893\",\n \"Name\" : \"PERMANENCIA MERCOSUR Y CARNET EXTRANJERO - JAVIER ORLANDO ACEVEDO ALFONSO\",\n \"ValidFrom\" : \"2025-02-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorarios de USD. 1100.00, incluyen gastos e impuestos de ley.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1014\",\n \"U_ClienNom\" : \"Magraing Bolivia S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3919\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001014-SR-001894\",\n \"Name\" : \"PERMANENCIA MERCOSUR Y CARNET EXTRANJERO - JORGE LEONARDO FRANCO LOPEZ\",\n \"ValidFrom\" : \"2025-02-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorarios de USD. 1100.00 incluyen gastos e impuestos de ley.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1014\",\n \"U_ClienNom\" : \"Magraing Bolivia S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3920\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001014-SR-001895\",\n \"Name\" : \"PERMANENCIA MERCOSUR Y CARNET EXTRANJERO - MIGUEL ORLANDO GIL HERRERA\",\n \"ValidFrom\" : \"2025-02-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorarios de USD. 1100.00, incluyen gastos e impuestos de ley.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1014\",\n \"U_ClienNom\" : \"Magraing Bolivia S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3921\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001014-SR-001896\",\n \"Name\" : \"PERMANENCIA MERCOSUR Y CARNET EXTRANJERO - WILLIAM GUILLERMO NUMA VIDAL\",\n \"ValidFrom\" : \"2025-02-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorarios de USD. 1100.00 incluyen gastos e impuestos de ley.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1014\",\n \"U_ClienNom\" : \"Magraing Bolivia S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3922\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001014-SR-001912\",\n \"Name\" : \"Asesoría laboral\",\n \"ValidFrom\" : \"2025-03-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"El honorario acordado se deberá cobrar en dos cuotas mensuales de USD 2.600 cada uno. A partir del\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1014\",\n \"U_ClienNom\" : \"Magraing Bolivia S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Paul Aramayo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3947\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Paul Aramayo\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001014-SR-001915\",\n \"Name\" : \"Permanencia MERCOSUR de 2 años - MIGUEL ORLANDO GIL HERRERA\",\n \"ValidFrom\" : \"2025-03-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorarios de USD. 1100, incluyen gastos e impuestos de ley.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1014\",\n \"U_ClienNom\" : \"Magraing Bolivia S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3950\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001014-SR-001948\",\n \"Name\" : \"rESIDENCIA MERCOSUR DE DOS AÑOS Y cedula de extranjero - VICTOR ALFONSO ORTIZ CATILLO\",\n \"ValidFrom\" : \"2025-03-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1014\",\n \"U_ClienNom\" : \"Magraing Bolivia S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4117\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001014-SR-001949\",\n \"Name\" : \"Residencia Mercosur de dos años y cedula de extranjero - FABIAN HERNAN PEREZ PEREZ\",\n \"ValidFrom\" : \"2025-03-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1014\",\n \"U_ClienNom\" : \"Magraing Bolivia S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4118\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001014-SR-001950\",\n \"Name\" : \"Residencia Mercosur por dos años y cedula de extranjero - WILBER PAULINO CASTILLO PALACIOS\",\n \"ValidFrom\" : \"2025-03-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1014\",\n \"U_ClienNom\" : \"Magraing Bolivia S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4119\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001014-SR-001953\",\n \"Name\" : \"Residencia Mercosur por 2 años y Cedula de extranjero - JESUS HERNANDO ANZOLA ORTIZ\",\n \"ValidFrom\" : \"2025-04-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1014\",\n \"U_ClienNom\" : \"Magraing Bolivia S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4156\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001014-SR-001954\",\n \"Name\" : \"Residencia Mercosur de 2 años y Cedula de extranjero - DAVID SANTAMARIA CANGREJO\",\n \"ValidFrom\" : \"2025-04-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1014\",\n \"U_ClienNom\" : \"Magraing Bolivia S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4157\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001014-SR-001955\",\n \"Name\" : \"Residencia Mercosur por 2 años y Cedula de extranjero - YENI CONSTANZA GUERRERO MORENO\",\n \"ValidFrom\" : \"2025-04-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1014\",\n \"U_ClienNom\" : \"Magraing Bolivia S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4158\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001014-SR-001961\",\n \"Name\" : \"Licencia de conducir categoria P - Miguel Orlando Gil Herrera\",\n \"ValidFrom\" : \"2025-04-06T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1014\",\n \"U_ClienNom\" : \"Magraing Bolivia S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4182\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001014-SR-001963\",\n \"Name\" : \"Residencia Mercosur de dos años y cedula de extranjero - EDGARDO ARANA FLORES -\",\n \"ValidFrom\" : \"2025-04-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1014\",\n \"U_ClienNom\" : \"Magraing Bolivia S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4184\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001014-SR-001964\",\n \"Name\" : \"Residencia Mercosur de dos años - JUAN CARLOS ARCE HERNANDEZ\",\n \"ValidFrom\" : \"2025-04-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1014\",\n \"U_ClienNom\" : \"Magraing Bolivia S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4185\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001014-SR-001977\",\n \"Name\" : \"RESIDENCIA MERCOSUR Y CEDULA DE EXTRANJERO - JUAN CARLOS ARCE HERNANDEZ\",\n \"ValidFrom\" : \"2025-04-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"LOS HONORARIOS DE USD. 1100, INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1014\",\n \"U_ClienNom\" : \"Magraing Bolivia S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4204\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001014-SR-002001\",\n \"Name\" : \"Residencia Mercosur y Cedula de extranjero - DARWIN LEONEL PEÑA SANCHEZ\",\n \"ValidFrom\" : \"2025-05-04T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1014\",\n \"U_ClienNom\" : \"Magraing Bolivia S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4273\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:18-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:18-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=1980\u0026%24top=20 | Status: 200 | Duration: 87.7878ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:18 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"001014-SR-002002\",\n \"Name\" : \"Residencia Mercosur por dos años y cedula de extranjero - DEIBI MONTENEGRO GUTIERREZ\",\n \"ValidFrom\" : \"2025-05-04T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1014\",\n \"U_ClienNom\" : \"Magraing Bolivia S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : \"Ariel Triveño\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4274\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001014-SR-002076\",\n \"Name\" : \"Residencia Mercosur por dos años y cedula de extranjero - JEFFER JEEN AVALOS CASTILLO\",\n \"ValidFrom\" : \"2025-06-23T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1014\",\n \"U_ClienNom\" : \"Magraing Bolivia S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : null,\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4468\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001014-SR-002079\",\n \"Name\" : \"Residencia Mercosur de dos años y cedula de identidad de extranjeros - FRANCISCO BOYACA GUERRERO\",\n \"ValidFrom\" : \"2025-06-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1014\",\n \"U_ClienNom\" : \"Magraing Bolivia S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : null,\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4477\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001014-SR-002105\",\n \"Name\" : \"Residencia Mercosur de 2 años mas cedula de identidad de extranjero - ALAIN ROBERTO ECHENIQUE ACEV\",\n \"ValidFrom\" : \"2025-07-04T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1014\",\n \"U_ClienNom\" : \"Magraing Bolivia S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : null,\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4511\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001014-SR-002115\",\n \"Name\" : \"Residencia Mercosur por dos años y cedula de extranjeros - ADOLFO CRUZ VALDES\",\n \"ValidFrom\" : \"2025-07-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1014\",\n \"U_ClienNom\" : \"Magraing Bolivia S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : null,\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4525\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001014-SR-002116\",\n \"Name\" : \"Residencia Mercosur por dos años y cedula de extranjero - ANDERSON ENRIQUE CULMA ALONSO\",\n \"ValidFrom\" : \"2025-07-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1014\",\n \"U_ClienNom\" : \"Magraing Bolivia S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : null,\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4526\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001014-SR-002122\",\n \"Name\" : \"Residencia Mercosur por dos años y cedula de extranjero - ISMAEL ENRIQUE MACHACON GELIS\",\n \"ValidFrom\" : \"2025-07-16T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1014\",\n \"U_ClienNom\" : \"Magraing Bolivia S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : null,\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4532\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001014-SR-002123\",\n \"Name\" : \"Residencia Mercosur por dos años y cedula de extranjero - YORDIN LIBARDO PEÑA SANCHEZ\",\n \"ValidFrom\" : \"2025-07-16T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1014\",\n \"U_ClienNom\" : \"Magraing Bolivia S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Migratorio\",\n \"U_AbogadoEncargado\" : null,\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4533\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Triveño\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001018-SR-001332\",\n \"Name\" : \"Contratos Comerciales\",\n \"ValidFrom\" : \"2024-07-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Facturar al Nit:\\r\\rMERCADO - 3025484017\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1018\",\n \"U_ClienNom\" : \"Gustavo Aramayo\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Alvaro Araoz Ardaya\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"3107\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Alvaro Araoz Ardaya\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001020-SR-001342\",\n \"Name\" : \"Revisión de Estatuto Social y Reglamento Interno\",\n \"ValidFrom\" : \"2024-07-08T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Facturar y cobrar en bolivianos a tipo de cambio 6.96Bs. según acuerdo entre las partes. Autorizado\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1020\",\n \"U_ClienNom\" : \"Industria de productos lácteos La Purita S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Ines Ayala\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3120\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ines Ayala\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001021-SR-001345\",\n \"Name\" : \"Evaluación Corporativa Preliminar\",\n \"ValidFrom\" : \"2024-07-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Se cobra 50% al inicio y 50% al terminar. \\r1ra parte se dará el servicio de OUTSOURCING, luego el s\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1021\",\n \"U_ClienNom\" : \"Nacional Adita Cash\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"3123\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001021-SR-001368\",\n \"Name\" : \"Evaluación financiera, tributaria y de procesos\",\n \"ValidFrom\" : \"2024-07-18T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Preevaluación del estado de la empresa unipersonal (riesgos, procesos, controles, estructura, etc.)\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1021\",\n \"U_ClienNom\" : \"Nacional Adita Cash\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3147\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001021-SR-001542\",\n \"Name\" : \"Constitución Sociedad de responsabilidad Ltda\",\n \"ValidFrom\" : \"2024-09-04T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"50% al inicio y 50% al final.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1021\",\n \"U_ClienNom\" : \"Nacional Adita Cash\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"3390\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001021-SR-001732\",\n \"Name\" : \"Contrato de Alquiler Comercial\",\n \"ValidFrom\" : \"2024-11-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1021\",\n \"U_ClienNom\" : \"Nacional Adita Cash\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"3696\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001021-SR-001936\",\n \"Name\" : \"Elaboración Contratos Comerciales\",\n \"ValidFrom\" : \"2025-03-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1021\",\n \"U_ClienNom\" : \"Nacional Adita Cash\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"3973\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001021-SR-002077\",\n \"Name\" : \"INFORME DIVISAS COMO GARANTÍA\",\n \"ValidFrom\" : \"2025-06-23T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1021\",\n \"U_ClienNom\" : \"Nacional Adita Cash\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"4474\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001022-SR-001349\",\n \"Name\" : \"Elaboración de Carta de Cobro y Revisión de Proceso e Informe\",\n \"ValidFrom\" : \"2024-07-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1022\",\n \"U_ClienNom\" : \"Jaime Mercado\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Teddy Mercado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3127\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Teddy Mercado\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001022-SR-001744\",\n \"Name\" : \"Conciliación con Horacio Toro\",\n \"ValidFrom\" : \"2024-11-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1022\",\n \"U_ClienNom\" : \"Jaime Mercado\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Zeballos\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3711\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Zeballos\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001022-SR-001905\",\n \"Name\" : \"gestiones judiciales por levantamiento de gravamen\",\n \"ValidFrom\" : \"2025-03-06T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Pago por adelantado de 3000 USD al tipo de cambio de Bs.8.50, por lo que se deberá facturar por Bs\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1022\",\n \"U_ClienNom\" : \"Jaime Mercado\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Penal\",\n \"U_AbogadoEncargado\" : \"Ariel Zeballos\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3938\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Zeballos\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001022-SR-002058\",\n \"Name\" : \"Envio de carta a inquilina Irpavi\",\n \"ValidFrom\" : \"2025-06-06T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1022\",\n \"U_ClienNom\" : \"Jaime Mercado\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Zeballos\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"4376\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Zeballos\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:18-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:18-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=2000\u0026%24top=20 | Status: 200 | Duration: 102.5352ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:19 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"001023-SR-001350\",\n \"Name\" : \"Planificación Tributaria\",\n \"ValidFrom\" : \"2024-07-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Pago único\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1023\",\n \"U_ClienNom\" : \"Empresa Constructora Yolita S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Rodrigo Burgos\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3128\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Rodrigo Burgos\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001024-SR-001351\",\n \"Name\" : \"Levantamiento de marcas de control\",\n \"ValidFrom\" : \"2024-07-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Se ajusto de 1200 a 306.67 por solicitud del lider Luis Valda, se tiene correo de respaldo\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1024\",\n \"U_ClienNom\" : \"Distribuidora Internacional Medwell S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Luis Valda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3129\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Valda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001024-SR-001787\",\n \"Name\" : \"Desvinculación trabajadores\",\n \"ValidFrom\" : \"2024-12-19T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Tarifa TC03\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1024\",\n \"U_ClienNom\" : \"Distribuidora Internacional Medwell S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Luis Valda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3776\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Valda\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001030-SR-001382\",\n \"Name\" : \"Cambio de representante legal\",\n \"ValidFrom\" : \"2024-07-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1030\",\n \"U_ClienNom\" : \"BEONTAG\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3168\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001032-SR-001391\",\n \"Name\" : \"Asesoría Tributaria, proceso GAMEL\",\n \"ValidFrom\" : \"2024-07-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Honorario definido en Bs. 31.500\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1032\",\n \"U_ClienNom\" : \"IBNORCA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Luis Valda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3182\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Valda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001033-SR-001392\",\n \"Name\" : \"Informe servicios con no-residentes\",\n \"ValidFrom\" : \"2024-07-26T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1033\",\n \"U_ClienNom\" : \"CONSER\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : null,\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3183\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Valda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001033-SR-001394\",\n \"Name\" : \"Servicios Legales Tributarios y Regulatorios\",\n \"ValidFrom\" : \"2024-07-17T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1033\",\n \"U_ClienNom\" : \"CONSER\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Luis Valda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3145\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Valda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001033-SR-001729\",\n \"Name\" : \"Actualizacion de escritura\",\n \"ValidFrom\" : \"2024-11-14T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1033\",\n \"U_ClienNom\" : \"CONSER\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Fernando Landa\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3693\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Landa\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001034-SR-001396\",\n \"Name\" : \"Informe Tributario y Laboral\",\n \"ValidFrom\" : \"2024-07-26T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1034\",\n \"U_ClienNom\" : \"CRSM San Juan de Dios\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Luis Valda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3188\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Valda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001034-SR-001611\",\n \"Name\" : \"Rectificación del IVA de las gestiones 2021 a 2023\",\n \"ValidFrom\" : \"2024-10-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"El alcance del servicio es la rectificación de los formularios de IVA declarados en las gestiones 2\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1034\",\n \"U_ClienNom\" : \"CRSM San Juan de Dios\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3464\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001035-SR-001397\",\n \"Name\" : \"Informe Fiscal\",\n \"ValidFrom\" : \"2024-07-27T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1035\",\n \"U_ClienNom\" : \"APDOKA BOLIVIA S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Luis Valda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3189\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Valda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001035-SR-002057\",\n \"Name\" : \"Pago a dependientes en cuentas extranjeras\",\n \"ValidFrom\" : \"2025-06-05T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1035\",\n \"U_ClienNom\" : \"APDOKA BOLIVIA S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Luis Valda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4370\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Valda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001036-SR-001399\",\n \"Name\" : \"Due Diligence Societario\",\n \"ValidFrom\" : \"2024-07-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1036\",\n \"U_ClienNom\" : \"CENTRO DE CAPACITACIÓN TÉCNICA C.E.C. S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3204\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001039-SR-001407\",\n \"Name\" : \"Informe Legal sobre reestructuración empresarial/patrimonial familiar\",\n \"ValidFrom\" : \"2024-08-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1039\",\n \"U_ClienNom\" : \"BATEBOL S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3229\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001041-SR-001428\",\n \"Name\" : \"Servicios de Outsourcing contable y tributario\",\n \"ValidFrom\" : \"2024-08-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Servicios de outsourcing contable y tributario a ser ajustado una vez inicien las operaciones comerc\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1041\",\n \"U_ClienNom\" : \"TOTALBIO BOLIVIA S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3261\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001041-SR-001768\",\n \"Name\" : \"Aumento de Capital\",\n \"ValidFrom\" : \"2024-12-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1041\",\n \"U_ClienNom\" : \"TOTALBIO BOLIVIA S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3745\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001044-SR-001451\",\n \"Name\" : \"Servicios Legales Mensuales\",\n \"ValidFrom\" : \"2024-08-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1044\",\n \"U_ClienNom\" : \"ANDY'S TIENDAS INTELIGENTES S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"Teddy Mercado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3286\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Teddy Mercado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001046-SR-001438\",\n \"Name\" : \"Due Diligence Corporativo\",\n \"ValidFrom\" : \"2024-08-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1046\",\n \"U_ClienNom\" : \"INVERSIONES CELER (Grupo Venado)\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3272\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001047-SR-001439\",\n \"Name\" : \"Impugnación IPBI\",\n \"ValidFrom\" : \"2024-08-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1047\",\n \"U_ClienNom\" : \"FUNDACIÓN INFOCAL LA PAZ\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Luis Valda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3273\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Valda\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001047-SR-001821\",\n \"Name\" : \"Defensa Recurso Jerárquico\",\n \"ValidFrom\" : \"2025-01-08T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Facturación 50%\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1047\",\n \"U_ClienNom\" : \"FUNDACIÓN INFOCAL LA PAZ\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Luis Valda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3822\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Valda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:19-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:19-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=2020\u0026%24top=20 | Status: 200 | Duration: 202.1565ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:19 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"001047-SR-001941\",\n \"Name\" : \"Acompañamiento durante la fiscalización efectuada por la Caja Petrolera de Salud\",\n \"ValidFrom\" : \"2025-03-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1047\",\n \"U_ClienNom\" : \"FUNDACIÓN INFOCAL LA PAZ\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3978\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001049-SR-001442\",\n \"Name\" : \"Representacion legal\",\n \"ValidFrom\" : \"2024-08-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1049\",\n \"U_ClienNom\" : \"MARKETING PROMOCIONAL S.R.L. (GRUPO LUCKY)\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Ines Ayala\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3277\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ines Ayala\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001051-SR-001469\",\n \"Name\" : \"Legal Report regarding the feasibility of compensating seniority bonuses with category bonuses\",\n \"ValidFrom\" : \"2024-08-28T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1051\",\n \"U_ClienNom\" : \"KOICA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3315\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001051-SR-001592\",\n \"Name\" : \"Servicio de asesoramiento jurídico - Caso Proyecto Riego Pampas de Padilla - Chuquisaca\",\n \"ValidFrom\" : \"2024-09-23T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1051\",\n \"U_ClienNom\" : \"KOICA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Penal\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3444\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001051-SR-001801\",\n \"Name\" : \"ELABORACION DE CALCULOS DEL BONO DE ANTIGÜEDAD\",\n \"ValidFrom\" : \"2024-12-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Cobrar previa coordinación con cliente. Se ha establecido un honorario de $us. 170 por cada cada ca\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1051\",\n \"U_ClienNom\" : \"KOICA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Natalio Zegarra\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3789\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Natalio Zegarra\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001053-SR-001559\",\n \"Name\" : \"Outsourcing contable, tributario, laboral y tesoreria.\",\n \"ValidFrom\" : \"2024-09-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Servicio de outsourcing contable, tributario, laboral y de tesorería con fee variable y takeover\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1053\",\n \"U_ClienNom\" : \"CERTIFICADORA DIGITAL CERTIFIRMA S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3411\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001053-SR-001608\",\n \"Name\" : \"Representación Legal - Síndico - Domicilio Legal\",\n \"ValidFrom\" : \"2024-09-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"El servicio empieza el 01 de octubre 2024. Facturar desde este mes.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1053\",\n \"U_ClienNom\" : \"CERTIFICADORA DIGITAL CERTIFIRMA S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3461\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001053-SR-001979\",\n \"Name\" : \"Actas Anuales 2025\",\n \"ValidFrom\" : \"2025-04-14T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1053\",\n \"U_ClienNom\" : \"CERTIFICADORA DIGITAL CERTIFIRMA S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4207\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001055-SR-001569\",\n \"Name\" : \"Consulta a SIN - Exportación de Servicios\",\n \"ValidFrom\" : \"2024-09-18T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1055\",\n \"U_ClienNom\" : \"EVOLVESOFT INNOVATIONS SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"André Tejerina\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3419\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"André Tejerina\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001055-SR-001746\",\n \"Name\" : \"Informe tributario: exp. serv. y potenciales contigencias\",\n \"ValidFrom\" : \"2024-11-27T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Favor facturar pago parcial del 60% al NIT EVOLVESOFT INNOVATIONS S.R.L. NIT 551063023\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1055\",\n \"U_ClienNom\" : \"EVOLVESOFT INNOVATIONS SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Luis Valda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3713\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Valda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001055-SR-001779\",\n \"Name\" : \"Apertura de Sucursales en LP y SCZ\",\n \"ValidFrom\" : \"2024-12-16T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1055\",\n \"U_ClienNom\" : \"EVOLVESOFT INNOVATIONS SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"André Tejerina\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3764\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"André Tejerina\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001056-SR-001576\",\n \"Name\" : \"SERVICIO PRO BONO\",\n \"ValidFrom\" : \"2024-09-18T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1056\",\n \"U_ClienNom\" : \"Julio Gardeazabal\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3426\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001057-SR-001580\",\n \"Name\" : \"Servicios extrajudiciales de cobranza\",\n \"ValidFrom\" : \"2024-09-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1057\",\n \"U_ClienNom\" : \"ASISCO SRL (GRUPO BPO)\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3430\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001057-SR-001626\",\n \"Name\" : \"Honorario de éxito por recuperación de deuda Bolinter\",\n \"ValidFrom\" : \"2024-10-08T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1057\",\n \"U_ClienNom\" : \"ASISCO SRL (GRUPO BPO)\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3479\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001057-SR-002141\",\n \"Name\" : \"Servicios profesionales MBN\",\n \"ValidFrom\" : \"2025-07-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Servicios administrativos en manejo de payroll\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1057\",\n \"U_ClienNom\" : \"ASISCO SRL (GRUPO BPO)\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4551\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001058-SR-001581\",\n \"Name\" : \"Servicios extrajudiciales de cobranza\",\n \"ValidFrom\" : \"2024-09-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1058\",\n \"U_ClienNom\" : \"HOLA SRL (GRUPO BPO)\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3431\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001058-SR-001627\",\n \"Name\" : \"Honorario de éxito por recuperación de deuda de Bolinter\",\n \"ValidFrom\" : \"2024-10-08T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1058\",\n \"U_ClienNom\" : \"HOLA SRL (GRUPO BPO)\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3480\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001059-SR-001582\",\n \"Name\" : \"Servicios extrajudiciales de cobranza\",\n \"ValidFrom\" : \"2024-09-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1059\",\n \"U_ClienNom\" : \"POTENZA SRL (GRUPO BPO)\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3432\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001060-SR-001583\",\n \"Name\" : \"Servicios extrajudiciales de cobranza\",\n \"ValidFrom\" : \"2024-09-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : null,\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1060\",\n \"U_ClienNom\" : \"T-PROMOCIONA BOLIVIA S.R.L. (GRUPO BPO)\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3433\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001062-SR-001610\",\n \"Name\" : \"Tratamiento tributario transferencia acciones\",\n \"ValidFrom\" : \"2024-10-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Bs. 3,340.00\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1062\",\n \"U_ClienNom\" : \"BANCO PYME ECOFUTURO\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Luis Valda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3463\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Valda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:19-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:19-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=2040\u0026%24top=20 | Status: 200 | Duration: 98.6972ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:19 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"001063-SR-001624\",\n \"Name\" : \"Elaboración Informe Legal para cobro de deuda\",\n \"ValidFrom\" : \"2024-10-04T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1063\",\n \"U_ClienNom\" : \"EMPRESA FORESTAL YVYRAGUAZU S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Ambiental\",\n \"U_AbogadoEncargado\" : \"André Tejerina\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3477\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"André Tejerina\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001064-SR-001636\",\n \"Name\" : \"Notificación Contrato de Arrendamiento\",\n \"ValidFrom\" : \"2024-10-10T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : \"N\",\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Bs. 1.500\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1064\",\n \"U_ClienNom\" : \"Delegación de la Unión Europea en Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Civil\",\n \"U_AbogadoEncargado\" : \"Daniel Arredondo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3489\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Daniel Arredondo\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001064-SR-001833\",\n \"Name\" : \"Informe sobre pago de salarios en Dólares Americanos\",\n \"ValidFrom\" : \"2025-01-17T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1064\",\n \"U_ClienNom\" : \"Delegación de la Unión Europea en Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Noelia Sanjinés\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3844\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Noelia Sanjinés\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001064-SR-001840\",\n \"Name\" : \"Informe legal horas extras conductores\",\n \"ValidFrom\" : \"2025-01-23T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1064\",\n \"U_ClienNom\" : \"Delegación de la Unión Europea en Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3851\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001064-SR-001928\",\n \"Name\" : \"Información Relativa al Tratamiento de Contratos a Plazo Fijo en Bolivia\",\n \"ValidFrom\" : \"2025-03-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1064\",\n \"U_ClienNom\" : \"Delegación de la Unión Europea en Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Noelia Sanjinés\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3965\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Noelia Sanjinés\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001067-RE-000863\",\n \"Name\" : \"Preparación, elaboración actas asamblea extraordinaria revocatoria poderes nuevo representante leg\",\n \"ValidFrom\" : \"2024-10-23T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Según correo de Dr. Carlos Merino de fecha 03-12-24\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1067\",\n \"U_ClienNom\" : \"RADIO FIDES SERVICIOS S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Carlos Merino\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3591\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Carlos Merino\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001068-SR-001684\",\n \"Name\" : \"Preparación, elaboración actas asamblea extraordinaria revocatoria poderes nuevo representante leg\",\n \"ValidFrom\" : \"2024-10-23T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Según correo de Dr. Carlos Merino de fecha 03-12-24\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1068\",\n \"U_ClienNom\" : \"RADIO FIDES COCHABAMBA S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Carlos Merino\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3592\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Carlos Merino\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001069-SR-001685\",\n \"Name\" : \"Preparación, elaboración actas asamblea extraordinaria revocatoria poderes nuevo representante leg\",\n \"ValidFrom\" : \"2024-10-23T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Según correo de Dr. Carlos Merino de fecha 03-12-24\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1069\",\n \"U_ClienNom\" : \"RADIO FIDES POTOSI S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Carlos Merino\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3593\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Carlos Merino\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001070-SR-001686\",\n \"Name\" : \"Preparación, elaboración actas asamblea extraordinaria revocatoria poderes nuevo representante leg\",\n \"ValidFrom\" : \"2024-10-23T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Según correo de Dr. Carlos Merino de fecha 03-12-24\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1070\",\n \"U_ClienNom\" : \"RADIO LOYOLA S.R.L\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Carlos Merino\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3594\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Carlos Merino\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001071-SR-001687\",\n \"Name\" : \"Preparación, elaboración actas asamblea extraordinaria revocatoria poderes nuevo representante leg\",\n \"ValidFrom\" : \"2024-10-23T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Según correo de Dr. Carlos Merino de fecha 03-12-24\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1071\",\n \"U_ClienNom\" : \"RADIO FIDES ORURO S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Carlos Merino\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3595\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Carlos Merino\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001074-SR-001693\",\n \"Name\" : \"Proceso Civil contra Milton Parra\",\n \"ValidFrom\" : \"2024-10-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1074\",\n \"U_ClienNom\" : \"José Luis Garcés Paz\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3603\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001074-SR-001748\",\n \"Name\" : \"Elaboración de Poder para administración y disposición de bienes inmuebles\",\n \"ValidFrom\" : \"2024-11-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1074\",\n \"U_ClienNom\" : \"José Luis Garcés Paz\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3716\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001075-SR-001698\",\n \"Name\" : \"Proyecto XX\",\n \"ValidFrom\" : \"2024-10-27T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1075\",\n \"U_ClienNom\" : \"Towerbank International, Inc.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Mercantil-Banca\u0026Finanzas\",\n \"U_AbogadoEncargado\" : \"Fernando Landa\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3608\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Landa\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001075-SR-001733\",\n \"Name\" : \"Informe de actividad notarial\",\n \"ValidFrom\" : \"2024-11-18T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1075\",\n \"U_ClienNom\" : \"Towerbank International, Inc.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Mercantil-Banca\u0026Finanzas\",\n \"U_AbogadoEncargado\" : \"Fernando Landa\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3698\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Landa\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001075-SR-001839\",\n \"Name\" : \"FX contract\",\n \"ValidFrom\" : \"2025-01-23T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1075\",\n \"U_ClienNom\" : \"Towerbank International, Inc.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Mercantil-Banca\u0026Finanzas\",\n \"U_AbogadoEncargado\" : \"Fernando Landa\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3850\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Landa\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001075-SR-001933\",\n \"Name\" : \"Appstore Legal Opinion\",\n \"ValidFrom\" : \"2025-03-23T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1075\",\n \"U_ClienNom\" : \"Towerbank International, Inc.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Mercantil-Banca\u0026Finanzas\",\n \"U_AbogadoEncargado\" : \"Fernando Landa\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3970\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Landa\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001075-SR-001934\",\n \"Name\" : \"Verificación de facultades\",\n \"ValidFrom\" : \"2025-03-23T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1075\",\n \"U_ClienNom\" : \"Towerbank International, Inc.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Fernando Landa\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3971\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Landa\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001075-SR-002048\",\n \"Name\" : \"Homologación de requisitos\",\n \"ValidFrom\" : \"2025-05-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1075\",\n \"U_ClienNom\" : \"Towerbank International, Inc.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Mercantil-Banca\u0026Finanzas\",\n \"U_AbogadoEncargado\" : \"Fernando Landa\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4359\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Landa\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001075-SR-002071\",\n \"Name\" : \"Campaña PR Ikigii\",\n \"ValidFrom\" : \"2025-06-17T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1075\",\n \"U_ClienNom\" : \"Towerbank International, Inc.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Mercantil-Banca\u0026Finanzas\",\n \"U_AbogadoEncargado\" : null,\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4463\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Landa\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001075-SR-002100\",\n \"Name\" : \"Informe Finray\",\n \"ValidFrom\" : \"2025-07-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1075\",\n \"U_ClienNom\" : \"Towerbank International, Inc.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Mercantil-Banca\u0026Finanzas\",\n \"U_AbogadoEncargado\" : null,\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4502\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Landa\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:19-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:19-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=2060\u0026%24top=20 | Status: 200 | Duration: 96.5623ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:19 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"001075-SR-002101\",\n \"Name\" : \"Informe Finray\",\n \"ValidFrom\" : \"2025-07-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1075\",\n \"U_ClienNom\" : \"Towerbank International, Inc.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Mercantil-Banca\u0026Finanzas\",\n \"U_AbogadoEncargado\" : null,\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4503\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Landa\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001076-SR-001699\",\n \"Name\" : \"Contratacion influencers\",\n \"ValidFrom\" : \"2024-10-27T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1076\",\n \"U_ClienNom\" : \"XX CORP SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Fernando Landa\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3609\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Landa\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001076-SR-002072\",\n \"Name\" : \"Contrataciones PR Ikigii\",\n \"ValidFrom\" : \"2025-06-17T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1076\",\n \"U_ClienNom\" : \"XX CORP SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : null,\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4464\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Landa\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001077-SR-001764\",\n \"Name\" : \"PRO BONO- Personería Jurídica - La Paz\",\n \"ValidFrom\" : \"2024-12-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"ESTE CLIENTE ES PRO BONO\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1077\",\n \"U_ClienNom\" : \"ASOBOGH BOLIVIA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Civil\",\n \"U_AbogadoEncargado\" : \"Noelia Sanjinés\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3739\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Noelia Sanjinés\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001078-SR-001704\",\n \"Name\" : \"Adquisición Fintech\",\n \"ValidFrom\" : \"2024-10-29T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1078\",\n \"U_ClienNom\" : \"Ria Ventures\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Fintech \u0026 Nuevas Tecnologías\",\n \"U_AbogadoEncargado\" : \"Fernando Landa\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3619\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Landa\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001078-SR-001987\",\n \"Name\" : \"Defensa penal - Ricorp\",\n \"ValidFrom\" : \"2025-04-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1078\",\n \"U_ClienNom\" : \"Ria Ventures\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Penal \u0026 Económico\",\n \"U_AbogadoEncargado\" : \"Mauricio Aguirre\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4215\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Mauricio Aguirre\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001078-SR-002065\",\n \"Name\" : \"Liquidacion RICORP\",\n \"ValidFrom\" : \"2025-06-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1078\",\n \"U_ClienNom\" : \"Ria Ventures\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Fernando Landa\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4453\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Landa\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001080-SR-001706\",\n \"Name\" : \"Servicios por Horas\",\n \"ValidFrom\" : \"2024-11-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Contacto a través de Andean Precious Metals (APM), accionista controlante.\\rTarifas horarias - APM.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1080\",\n \"U_ClienNom\" : \"EMPRESA MINERA MANQUIRI S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Energía y Recursos Naturales\",\n \"U_AbogadoEncargado\" : \"Daniel Arredondo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3636\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Daniel Arredondo\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001080-SR-001763\",\n \"Name\" : \"Asesoría legal por horas\",\n \"ValidFrom\" : \"2024-12-06T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Tarifas aplicables a Andean Precious Metals, accionista de Manquiri.\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1080\",\n \"U_ClienNom\" : \"EMPRESA MINERA MANQUIRI S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Energía y Recursos Naturales\",\n \"U_AbogadoEncargado\" : \"Daniel Arredondo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3740\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Daniel Arredondo\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001083-SR-001708\",\n \"Name\" : \"Elaboración de Informe Legal sobre Acoso Laboral\",\n \"ValidFrom\" : \"2024-11-05T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1083\",\n \"U_ClienNom\" : \"Embajada de Perú en Bolivia\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3642\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001086-SR-001719\",\n \"Name\" : \"Trading Company\",\n \"ValidFrom\" : \"2024-11-08T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Facturar al cliente el 60% como pago inicial\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1086\",\n \"U_ClienNom\" : \"Rafael Paz Aguilera\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Luis Valda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3681\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Valda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001087-SR-001721\",\n \"Name\" : \"Seguimiento Gestoria Sucre\",\n \"ValidFrom\" : \"2024-11-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1087\",\n \"U_ClienNom\" : \"Fundación Agrocapital\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Civil\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"3683\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001088-SR-001724\",\n \"Name\" : \"Regularización Inmueble Calle Ayacucho Nº 284 - Santa Cruz\",\n \"ValidFrom\" : \"2024-11-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1088\",\n \"U_ClienNom\" : \"MANACO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Inmobiliario\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"3687\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001088-SR-001725\",\n \"Name\" : \"Regularización Inmueble Calle Quijarro Nº 455 zona Los Pozos - Santa Cruz,\",\n \"ValidFrom\" : \"2024-11-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1088\",\n \"U_ClienNom\" : \"MANACO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Inmobiliario\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"3688\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001088-SR-001749\",\n \"Name\" : \"Regularización Inmueble TARIJA\",\n \"ValidFrom\" : \"2024-11-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1088\",\n \"U_ClienNom\" : \"MANACO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Inmobiliario\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"3718\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001088-SR-001929\",\n \"Name\" : \"Regularización inmueble ILLAMPU - LP\",\n \"ValidFrom\" : \"2025-03-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"El honorario pactado no incluye IVA\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1088\",\n \"U_ClienNom\" : \"MANACO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Inmobiliario\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"3966\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001088-SR-001930\",\n \"Name\" : \"Regularización inmueble AYACUCHO - LP\",\n \"ValidFrom\" : \"2025-03-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1088\",\n \"U_ClienNom\" : \"MANACO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Inmobiliario\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"3967\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001088-SR-001931\",\n \"Name\" : \"Regularización inmueble COMERCIO- LP\",\n \"ValidFrom\" : \"2025-03-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1088\",\n \"U_ClienNom\" : \"MANACO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Inmobiliario\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"3968\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001089-SR-001726\",\n \"Name\" : \"Informe Legal - Bonos de Carbono y Proyectos Verdes\",\n \"ValidFrom\" : \"2024-11-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1089\",\n \"U_ClienNom\" : \"Roberto Nelkenbaum\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Ambiental\",\n \"U_AbogadoEncargado\" : \"André Tejerina\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3689\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"André Tejerina\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001091-SR-001740\",\n \"Name\" : \"ASESORIA Y PATROCINIO LEGAL SOBRE DENUNCIA DE ACOSO LABORAL\",\n \"ValidFrom\" : \"2024-11-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"En caso de que el asunto concluya con el primer hito, consecuentemente, se debe desactivar el segund\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1091\",\n \"U_ClienNom\" : \"SINOHYDRO CORPORATION LIMITED SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Natalio Zegarra\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3706\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Natalio Zegarra\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:19-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:19-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=2080\u0026%24top=20 | Status: 200 | Duration: 102.7965ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:19 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"001091-SR-002117\",\n \"Name\" : \"Informe Legal - Proyecto de Construcción de Tramo Central Doble Vía \\\"El Sillar\\\"\",\n \"ValidFrom\" : \"2025-07-14T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"La facturación debe ser a a nombre de: Razón Social: Sinohydro Corporation Limited Sucursal Bolivi\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1091\",\n \"U_ClienNom\" : \"SINOHYDRO CORPORATION LIMITED SUCURSAL BOLIVIA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Contratación Pública\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4527\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001092-SR-001745\",\n \"Name\" : \"Informe Legal Contrato Preventa\",\n \"ValidFrom\" : \"2024-11-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1092\",\n \"U_ClienNom\" : \"Julio Guillen\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Inmobiliario\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"3712\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001093-SR-001747\",\n \"Name\" : \"Ampliación de objeto social y otorgamiento de Poder para el exterior\",\n \"ValidFrom\" : \"2024-11-28T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Facturación 50% al inicio y 50% al final\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1093\",\n \"U_ClienNom\" : \"Técnica de Fluidos Bolivia S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3715\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001096-SR-001761\",\n \"Name\" : \"DVPLAY SRL\",\n \"ValidFrom\" : \"2024-12-05T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1096\",\n \"U_ClienNom\" : \"Diego Velasquez\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Luis Valda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3738\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Valda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001100-SR-001775\",\n \"Name\" : \"Seguimiento IGF\",\n \"ValidFrom\" : \"2024-12-11T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1100\",\n \"U_ClienNom\" : \"Familia Paccieri Paz\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Luis Valda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3759\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Valda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001101-SR-001776\",\n \"Name\" : \"Reclamo Aeroagrícolas v. Shell\",\n \"ValidFrom\" : \"2024-12-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"La tarifa por horas es la siguiente: - USD 250 partner./ - USD 200 senior associate./ - USD 180 asso\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1101\",\n \"U_ClienNom\" : \"Baker \u0026 McKenzie LLP\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Civil\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3761\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001102-SR-001783\",\n \"Name\" : \"Asesoramiento extrajudicial\",\n \"ValidFrom\" : \"2024-12-17T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1102\",\n \"U_ClienNom\" : \"Marilizzi Sanchez Suarez\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Civil\",\n \"U_AbogadoEncargado\" : \"Fernando Landa\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3768\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Landa\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001103-SR-001803\",\n \"Name\" : \"Proceso Interno Laboral\",\n \"ValidFrom\" : \"2024-12-23T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1103\",\n \"U_ClienNom\" : \"Mauricio Lopez Zabalaga\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"3791\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001104-SR-001807\",\n \"Name\" : \"Cambio de Domicilio\",\n \"ValidFrom\" : \"2024-12-23T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1104\",\n \"U_ClienNom\" : \"EMPRESA AGRÍCOLA Y GANADERA TACUARÍ S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3795\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001105-SR-001808\",\n \"Name\" : \"Representación Legal/Domicilio\",\n \"ValidFrom\" : \"2024-12-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1105\",\n \"U_ClienNom\" : \"Total Biotecnologia Indústria e Comércio SA emba\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3796\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001109-SR-001828\",\n \"Name\" : \"ARBITRAJE MK4 c/ UNTRES LOPEZ \u0026 ZAMBRANA\",\n \"ValidFrom\" : \"2025-01-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"En caso de presentarse una Demanda Reconvencional la sociedad accidental se compromete a pagar a M\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1109\",\n \"U_ClienNom\" : \"ASOCIACION ACCIDENTAL UNTRES- LOPEZ \u0026 ZAMBRANA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Arbitraje\",\n \"U_AbogadoEncargado\" : \"Andrés Moreno\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3836\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andrés Moreno\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001111-SR-001847\",\n \"Name\" : \"Cumplimiento de Contrato Compraventa\",\n \"ValidFrom\" : \"2025-01-27T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1111\",\n \"U_ClienNom\" : \"Patricia Mendieta\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"3859\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001113-SR-001867\",\n \"Name\" : \"Outsourcing contable, tributario, laboral y tesoreria.\",\n \"ValidFrom\" : \"2025-02-06T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Servicios de outsourcing contable, tributario, laboral y de tesorería. Facturación en base a numer\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1113\",\n \"U_ClienNom\" : \"Thayne Bolivia S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3884\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001113-SR-001958\",\n \"Name\" : \"Outsourcing en Administración de contratos\",\n \"ValidFrom\" : \"2025-04-03T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Servicio de administración de contratos civiles, con cobranza variable por mes en función al núme\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1113\",\n \"U_ClienNom\" : \"Thayne Bolivia S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4162\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001114-SR-001868\",\n \"Name\" : \"Outsourcing contable, tributario, laboral y tesoreria.\",\n \"ValidFrom\" : \"2025-02-06T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"SERVICIOS DE INTERMEDIACION EN LA VENTA DE BIENES Y SERVICIOS A TRAVES DE MEDIOS DIGITALES.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1114\",\n \"U_ClienNom\" : \"ANDECORP S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3885\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001116-SR-001877\",\n \"Name\" : \"Arbitraje ICC contra ABC\",\n \"ValidFrom\" : \"2025-02-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"se pagará por etapas. segun carta de contratación\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1116\",\n \"U_ClienNom\" : \"COCONAL S.A.P.I DE C.V. (SUCURSAL BOLIVIA)\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Arbitraje\",\n \"U_AbogadoEncargado\" : \"Andrés Moreno\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3902\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andrés Moreno\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001117-SR-001878\",\n \"Name\" : \"Estándares Ambientales y Sociales (EAS)\",\n \"ValidFrom\" : \"2025-02-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los hitos y montos son los siguientes:\\rUSD29,600.00 inclusive of all expenses to be\\rpaid as follows:\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1117\",\n \"U_ClienNom\" : \"World Bank Group\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Energía y Recursos Naturales\",\n \"U_AbogadoEncargado\" : \"Daniel Arredondo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3903\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Daniel Arredondo\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001117-SR-002066\",\n \"Name\" : \"Cuestionario sobre riesgos de empleo conjunto\",\n \"ValidFrom\" : \"2025-06-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1117\",\n \"U_ClienNom\" : \"World Bank Group\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Noelia Sanjinés\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"4457\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Noelia Sanjinés\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001117-SR-002085\",\n \"Name\" : \"EAS 4\",\n \"ValidFrom\" : \"2025-06-26T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1117\",\n \"U_ClienNom\" : \"World Bank Group\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Ambiental\",\n \"U_AbogadoEncargado\" : \"Daniel Arredondo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"4483\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Daniel Arredondo\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001119-SR-001898\",\n \"Name\" : \"Informe Contrato de Venta con Reserva de Propiedad\",\n \"ValidFrom\" : \"2025-02-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1119\",\n \"U_ClienNom\" : \"Sra. Pilar Canaviri\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Inmobiliario\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"3925\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:19-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:19-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=2100\u0026%24top=20 | Status: 200 | Duration: 124.8785ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:20 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"001120-SR-001901\",\n \"Name\" : \"PROCESO JUDICIAL SOBOCE vs FANCESA\",\n \"ValidFrom\" : \"2025-02-28T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1120\",\n \"U_ClienNom\" : \"SOCIEDAD BOLIVIANA DE CEMENTO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Andrés Moreno\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3931\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andrés Moreno\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001120-SR-002139\",\n \"Name\" : \"Atención de procesos judiciales y extrajudiciales\",\n \"ValidFrom\" : \"2025-07-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1120\",\n \"U_ClienNom\" : \"SOCIEDAD BOLIVIANA DE CEMENTO S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Zeballos\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"4549\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Zeballos\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001121-SR-001902\",\n \"Name\" : \"Constitucion de Sociedad\",\n \"ValidFrom\" : \"2025-02-28T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1121\",\n \"U_ClienNom\" : \"Santiago de la Cruz Quintanilla\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Mercantil-Banca\u0026Finanzas\",\n \"U_AbogadoEncargado\" : \"Teddy Mercado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3933\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Teddy Mercado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001123-SR-001908\",\n \"Name\" : \"Constitución de Sociedad Comercial (SRL)\",\n \"ValidFrom\" : \"2025-03-10T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1123\",\n \"U_ClienNom\" : \"Expandia Solutions S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Teddy Mercado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3941\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Teddy Mercado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001124-SR-001909\",\n \"Name\" : \"Constitucion de Sociedad Comercial SRL\",\n \"ValidFrom\" : \"2025-03-10T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1124\",\n \"U_ClienNom\" : \"FLEXMART SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Teddy Mercado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3942\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Teddy Mercado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001126-SR-001918\",\n \"Name\" : \"Asesoramiento Legal General por Horas\",\n \"ValidFrom\" : \"2025-03-17T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"La tarifa horaria, es una tarifa única de USD. 150.- más impuestos, por cada hora trabajada. Hay q\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1126\",\n \"U_ClienNom\" : \"SIEMENS S.A.C.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3955\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001128-SR-001925\",\n \"Name\" : \"SERVICIOS LEGALES INTEGRALES\",\n \"ValidFrom\" : \"2025-03-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Averiguación extra judicial de la existencia de procesos, y de bienes en su caso, del deudor de la\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1128\",\n \"U_ClienNom\" : \"Virginia Casilda Guzmán Vela\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Civil\",\n \"U_AbogadoEncargado\" : \"Mauricio Aguirre\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"3962\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Mauricio Aguirre\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001128-SR-002111\",\n \"Name\" : \"Proceso ejecutivo c/ Angel Flores\",\n \"ValidFrom\" : \"2025-07-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Se establece un honorario fijo de 2.000 $us.-, y un honorario variable equivalente al 8% del monto r\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1128\",\n \"U_ClienNom\" : \"Virginia Casilda Guzmán Vela\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Litigios\",\n \"U_AbogadoEncargado\" : \"Mauricio Aguirre\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4521\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Mauricio Aguirre\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001129-SR-001926\",\n \"Name\" : \"Revisión de Contrato de Distribución, Elaboración de Adenda, Elaboración de Contrato Laboral a P\",\n \"ValidFrom\" : \"2025-03-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1129\",\n \"U_ClienNom\" : \"MULTIFARM BOLIVIA S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"José María Navarro\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3963\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"José María Navarro\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001130-SR-001927\",\n \"Name\" : \"PROCESO LABORAL SEGUIDO POR YHONNY QUISPE CONTRA CHIKAKO INOUE\",\n \"ValidFrom\" : \"2025-03-20T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Pagará los honorarios en 3 cuotas.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1130\",\n \"U_ClienNom\" : \"CHIKAKO INOUE DE HOFMAN BANG\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Natalio Zegarra\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3964\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Natalio Zegarra\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001130-SR-002031\",\n \"Name\" : \"entrega de carta notariada Yhony Quispe\",\n \"ValidFrom\" : \"2025-05-19T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"cliente extranjera\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1130\",\n \"U_ClienNom\" : \"CHIKAKO INOUE DE HOFMAN BANG\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Ariel Zeballos\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"4315\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Zeballos\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001130-SR-002152\",\n \"Name\" : \"regularización de inmueble de Achumani en DDRR\",\n \"ValidFrom\" : \"2025-07-28T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1130\",\n \"U_ClienNom\" : \"CHIKAKO INOUE DE HOFMAN BANG\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : null,\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"4565\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ariel Zeballos\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001131-SR-001938\",\n \"Name\" : \"Aumento de capital y ampliación de objeto social\",\n \"ValidFrom\" : \"2025-03-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1131\",\n \"U_ClienNom\" : \"DISTRIBUIDORA BOLIVIANA DE BEBIDAS S.R.L. .\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Carlos Merino\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3975\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Carlos Merino\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001132-SR-001939\",\n \"Name\" : \"Tranferencias de Cuotas de capital y Revocatoria Poder\",\n \"ValidFrom\" : \"2025-03-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1132\",\n \"U_ClienNom\" : \"VIGBOLIVIA SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Carlos Merino\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3976\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Carlos Merino\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001133-SR-001942\",\n \"Name\" : \"Outsourcing contable, tributario, laboral y tesoreria.\",\n \"ValidFrom\" : \"2025-03-24T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"The mentioned fee corresponds to the scope defined in the components related with \\ri)Payroll and HR\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1133\",\n \"U_ClienNom\" : \"CRONIMET\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"3979\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001135-SR-001956\",\n \"Name\" : \"Servicios legales integrales generales\",\n \"ValidFrom\" : \"2025-04-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Usd. 700,00.- (Setecientos 00/100 Dólares Americanos) más IVA por 10 horas mensuales. Valor de la\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1135\",\n \"U_ClienNom\" : \"CORPORACIÓN MATHIESEN S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Ines Ayala\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4159\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ines Ayala\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001135-SR-002147\",\n \"Name\" : \"Servicios de apoyo preparacion y llenado form RIOF\",\n \"ValidFrom\" : \"2025-07-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Servicio de preparación y envío de los formularios RIOF al BCB\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1135\",\n \"U_ClienNom\" : \"CORPORACIÓN MATHIESEN S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4557\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001136-SR-001951\",\n \"Name\" : \"Due Diligence Comprador\",\n \"ValidFrom\" : \"2025-04-01T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1136\",\n \"U_ClienNom\" : \"Nutrioil\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"M\u0026A\",\n \"U_AbogadoEncargado\" : \"Luis Moreno\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4152\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Moreno\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001138-SR-001957\",\n \"Name\" : \"Asesoramiento legal general procesos administrativos y documentos civiles\",\n \"ValidFrom\" : \"2025-04-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Favor remitir factura a MIlenka Davalos - Los contactos se realizan a través de su celular. Gracias\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1138\",\n \"U_ClienNom\" : \"Inmobiliaria Kantutani S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Civil\",\n \"U_AbogadoEncargado\" : \"René Claure\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"4161\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Claure\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001140-SR-001971\",\n \"Name\" : \"Redaccion de Contrato\",\n \"ValidFrom\" : \"2025-04-08T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1140\",\n \"U_ClienNom\" : \"IMPORTADORA \u0026 EMBOTELLADORA NEW YORK BEVERAGE S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Civil\",\n \"U_AbogadoEncargado\" : \"Ines Ayala\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4192\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ines Ayala\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:20-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:20-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=2120\u0026%24top=20 | Status: 200 | Duration: 99.6472ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:20 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"001141-SR-001962\",\n \"Name\" : \"DEFENSA EN EJECUCIÓN DE SENTENCIA CONSTITUCIONAL (REINCORPORACION 5 TRABAJADORES)\",\n \"ValidFrom\" : \"2025-04-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1141\",\n \"U_ClienNom\" : \"PLASTICOS CARMEN S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Paul Aramayo\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4183\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Paul Aramayo\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001142-SR-001974\",\n \"Name\" : \"SERVICIOS LEGALES INTEGRALES\",\n \"ValidFrom\" : \"2025-04-10T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1142\",\n \"U_ClienNom\" : \"Kreamac SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"4201\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001144-SR-001978\",\n \"Name\" : \"Análisis y planteamiento de Modelo de Negocio exportador\",\n \"ValidFrom\" : \"2025-04-14T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1144\",\n \"U_ClienNom\" : \"ALLTEC BOLIVIA SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"MB Negocios\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4206\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001144-SR-001982\",\n \"Name\" : \"Consultoría\",\n \"ValidFrom\" : \"2025-04-16T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"El Cliente nos solicitó identificar alternativas eficientes para generar dólares, considerando la\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1144\",\n \"U_ClienNom\" : \"ALLTEC BOLIVIA SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"MB Negocios\",\n \"U_AbogadoEncargado\" : null,\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4210\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001145-SR-001985\",\n \"Name\" : \"Servicios legales integrales generales\",\n \"ValidFrom\" : \"2025-04-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1145\",\n \"U_ClienNom\" : \"CLINICA ODONTOLÓGICA MANZANO ROCHA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"4213\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001146-SR-001988\",\n \"Name\" : \"SERVICIOS LEGALES INTEGRALES\",\n \"ValidFrom\" : \"2025-04-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Realización de diligencias extrajudiciales para la solución de problemática relativa a dos bienes\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1146\",\n \"U_ClienNom\" : \"VLADIMIR HERMAN GARCIA GUACHALLA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Litigios\",\n \"U_AbogadoEncargado\" : \"Mauricio Aguirre\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4216\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Mauricio Aguirre\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001149-SR-002007\",\n \"Name\" : \"NEGOCIACIÓN ROCKWELL\",\n \"ValidFrom\" : \"2025-05-07T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1149\",\n \"U_ClienNom\" : \"LEVCORP SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Arbitraje\",\n \"U_AbogadoEncargado\" : \"Andrés Moreno\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"4281\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Andrés Moreno\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001150-SR-002013\",\n \"Name\" : \"Gestión y Redacción Contratos\",\n \"ValidFrom\" : \"2025-05-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1150\",\n \"U_ClienNom\" : \"Cabruja Films\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Luis Moreno\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4287\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Moreno\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001152-SR-002020\",\n \"Name\" : \"Representacion legal\",\n \"ValidFrom\" : \"2025-05-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1152\",\n \"U_ClienNom\" : \"CIAMSA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"José María Navarro\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"4299\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"José María Navarro\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001152-SR-002021\",\n \"Name\" : \"Domicilio Legal\",\n \"ValidFrom\" : \"2025-05-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1152\",\n \"U_ClienNom\" : \"CIAMSA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"José María Navarro\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"4300\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"José María Navarro\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001152-SR-002022\",\n \"Name\" : \"Constitucion de Sociedad Comercial SRL\",\n \"ValidFrom\" : \"2025-05-12T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1152\",\n \"U_ClienNom\" : \"CIAMSA\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"José María Navarro\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"4301\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"José María Navarro\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001154-SR-002032\",\n \"Name\" : \"Proceso Civil Ordinario Devolución de Dineros\",\n \"ValidFrom\" : \"2025-05-21T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1154\",\n \"U_ClienNom\" : \"Francisco Edwin Pérez Castellon\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"4342\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001155-SR-002039\",\n \"Name\" : \"Outsourcing contable, tributario, laboral y tesoreria.\",\n \"ValidFrom\" : \"2025-05-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Prestación de servicios de outsourcing.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1155\",\n \"U_ClienNom\" : \"Pagsmile Bolivia S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Outsourcing\",\n \"U_AbogadoEncargado\" : \"Cristhian Delgado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"4349\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001155-SR-002040\",\n \"Name\" : \"Representacion legal\",\n \"ValidFrom\" : \"2025-05-22T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Desglosar en la factura: 400 por representación legal y 100 por domicilio de forma mensual\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1155\",\n \"U_ClienNom\" : \"Pagsmile Bolivia S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Teddy Mercado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"4350\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Teddy Mercado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001155-SR-002046\",\n \"Name\" : \"Domicilio Legal\",\n \"ValidFrom\" : \"2025-05-26T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Se debe facturar a partir de mayo 2025 segun correo de Diego Cuellar de fecha 26 de mayo de 2025 la\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1155\",\n \"U_ClienNom\" : \"Pagsmile Bolivia S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Teddy Mercado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"4355\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Teddy Mercado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001156-SR-002042\",\n \"Name\" : \"Informe Legal - Situación financiera\",\n \"ValidFrom\" : \"2025-05-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1156\",\n \"U_ClienNom\" : \"SERVICIOS DE ALIMENTOS Y BEBIDAS KOFFE CORP. S.A.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Mercantil-Banca\u0026Finanzas\",\n \"U_AbogadoEncargado\" : \"Fernando Landa\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4352\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Landa\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001158-SR-002052\",\n \"Name\" : \"OPERACIÓN BONOS Y CESIÓN YPFB\",\n \"ValidFrom\" : \"2025-06-05T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Razon Social para facturación: DEUTSCHE BANK AG, LONDON BRANCH\\rThis has been approved at flat fee o\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1158\",\n \"U_ClienNom\" : \"DEUTSCHE BANK AG Sucursal Londres\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Mercantil-Banca\u0026Finanzas\",\n \"U_AbogadoEncargado\" : \"Teddy Mercado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"4365\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Teddy Mercado\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001159-SR-002068\",\n \"Name\" : \"PROCESO LABORAL - PAGO DE BENEFICIOS SOCIALES\",\n \"ValidFrom\" : \"2025-06-13T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1159\",\n \"U_ClienNom\" : \"ABASTECIMIENTO MINERO E INGENIERIA S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Noelia Sanjinés\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"4459\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Noelia Sanjinés\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001159-SR-002098\",\n \"Name\" : \"INFORME LEGAL - ESTRATEGIAS DE NEGOCIACIÓN Y MITIGACIÓN DE RIESGOS\",\n \"ValidFrom\" : \"2025-07-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"EL PAGO DEBERÁ SER REALIZADO EN BOLIVIANOS BS. 800 EN TOTAL POR ESTE CONCEPTO\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1159\",\n \"U_ClienNom\" : \"ABASTECIMIENTO MINERO E INGENIERIA S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Laboral y Seg. Soc.\",\n \"U_AbogadoEncargado\" : \"Noelia Sanjinés\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"4500\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Noelia Sanjinés\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001160-SR-002074\",\n \"Name\" : \"Servicios Legales Mensuales\",\n \"ValidFrom\" : \"2025-06-17T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1160\",\n \"U_ClienNom\" : \"Bolívar 1925 S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Teddy Mercado\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"4466\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Teddy Mercado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:20-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:20-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=2140\u0026%24top=20 | Status: 200 | Duration: 96.4572ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:20 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : [\n {\n \"Code\" : \"001161-SR-002083\",\n \"Name\" : \"SERVICIOS LEGALES INTEGRALES\",\n \"ValidFrom\" : \"2025-06-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Favor averiguar con el cliente datos para facturación\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1161\",\n \"U_ClienNom\" : \"BEERTOWN\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"4481\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001163-SR-002084\",\n \"Name\" : \"Informe Legal\",\n \"ValidFrom\" : \"2025-06-26T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1163\",\n \"U_ClienNom\" : \"Ariadna Communications Group\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Mercantil-Banca\u0026Finanzas\",\n \"U_AbogadoEncargado\" : null,\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4482\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Fernando Landa\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001164-SR-002086\",\n \"Name\" : \"Descargos contra Auto de Formulación de Cargos - AEMP\",\n \"ValidFrom\" : \"2025-06-27T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1164\",\n \"U_ClienNom\" : \"CONSTRUCTORA MILANO S.R.L.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Inmobiliario\",\n \"U_AbogadoEncargado\" : null,\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4485\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001165-SR-002090\",\n \"Name\" : \"Seguimiento proceso ejecutivo BNB - Ubuntu\",\n \"ValidFrom\" : \"2025-06-30T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1165\",\n \"U_ClienNom\" : \"Ericka Leyla Machicao Montaño\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Procesal Civil\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"4492\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Monto Fijo Mensual\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001166-SR-002097\",\n \"Name\" : \"Consultoría CEDEIM - Titularización\",\n \"ValidFrom\" : \"2025-07-02T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1166\",\n \"U_ClienNom\" : \"BDP Sociedad de Titularización\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Luis Valda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"4499\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Valda\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001170-SR-002104\",\n \"Name\" : \"Registro hipoteca CORVET\",\n \"ValidFrom\" : \"2025-07-04T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Los honorarios deberán ser cancelados de la siguiente forma:\\r• 60% a la aceptación de la present\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1170\",\n \"U_ClienNom\" : \"UCBVET\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : null,\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4510\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Ines Ayala\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001172-SR-002109\",\n \"Name\" : \"Informe NUNA\",\n \"ValidFrom\" : \"2025-07-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Facturar 60%\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1172\",\n \"U_ClienNom\" : \"Luis Iturralde\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Luis Valda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4515\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Valda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001174-SR-002112\",\n \"Name\" : \"Consulta Legal Contrato de Anticrésis\",\n \"ValidFrom\" : \"2025-07-09T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Facturar A nombre de: Carlos Gordillo\\rNIT: 7874942\\rSe cobró Bs. 300\",\n \"U_Estado\" : \"1\",\n \"U_ClienCode\" : \"1174\",\n \"U_ClienNom\" : \"Jacqueline Pinto Ramirez\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der.Comercial\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"4522\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001175-SR-002113\",\n \"Name\" : \"Auditoria Corporativa Contable\",\n \"ValidFrom\" : \"2025-07-10T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1175\",\n \"U_ClienNom\" : \"Pio Rico SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Corporativo (Societario)\",\n \"U_AbogadoEncargado\" : \"Álvaro Araoz\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"4523\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Álvaro Araoz\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001175-SR-002143\",\n \"Name\" : \"Due Diligence contable\",\n \"ValidFrom\" : \"2025-07-25T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Moreno Baldivieso seria contratado por PIO RICO S.R.L. para brindar asesoramiento legal y contable,\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1175\",\n \"U_ClienNom\" : \"Pio Rico SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"MBN CONSULTORIA\",\n \"U_AbogadoEncargado\" : null,\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Cochabamba\",\n \"U_EMBAIDTM\" : \"4553\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Cristhian Delgado\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001176-SR-002118\",\n \"Name\" : \"Informe Legal IT\",\n \"ValidFrom\" : \"2025-07-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"Facturar 60%\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1176\",\n \"U_ClienNom\" : \"COLSER LTDA.\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Der. Tributario\u0026 Plan.Fiscal\",\n \"U_AbogadoEncargado\" : \"Luis Valda\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"La Paz\",\n \"U_EMBAIDTM\" : \"4528\",\n \"U_Gasto_Reembolsable\" : \"No\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Luis Valda\",\n \"U_Tipo_Honorario\" : \"Monto Fijo por Asunto\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001177-SR-002119\",\n \"Name\" : \"Defensa Proceso Penal IMPLELAB\",\n \"ValidFrom\" : \"2025-07-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"Y\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"1. Primer Hito: Aceptación de la Iguala.\\r2. Segundo Hito: Cierre del proceso penal.\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1177\",\n \"U_ClienNom\" : \"Rubens Ervin Gonzales Campero\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Litigios\",\n \"U_AbogadoEncargado\" : \"Mauricio Aguirre\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4529\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"Si\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"Mauricio Aguirre\",\n \"U_Tipo_Honorario\" : \"Por Hitos o Etapas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n },\n {\n \"Code\" : \"001178-SR-002120\",\n \"Name\" : \"BIG BRANDS - SEER (SERVICIOS NO FACTURABLES CONFORME A CONVENIO)\",\n \"ValidFrom\" : \"2025-07-15T00:00:00Z\",\n \"ValidTo\" : null,\n \"Active\" : \"tYES\",\n \"U_Reembol\" : \"Y\",\n \"U_Factur\" : \"N\",\n \"U_MonedaTarifa\" : \"USD\",\n \"U_TarPlana\" : 0.0,\n \"U_Idioma\" : null,\n \"U_Y\" : null,\n \"U_MontoFijo\" : 0.0,\n \"U_Comentarios\" : \"\",\n \"U_Estado\" : \"2\",\n \"U_ClienCode\" : \"1178\",\n \"U_ClienNom\" : \"PROBRANDS BOLIVIA SRL\",\n \"U_FormaCobro\" : null,\n \"U_FechaCreacionP\" : null,\n \"U_AreaProyecto\" : \"Servicios Legales Mensuales\",\n \"U_AbogadoEncargado\" : \"René Cuellar\",\n \"U_Tarifa\" : null,\n \"U_HorasRetainer\" : null,\n \"U_REGIONAL\" : \"Santa Cruz\",\n \"U_EMBAIDTM\" : \"4530\",\n \"U_Gasto_Reembolsable\" : \"Si\",\n \"U_Incluye_IVA\" : \"No\",\n \"U_MonedaProyecto\" : \"USD\",\n \"U_Soc_Responsable\" : \"René Cuellar\",\n \"U_Tipo_Honorario\" : \"Por Horas\",\n \"U_CodAnterior\" : null,\n \"U_SUCURSAL\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:20-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/Projects\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:20-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/Projects?%24select=Code%2CName%2CValidFrom%2CValidTo%2CActive%2CU_Reembol%2C+U_Factur%2C+U_MonedaTarifa%2C+U_TarPlana%2C+U_Idioma%2C+U_Y%2C+U_MontoFijo%2C+U_Comentarios%2C+U_Estado%2C+U_ClienCode%2C+U_ClienNom%2C+U_FormaCobro%2C+U_FechaCreacionP%2C+U_AreaProyecto%2C+U_AbogadoEncargado%2C+U_Tarifa%2C+U_HorasRetainer%2C+U_REGIONAL%2C+U_EMBAIDTM%2C+U_Gasto_Reembolsable%2C+U_Incluye_IVA%2C+U_MonedaProyecto%2C+U_Soc_Responsable%2C+U_Tipo_Honorario%2C+U_CodAnterior%2C+U_SUCURSAL\u0026%24skip=2160\u0026%24top=20 | Status: 200 | Duration: 100.7751ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:20 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#Projects\",\n \"value\" : []\n}\n","time":"2025-07-30T10:48:20-04:00"} +{"file":"fetcher.go:121","func":"sync.FetchAllPaginatedManual[...]","level":"info","msg":" [🧩 Job: sync_business_partners] ❌ No hay más elementos","time":"2025-07-30T10:48:20-04:00"} +{"file":"fetcher.go:69","func":"sync.SyncData","level":"info","msg":"[🧩 Job: sync_business_partners] Cantidad de elementos: 2153","time":"2025-07-30T10:48:20-04:00"} +{"file":"operaciones.go:25","func":"db.(*GormDatabase).SyncRows","level":"info","msg":"[🧹 Tabla: public.sync_proyectos] ✅ Inicializacion Syncing data...","time":"2025-07-30T10:48:20-04:00"} +{"file":"operaciones.go:51","func":"db.(*GormDatabase).SyncRows","level":"debug","msg":"[🧹 Tabla: public.sync_proyectos] Procesando batch de 100 registros","time":"2025-07-30T10:48:20-04:00"} +{"file":"operaciones.go:51","func":"db.(*GormDatabase).SyncRows","level":"debug","msg":"[🧹 Tabla: public.sync_proyectos] Procesando batch de 100 registros","time":"2025-07-30T10:48:20-04:00"} +{"file":"operaciones.go:51","func":"db.(*GormDatabase).SyncRows","level":"debug","msg":"[🧹 Tabla: public.sync_proyectos] Procesando batch de 100 registros","time":"2025-07-30T10:48:21-04:00"} +{"file":"operaciones.go:51","func":"db.(*GormDatabase).SyncRows","level":"debug","msg":"[🧹 Tabla: public.sync_proyectos] Procesando batch de 100 registros","time":"2025-07-30T10:48:21-04:00"} +{"file":"operaciones.go:51","func":"db.(*GormDatabase).SyncRows","level":"debug","msg":"[🧹 Tabla: public.sync_proyectos] Procesando batch de 100 registros","time":"2025-07-30T10:48:21-04:00"} +{"file":"operaciones.go:51","func":"db.(*GormDatabase).SyncRows","level":"debug","msg":"[🧹 Tabla: public.sync_proyectos] Procesando batch de 100 registros","time":"2025-07-30T10:48:21-04:00"} +{"file":"operaciones.go:51","func":"db.(*GormDatabase).SyncRows","level":"debug","msg":"[🧹 Tabla: public.sync_proyectos] Procesando batch de 100 registros","time":"2025-07-30T10:48:21-04:00"} +{"file":"operaciones.go:51","func":"db.(*GormDatabase).SyncRows","level":"debug","msg":"[🧹 Tabla: public.sync_proyectos] Procesando batch de 100 registros","time":"2025-07-30T10:48:21-04:00"} +{"file":"operaciones.go:51","func":"db.(*GormDatabase).SyncRows","level":"debug","msg":"[🧹 Tabla: public.sync_proyectos] Procesando batch de 100 registros","time":"2025-07-30T10:48:21-04:00"} +{"file":"operaciones.go:51","func":"db.(*GormDatabase).SyncRows","level":"debug","msg":"[🧹 Tabla: public.sync_proyectos] Procesando batch de 100 registros","time":"2025-07-30T10:48:21-04:00"} +{"file":"operaciones.go:51","func":"db.(*GormDatabase).SyncRows","level":"debug","msg":"[🧹 Tabla: public.sync_proyectos] Procesando batch de 100 registros","time":"2025-07-30T10:48:22-04:00"} +{"file":"operaciones.go:51","func":"db.(*GormDatabase).SyncRows","level":"debug","msg":"[🧹 Tabla: public.sync_proyectos] Procesando batch de 100 registros","time":"2025-07-30T10:48:22-04:00"} +{"file":"operaciones.go:51","func":"db.(*GormDatabase).SyncRows","level":"debug","msg":"[🧹 Tabla: public.sync_proyectos] Procesando batch de 100 registros","time":"2025-07-30T10:48:22-04:00"} +{"file":"operaciones.go:51","func":"db.(*GormDatabase).SyncRows","level":"debug","msg":"[🧹 Tabla: public.sync_proyectos] Procesando batch de 100 registros","time":"2025-07-30T10:48:22-04:00"} +{"file":"operaciones.go:51","func":"db.(*GormDatabase).SyncRows","level":"debug","msg":"[🧹 Tabla: public.sync_proyectos] Procesando batch de 100 registros","time":"2025-07-30T10:48:22-04:00"} +{"file":"operaciones.go:51","func":"db.(*GormDatabase).SyncRows","level":"debug","msg":"[🧹 Tabla: public.sync_proyectos] Procesando batch de 100 registros","time":"2025-07-30T10:48:22-04:00"} +{"file":"operaciones.go:51","func":"db.(*GormDatabase).SyncRows","level":"debug","msg":"[🧹 Tabla: public.sync_proyectos] Procesando batch de 100 registros","time":"2025-07-30T10:48:22-04:00"} +{"file":"operaciones.go:51","func":"db.(*GormDatabase).SyncRows","level":"debug","msg":"[🧹 Tabla: public.sync_proyectos] Procesando batch de 100 registros","time":"2025-07-30T10:48:23-04:00"} +{"file":"operaciones.go:51","func":"db.(*GormDatabase).SyncRows","level":"debug","msg":"[🧹 Tabla: public.sync_proyectos] Procesando batch de 100 registros","time":"2025-07-30T10:48:23-04:00"} +{"file":"operaciones.go:51","func":"db.(*GormDatabase).SyncRows","level":"debug","msg":"[🧹 Tabla: public.sync_proyectos] Procesando batch de 100 registros","time":"2025-07-30T10:48:23-04:00"} +{"file":"operaciones.go:51","func":"db.(*GormDatabase).SyncRows","level":"debug","msg":"[🧹 Tabla: public.sync_proyectos] Procesando batch de 100 registros","time":"2025-07-30T10:48:23-04:00"} +{"file":"operaciones.go:51","func":"db.(*GormDatabase).SyncRows","level":"debug","msg":"[🧹 Tabla: public.sync_proyectos] Procesando batch de 53 registros","time":"2025-07-30T10:48:23-04:00"} +{"file":"operaciones.go:133","func":"db.(*GormDatabase).SyncRows","level":"info","msg":"[🧹 Tabla: public.sync_proyectos] ✅ Finalizacion Syncing data...","time":"2025-07-30T10:48:23-04:00"} +{"file":"fetcher.go:35","func":"sync.SyncData","level":"info","msg":"[🧩 Job: sync_business_partners] Iniciando proceso parametros:rest_customer","time":"2025-07-30T10:48:23-04:00"} +{"file":"redis_loader.go:20","func":"utils.CargarDesdeRedis[...]","level":"debug","msg":"🔑 Clave [parametros:rest_customer] obtenida de Redis: {\n\t\"auth\": {\n\t\t\"gql\": false,\n\t\t\"method\": \"POST\",\n\t\t\"path\": \"/b1s/v1/Login\",\n\t\t\"headers\": {\n\t\t\t\"Content-Type\": \"application/json\"\n\t\t},\n\t\t\"rest\": {\n\t\t\t\"body\": null\n\t\t},\n\t\t\"graphql\": null\n\t},\n\t\"service\": {\n\t\t\"gql\": false,\n\t\t\"method\": \"GET\",\n\t\t\"path\": \"/b1s/v1/BusinessPartners\",\n\t\t\"headers\": {\n\t\t\t\"Content-Type\": \"application/json\"\n\t\t},\n\t\t\"rest\": {\n\t\t\t\"body\": null,\n\t\t\t\"query\": {\n\t\t\t\t\"$select\": \"CardCode,CardName,CardForeignName,FederalTaxID,Currency,CardType,GroupCode,Phone1,Cellular,EmailAddress,Industry,DebitorAccount,Properties1,Properties2,Properties3,U_ClienPadre,U_EMBAIDTM,Valid,Frozen\"\n\t\t\t},\n\t\t\t\"pagination\": {\n\t\t\t\t\"enabled\": true,\n\t\t\t\t\"skip\": 0,\n\t\t\t\t\"top\": 20\n\t\t\t}\n\t\t},\n\t\t\"graphql\": null\n\t},\n\t\"persistencia\": {\n\t\t\"table\": \"public.sync_bp_customers\",\n\t\t\"batch_size\": 100,\n\t\t\"campo_sync\": \"sync_updated_at\",\n\t\t\"primary_key\": \"card_code\",\n\t\t\"fields\": {\n\t\t\t\"card_code\": \"CardCode\",\n\t\t\t\"card_name\": \"CardName\",\n\t\t\t\"card_foreign_name\": \"CardForeignName\",\n\t\t\t\"federal_tax_id\": \"FederalTaxID\",\n\t\t\t\"currency\": \"Currency\",\n\t\t\t\"card_type\": \"CardType\",\n\t\t\t\"group_code\": \"GroupCode\",\n\t\t\t\"phone1\": \"Phone1\",\n\t\t\t\"cellular\": \"Cellular\",\n\t\t\t\"email_address\": \"EmailAddress\",\n\t\t\t\"industry\": \"Industry\",\n\t\t\t\"debitor_account\": \"DebitorAccount\",\n\t\t\t\"properties1\": \"Properties1\",\n\t\t\t\"properties2\": \"Properties2\",\n\t\t\t\"properties3\": \"Properties3\",\n\t\t\t\"u_clien_padre\": \"U_ClienPadre\",\n\t\t\t\"u_embaidtm\": \"U_EMBAIDTM\",\n\t\t\t\"valid\": \"Valid\",\n\t\t\t\"frozen\": \"Frozen\"\n\t\t},\n\t\t\"static_fields\": {\n\t\t\t\"id_business_units\": 1\n\t\t},\n\t\t\"soft_delete\": {\n\t\t\t\"field\": \"sync_updated_at\",\n\t\t\t\"enabled\": true\n\t\t}\n\t}\n}","time":"2025-07-30T10:48:23-04:00"} +{"file":"session.go:27","func":"http.GetSession","level":"info","msg":"[🧩 Job: sync_business_partners] 🔑 Sesión obtenida de Redis session:PROD:SBOEMBASRL","time":"2025-07-30T10:48:23-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:23-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners?%24select=CardCode%2CCardName%2CCardForeignName%2CFederalTaxID%2CCurrency%2CCardType%2CGroupCode%2CPhone1%2CCellular%2CEmailAddress%2CIndustry%2CDebitorAccount%2CProperties1%2CProperties2%2CProperties3%2CU_ClienPadre%2CU_EMBAIDTM%2CValid%2CFrozen\u0026%24skip=0\u0026%24top=20 | Status: 200 | Duration: 97.3028ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:24 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#BusinessPartners\",\n \"value\" : [\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1000\",\n \"CardName\" : \"TOMOSUR S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"148542023\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"TOMOSUR S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 26,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"898\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1002\",\n \"CardName\" : \"WHITE -\u0026 CASE MEXICO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"WHITE -\u0026 CASE\",\n \"DebitorAccount\" : \"112200001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"900\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1003\",\n \"CardName\" : \"PAUL HASTINGS\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"mdavila@emba.com.bo\",\n \"CardForeignName\" : \"PAUL HASTINGS\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"901\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1004\",\n \"CardName\" : \"CONFIE Latinoamérica S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"192070022\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"janett.castillo@fie.org.bo; nroca@confieholding.com\",\n \"CardForeignName\" : \"CONFIE Latinoamérica S.R.L\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"902\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1005\",\n \"CardName\" : \"María del Carmen Masanés\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"3902935012\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"María del Carmen Masanés\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tNO\",\n \"Frozen\" : \"tYES\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"903\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"101\",\n \"CardName\" : \"INMARCA S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"3189272\",\n \"FederalTaxID\" : \"228662029\",\n \"Currency\" : \"##\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"iespinosa@silhercorp.com; carlos.noriega@promedical.com.bo; vflores@emba.com.bo; dantelo@emba.com.bo\",\n \"CardForeignName\" : \"INMARCA S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 30,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"359\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1010\",\n \"CardName\" : \"ONG FIE\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1020107026\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"janett.castillo@fie.org.bo\",\n \"CardForeignName\" : \"ONG Centro de Fomento a Iniciativas Económicas “FIE”\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 31,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"908\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1011\",\n \"CardName\" : \"CONSULTORA LEGAL MENTE S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"329540025\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"CONSULTORA LEGAL MENTE S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 18,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"909\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1012\",\n \"CardName\" : \"THYSSENKRUPP POLYSIUS IBÉRICA S.A. SUCURSAL BOLIVIA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"301090028\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"almudena.hernandez@thyssenkrupp.com; caquisbert@sacyr.com; javier.rios@sacyrbolivia.com\",\n \"CardForeignName\" : \"THYSSENKRUPP POLYSIUS IBÉRICA S.A. SUCURSAL BOLIVIA\",\n \"DebitorAccount\" : \"112200001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"910\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1014\",\n \"CardName\" : \"Magraing Bolivia S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"535575022\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"hlara@gramar.com; vflores@emba.com.bo; jvasquez@magraing.com; jvasquez@magraing.com\",\n \"CardForeignName\" : \"MAGRAING BOLIVIA S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"912\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1016\",\n \"CardName\" : \"ALIEMGLOBAL S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"ALIEMGLOBAL S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tNO\",\n \"Frozen\" : \"tYES\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"914\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1018\",\n \"CardName\" : \"Gustavo Aramayo\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"3025484017\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"Roberto Mercado\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 36,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"916\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"102\",\n \"CardName\" : \"INVERSIONES INMOBILIARIAS IRALA S.A\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2772521\",\n \"FederalTaxID\" : \"182030028\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"carlos.fernandez@irala.com.bo\",\n \"CardForeignName\" : \"INVERSIONES INMOBILIARIAS IRALA S.A\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tNO\",\n \"Frozen\" : \"tYES\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 30,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"365\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1020\",\n \"CardName\" : \"Industria de productos lácteos La Purita S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"142173022\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"neizachavezhonor@gmail.com; contador@lapurita.com.bo\",\n \"CardForeignName\" : \"Industria de productos lácteos La Purita S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : -1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"918\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1021\",\n \"CardName\" : \"Nacional Adita Cash\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"3340517014\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"frape1966@gmail.com; inesitarl707@gmail.com; nacional.adita.cash@gmail.com\",\n \"CardForeignName\" : \"MARIA INES REVOLLO LEDEZMA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 24,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"919\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1022\",\n \"CardName\" : \"Jaime Mercado\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"jaimemercadop@hotmail.com\",\n \"CardForeignName\" : \"Jaime Mercado\",\n \"DebitorAccount\" : \"112200001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 36,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"920\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1023\",\n \"CardName\" : \"Empresa Constructora Yolita S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"199300029\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"e.mamani@ecysrl.com\",\n \"CardForeignName\" : \"Empresa Constructora Yolita S.R.L. ECY S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"921\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1024\",\n \"CardName\" : \"Distribuidora Internacional Medwell S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"393658027\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"cvivanco@rbauditores.com; mlopez@medwell-int.com\",\n \"CardForeignName\" : \"Distribuidora Internacional Medwell S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 40,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"922\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"103\",\n \"CardName\" : \"JOCA MOLINARI\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"4-4317386\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"sheyla.quispe@jocamolinari.com\",\n \"CardForeignName\" : \"JOCA MOLINARI\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tNO\",\n \"Frozen\" : \"tYES\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"380\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1030\",\n \"CardName\" : \"BEONTAG\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"418942020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"BEONTAG BOLIVIA S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 46,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"928\"\n }\n ]\n}\n","time":"2025-07-30T10:48:24-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:24-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners?%24select=CardCode%2CCardName%2CCardForeignName%2CFederalTaxID%2CCurrency%2CCardType%2CGroupCode%2CPhone1%2CCellular%2CEmailAddress%2CIndustry%2CDebitorAccount%2CProperties1%2CProperties2%2CProperties3%2CU_ClienPadre%2CU_EMBAIDTM%2CValid%2CFrozen\u0026%24skip=20\u0026%24top=20 | Status: 200 | Duration: 92.4131ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:24 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#BusinessPartners\",\n \"value\" : [\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1032\",\n \"CardName\" : \"IBNORCA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1020745020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"INSTITUTO BOLIVIANO DE NORMALIZACIÓN Y CALIDAD - IBNORCA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 31,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"930\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1033\",\n \"CardName\" : \"CONSER\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"166648025\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"yuhanasaravia@consegsa.com; saria@conser.bo\",\n \"CardForeignName\" : \"CONSULTORES DE SERVICIOS LTDA.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 18,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"931\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1034\",\n \"CardName\" : \"CRSM San Juan de Dios\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"170656020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"juan.moreno@ohsanjuandedios.org; odonllanosespinoza@gmail.com\",\n \"CardForeignName\" : \"CRSM San Juan de Dios\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 28,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"932\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1035\",\n \"CardName\" : \"APDOKA BOLIVIA S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"407013022\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"jaime.gutierrez@atpac-doka.com\",\n \"CardForeignName\" : \"APDOKA BOLIVIA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"933\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1036\",\n \"CardName\" : \"CENTRO DE CAPACITACIÓN TÉCNICA C.E.C. S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"330998025\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"CENTRO DE CAPACITACIÓN TÉCNICA C.E.C. S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 27,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"934\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1039\",\n \"CardName\" : \"BATEBOL S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1028369021\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"smontero@geoautomotriz.com.bo\",\n \"CardForeignName\" : \"BATEBOL S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 39,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"937\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"104\",\n \"CardName\" : \"JOHNNY ALDO ALIAGA TELLEZ\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"3497834010\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"JALDO@GMAIL.COM\",\n \"CardForeignName\" : \"JOHNNY ALDO ALIAGA TELLEZ\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 36,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"382\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1041\",\n \"CardName\" : \"TOTALBIO BOLIVIA S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"539466025\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"leticia.mueller@biotrop.com.br; mvidez@emba.com.bo; cdelgado@emba.com.bo\",\n \"CardForeignName\" : \"TOTALBIO BOLIVIA S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 18,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"939\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1044\",\n \"CardName\" : \"ANDY'S TIENDAS INTELIGENTES S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"258522020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"administracion@ati.com.bo; auxcontable@ati.com.bo; finanzas@ati.com.bo; contabilidad@ati.com.bo\",\n \"CardForeignName\" : \"ANDY'S TIENDAS INTELIGENTES S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : -1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"942\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1046\",\n \"CardName\" : \"INVERSIONES CELER (Grupo Venado)\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"182930026\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"INVERSIONES CELER LTDA.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : -1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"944\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1047\",\n \"CardName\" : \"FUNDACIÓN INFOCAL LA PAZ\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"69700987\",\n \"FederalTaxID\" : \"1017273021\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"mcapaza@infocallp.edu.bo; asardon@infocallp.edu.bo\",\n \"CardForeignName\" : \"FUNDACIÓN INFOCAL LA PAZ\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 31,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"945\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1049\",\n \"CardName\" : \"MARKETING PROMOCIONAL S.R.L. (GRUPO LUCKY)\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"401731022\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"mgutierrez@grupolucky.com; saguilera@grupolucky.com; dsoto@xplora.net\",\n \"CardForeignName\" : \"MARKETING PROMOCIONAL S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"947\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"105\",\n \"CardName\" : \"JOHNSON \u0026 JOHNSON DEL PARAGUAY S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"59521 608800\",\n \"FederalTaxID\" : \"105\",\n \"Currency\" : \"USD\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"JLOPEZ02@ITS.JNJ.COM\",\n \"CardForeignName\" : \"JOHNSON \u0026 JOHNSON DEL PARAGUAY S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tNO\",\n \"Frozen\" : \"tYES\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 5,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"383\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1051\",\n \"CardName\" : \"KOICA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"kyh@koica.go.kr\",\n \"CardForeignName\" : \"KOICA - AGENCIA DE COOPERACION INTERNACIONAL DE COREA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 34,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"949\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1053\",\n \"CardName\" : \"CERTIFICADORA DIGITAL CERTIFIRMA S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"546862023\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"kgutierrez@emba.com.bo; cdelgado@emba.com.bo; ateran@uanataca.ec\",\n \"CardForeignName\" : \"CERTIFICADORA DIGITAL CERTIFIRMA S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 46,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"951\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1055\",\n \"CardName\" : \"EVOLVESOFT INNOVATIONS SRL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"551063023\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"administracion@dharbor.com\",\n \"CardForeignName\" : \"EVOLVESOFT INNOVATIONS SRL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 46,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"953\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1056\",\n \"CardName\" : \"Julio Gardeazabal\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"Julio Gardeazabal\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 36,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"954\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1057\",\n \"CardName\" : \"ASISCO SRL (GRUPO BPO)\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"173552026\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"saliaga@bpocenter.com.bo; guiselasuarez@bpocenter.com.bo; fgaite@bpocenter.com.bo\",\n \"CardForeignName\" : \"ASISCO S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 18,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"955\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1058\",\n \"CardName\" : \"HOLA SRL (GRUPO BPO)\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"173554025\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"saliaga@bpocenter.com.bo; guiselasuarez@bpocenter.com.bo; fgaite@bpocenter.com.bo\",\n \"CardForeignName\" : \"HOLA S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 18,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"956\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1059\",\n \"CardName\" : \"POTENZA SRL (GRUPO BPO)\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"173550023\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"guiselasuarez@bpocenter.com.bo; saliaga@bpocenter.com.bo\",\n \"CardForeignName\" : \"POTENZA S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 18,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"957\"\n }\n ]\n}\n","time":"2025-07-30T10:48:24-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:24-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners?%24select=CardCode%2CCardName%2CCardForeignName%2CFederalTaxID%2CCurrency%2CCardType%2CGroupCode%2CPhone1%2CCellular%2CEmailAddress%2CIndustry%2CDebitorAccount%2CProperties1%2CProperties2%2CProperties3%2CU_ClienPadre%2CU_EMBAIDTM%2CValid%2CFrozen\u0026%24skip=40\u0026%24top=20 | Status: 200 | Duration: 95.9452ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:24 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#BusinessPartners\",\n \"value\" : [\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"106\",\n \"CardName\" : \"JORGE BALDIVIESO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1515830\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"baldiviesoj@gmail.com\",\n \"CardForeignName\" : \"JORGE BALDIVIESO\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tNO\",\n \"Frozen\" : \"tYES\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 36,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"384\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1060\",\n \"CardName\" : \"T-PROMOCIONA BOLIVIA S.R.L. (GRUPO BPO)\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"173556028\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"guiselasuarez@bpocenter.com.bo; saliaga@bpocenter.com.bo\",\n \"CardForeignName\" : \"T-PROMOCIONA BOLIVIA S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 18,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"958\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1062\",\n \"CardName\" : \"BANCO PYME ECOFUTURO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1020271020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"cvelez@bancoecofuturo.com.bo; arflores@bancoecofuturo.com.bo\",\n \"CardForeignName\" : \"BANCO PYME ECOFUTURO S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"960\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1063\",\n \"CardName\" : \"EMPRESA FORESTAL YVYRAGUAZU S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"193468025\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"estudiogqa@gmail.com\",\n \"CardForeignName\" : \"EMPRESA FORESTAL YVYRAGUAZU S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"961\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1064\",\n \"CardName\" : \"Delegación de la Unión Europea en Bolivia\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"patricia.taborga-de-collao@eeas.europa.eu\",\n \"CardForeignName\" : \"Delegación de la Unión Europea en Bolivia\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 34,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"962\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1067\",\n \"CardName\" : \"RADIO FIDES SERVICIOS S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1003471028\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"charo@radiofides.com\",\n \"CardForeignName\" : \"RADIO FIDES SERVICIOS S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 10,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"965\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1068\",\n \"CardName\" : \"RADIO FIDES COCHABAMBA S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"121133024\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"charo@radiofides.com\",\n \"CardForeignName\" : \"RADIO FIDES COCHABAMBA S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 10,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"966\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1069\",\n \"CardName\" : \"RADIO FIDES POTOSI S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1011207029\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"charo@radiofides.com\",\n \"CardForeignName\" : \"RADIO FIDES POTOSI S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 10,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"967\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"107\",\n \"CardName\" : \"JUAN BROCH MESTRES\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"73105300 76631122\",\n \"FederalTaxID\" : \"8997402017\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"velkens@hotmail.com\",\n \"CardForeignName\" : \"JUAN BROCH MESTRES\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tNO\",\n \"Frozen\" : \"tYES\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 36,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"388\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1070\",\n \"CardName\" : \"RADIO LOYOLA S.R.L\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1000147025\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"charo@radiofides.com\",\n \"CardForeignName\" : \"RADIO LOYOLA S.R.L\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 10,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"968\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1071\",\n \"CardName\" : \"RADIO FIDES ORURO S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1009703020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"charo@radiofides.com\",\n \"CardForeignName\" : \"RADIO FIDES ORURO S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 10,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"969\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1072\",\n \"CardName\" : \"SIEMPRESALUD S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"90001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"SIEMPRESALUD S.R.L. - DUPLICADO\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tNO\",\n \"Frozen\" : \"tYES\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 26,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"970\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1074\",\n \"CardName\" : \"José Luis Garcés Paz\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"nadimb6@gmail.com\",\n \"CardForeignName\" : \"José Luis Garcés Paz\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 36,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"972\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1075\",\n \"CardName\" : \"Towerbank International, Inc.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"828-314-151242 D.V. 02\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"Towerbank International, Inc.\",\n \"DebitorAccount\" : \"112200001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"973\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1076\",\n \"CardName\" : \"XX CORP SRL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"155546026\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"administracion@ximenaximenez.com\",\n \"CardForeignName\" : \"XX EVENTOS CORP. S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 18,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"974\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1077\",\n \"CardName\" : \"ASOBOGH BOLIVIA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"ASOBOGH BOLIVIA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 31,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"975\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1078\",\n \"CardName\" : \"Ria Ventures\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"436441021\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"matheus@ria.ventures; rubensg@monterreysrl.com.bo\",\n \"CardForeignName\" : \"RICORP SOLUCIONES TECNOLOGICAS S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"976\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"108\",\n \"CardName\" : \"JUGOS BOLIVIANOS SRL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"3882909\",\n \"FederalTaxID\" : \"127585020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"joseluishurtado@jugosbolivianos.com.bo\",\n \"CardForeignName\" : \"JUGOS BOLIVIANOS SRL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tNO\",\n \"Frozen\" : \"tYES\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : -1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"392\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1080\",\n \"CardName\" : \"EMPRESA MINERA MANQUIRI S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1017233026\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"EMPRESA MINERA MANQUIRI S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 8,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"978\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1083\",\n \"CardName\" : \"Embajada de Perú en Bolivia\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"Embajada de Perú en Bolivia\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 34,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"981\"\n }\n ]\n}\n","time":"2025-07-30T10:48:24-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:24-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners?%24select=CardCode%2CCardName%2CCardForeignName%2CFederalTaxID%2CCurrency%2CCardType%2CGroupCode%2CPhone1%2CCellular%2CEmailAddress%2CIndustry%2CDebitorAccount%2CProperties1%2CProperties2%2CProperties3%2CU_ClienPadre%2CU_EMBAIDTM%2CValid%2CFrozen\u0026%24skip=60\u0026%24top=20 | Status: 200 | Duration: 110.4456ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:24 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#BusinessPartners\",\n \"value\" : [\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1086\",\n \"CardName\" : \"Rafael Paz Aguilera\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"4586251\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"rterceros@grupopaz.com.bo\",\n \"CardForeignName\" : \"Rafael Paz Aguilera\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 36,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"984\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1087\",\n \"CardName\" : \"Fundación Agrocapital\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1023241029\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"Fundación Agrocapital\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 31,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"985\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1088\",\n \"CardName\" : \"MANACO S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1023149021\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"legal.bolivia@bata.com; jaime.lopez@bata.com; lizeth.camacho@bata.com\",\n \"CardForeignName\" : \"Manufactura Boliviana S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 6,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"986\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1089\",\n \"CardName\" : \"Roberto Nelkenbaum\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"239060013\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"Roberto Nelkenbaum\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 2,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"987\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"109\",\n \"CardName\" : \"JULIO CASTELLANOS\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"juliocastellanos@gmail.com\",\n \"CardForeignName\" : \"JULIO CASTELLANOS\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tNO\",\n \"Frozen\" : \"tYES\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 36,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"394\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1091\",\n \"CardName\" : \"SINOHYDRO CORPORATION LIMITED SUCURSAL BOLIVIA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"269830023\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"multipropositolapaz@gmail.com\",\n \"CardForeignName\" : \"SINOHYDRO CORPORATION LIMITED SUCURSAL BOLIVIA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"989\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1092\",\n \"CardName\" : \"Julio Guillen\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"3476706\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"amoeg0106@gmail.com\",\n \"CardForeignName\" : \"Julio Guillen\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 30,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"990\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1093\",\n \"CardName\" : \"Técnica de Fluidos Bolivia S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"185116025\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"blancox@tecnicadefluidos.com\",\n \"CardForeignName\" : \"Técnica de Fluidos Bolivia S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 7,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"991\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1096\",\n \"CardName\" : \"Diego Velasquez\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"5057270010\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"Diego Velasquez\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 36,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"994\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1097\",\n \"CardName\" : \"ASOCIACIÓN BOLIVIANA DE GESTIÓN HUMANA - ASOBOGH\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"ASOCIACIÓN BOLIVIANA DE GESTIÓN HUMANA - ASOBOGH\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tNO\",\n \"Frozen\" : \"tYES\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 18,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"995\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"110\",\n \"CardName\" : \"KUMON INSTITUTO DE EDUCAÇÃO LTDA.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"77336772 - 68660895\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"kumon@kumon.com.br; vflores@emba.com.bo; alexandre.goncalves@kumon.com.br\",\n \"CardForeignName\" : \"KUMON INSTITUTO DE EDUCAÇÃO LTDA.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 27,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"399\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1100\",\n \"CardName\" : \"Familia Paccieri Paz\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"960154018\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"Susana Paz\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 36,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"998\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1101\",\n \"CardName\" : \"Baker \u0026 McKenzie LLP\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"Baker \u0026 McKenzie LLP\",\n \"DebitorAccount\" : \"112200001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 18,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"999\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1102\",\n \"CardName\" : \"Marilizzi Sanchez Suarez\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"Marilizzi Sanchez Suarez\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"1000\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1103\",\n \"CardName\" : \"Mauricio Lopez Zabalaga\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"4452472\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"maurilz@hotmail.com\",\n \"CardForeignName\" : \"Lopez\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 18,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"1001\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1104\",\n \"CardName\" : \"EMPRESA AGRÍCOLA Y GANADERA TACUARÍ S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1014953027\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"cinthia@tacuari.com\",\n \"CardForeignName\" : \"EMPRESA AGRÍCOLA Y GANADERA TACUARÍ S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"1002\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1105\",\n \"CardName\" : \"Total Biotecnologia Indústria e Comércio SA emba\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"CNPJ 29818778000194\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"camila.puttkammer@biotrop.com.br\",\n \"CardForeignName\" : \"Biotrop Participações SA\",\n \"DebitorAccount\" : \"112200001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 41,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"1003\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1109\",\n \"CardName\" : \"ASOCIACION ACCIDENTAL UNTRES- LOPEZ \u0026 ZAMBRANA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1014441022\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"ASOCIACION ACCIDENTAL UNTRES- LOPEZ \u0026 ZAMBRANA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"1007\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"111\",\n \"CardName\" : \"LG ELECTRONICS\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"56 2 2941 9404\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"leonardo.ovalle@lge.com\",\n \"CardForeignName\" : \"LG ELECTRONICS\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tNO\",\n \"Frozen\" : \"tYES\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 46,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"410\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1111\",\n \"CardName\" : \"Patricia Mendieta\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"4803809\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"Rodrigo Díaz\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"1009\"\n }\n ]\n}\n","time":"2025-07-30T10:48:24-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:24-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners?%24select=CardCode%2CCardName%2CCardForeignName%2CFederalTaxID%2CCurrency%2CCardType%2CGroupCode%2CPhone1%2CCellular%2CEmailAddress%2CIndustry%2CDebitorAccount%2CProperties1%2CProperties2%2CProperties3%2CU_ClienPadre%2CU_EMBAIDTM%2CValid%2CFrozen\u0026%24skip=80\u0026%24top=20 | Status: 200 | Duration: 84.8201ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:24 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#BusinessPartners\",\n \"value\" : [\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1113\",\n \"CardName\" : \"Thayne Bolivia S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"559163022\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"amedina.thayne@gmail.com; mvidez@emba.com.bo; cpaz.thayne@gmail.com\",\n \"CardForeignName\" : \"Thayne Bolivia S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"1011\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1114\",\n \"CardName\" : \"ANDECORP S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"582167027\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"sandrafeuser.wynconsultoria@gmail.com; kgutierrez@emba.com.bo\",\n \"CardForeignName\" : \"ANDECORP S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 18,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"1012\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1116\",\n \"CardName\" : \"COCONAL S.A.P.I DE C.V. (SUCURSAL BOLIVIA)\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"383579022\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"4. jesus.zaragoza@coconal.com.mx\",\n \"CardForeignName\" : \"COCONAL S.A.P.I DE C.V. (SUCURSAL BOLIVIA)\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"1014\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1117\",\n \"CardName\" : \"World Bank Group\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"International Bank for Reconstruction and Development\",\n \"DebitorAccount\" : \"112200001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"1015\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1119\",\n \"CardName\" : \"Sra. Pilar Canaviri\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"3059281017\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"TRIGIDIA JIMENEZ FRANCO\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 30,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"1017\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"112\",\n \"CardName\" : \"MARTINEZ - CALBIMONTE\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1838597017\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"MARTINEZ - CALBIMONTE\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tNO\",\n \"Frozen\" : \"tYES\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : -1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"435\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1120\",\n \"CardName\" : \"SOCIEDAD BOLIVIANA DE CEMENTO S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1020235024\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"SOCIEDAD BOLIVIANA DE CEMENTO S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"1018\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1121\",\n \"CardName\" : \"Santiago de la Cruz Quintanilla\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"375732025\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"REINVENTARSE S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 18,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"1019\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1122\",\n \"CardName\" : \"UNIFRANZ SA.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"00000\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"UNIFRANZ SA.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tNO\",\n \"Frozen\" : \"tYES\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 27,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"1020\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1123\",\n \"CardName\" : \"Expandia Solutions S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"591705025\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"finanzas@ati.com.bo;contabilidad@ati.com.bo; asistente.adm@ati.com.bo\",\n \"CardForeignName\" : \"EXPANDIA SOLUTIONS S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 5,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"1021\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1124\",\n \"CardName\" : \"FLEXMART SRL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"599672024\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"finanzas@ati.com.bo; contabilidad@ati.com.bo; asistente.adm@ati.com.bo\",\n \"CardForeignName\" : \"FLEXMART SRL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 13,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"1022\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1126\",\n \"CardName\" : \"SIEMENS S.A.C.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"20605499725\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"SIEMENS S.A.C.\",\n \"DebitorAccount\" : \"112200001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 13,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"1024\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1128\",\n \"CardName\" : \"Virginia Casilda Guzmán Vela\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"cguzman04@outlook.es\",\n \"CardForeignName\" : \"Virginia Casilda Guzmán Vela\",\n \"DebitorAccount\" : \"112200001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 18,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"1026\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1129\",\n \"CardName\" : \"MULTIFARM BOLIVIA S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"170822028\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"josearmandobravo17@gmail.com\",\n \"CardForeignName\" : \"MULTIFARM BOLIVIA S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 13,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"1027\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"113\",\n \"CardName\" : \"MB LITIGIOS SRL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2791554\",\n \"FederalTaxID\" : \"333492023\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"lchalco@emba.com.bo\",\n \"CardForeignName\" : \"MB LITIGIOS SRL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tNO\",\n \"Frozen\" : \"tYES\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 18,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"439\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1130\",\n \"CardName\" : \"CHIKAKO INOUE DE HOFMAN BANG\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"2632112\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"CHIKAKO INOUE DE HOFMAN BANG\",\n \"DebitorAccount\" : \"112200001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 36,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"1028\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1131\",\n \"CardName\" : \"DISTRIBUIDORA BOLIVIANA DE BEBIDAS S.R.L. .\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"179676022\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"DBB S.R.L. DISTRIBUIDORA BOLIVIANA DE BEBIDAS\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : -1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"1029\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1132\",\n \"CardName\" : \"VIGBOLIVIA SRL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"410141027\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"VIGBOLIVIA SRL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : -1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"1030\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1133\",\n \"CardName\" : \"CRONIMET\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"615362029\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"mcalatayud@emba.com.bo; bolivia.comercial@cronimet.com.br; bolivia.comercial@cronimet.com.br\",\n \"CardForeignName\" : \"CRONITUNGSTEN BOLIVIA SRL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 8,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"1031\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1135\",\n \"CardName\" : \"CORPORACIÓN MATHIESEN S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1028611021\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"contabilidad.bolivia@grupomathiesen.com\",\n \"CardForeignName\" : \"CORPORACION MATHIESEN SA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 11,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"1033\"\n }\n ]\n}\n","time":"2025-07-30T10:48:24-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:24-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners?%24select=CardCode%2CCardName%2CCardForeignName%2CFederalTaxID%2CCurrency%2CCardType%2CGroupCode%2CPhone1%2CCellular%2CEmailAddress%2CIndustry%2CDebitorAccount%2CProperties1%2CProperties2%2CProperties3%2CU_ClienPadre%2CU_EMBAIDTM%2CValid%2CFrozen\u0026%24skip=100\u0026%24top=20 | Status: 200 | Duration: 101.0591ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:24 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#BusinessPartners\",\n \"value\" : [\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1136\",\n \"CardName\" : \"Nutrioil\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"178730023\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"vmedina@nutrioil.com.bo; vbarbery@nutrioil.com.bo\",\n \"CardForeignName\" : \"Sociedad Agroindustrial Nutrioil S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 11,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"1034\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1138\",\n \"CardName\" : \"Inmobiliaria Kantutani S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1006833024\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"rclaure@emba.com.bo; cgudino@kantutani.com\",\n \"CardForeignName\" : \"Inmobiliaria Kantutani S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 30,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"1036\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"114\",\n \"CardName\" : \"MEDIAFILMS SRL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"78444519\",\n \"FederalTaxID\" : \"215432029\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"scardenas@caribbeancinemas.com\",\n \"CardForeignName\" : \"MEDIAFILMS SRL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 18,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"442\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1140\",\n \"CardName\" : \"IMPORTADORA \u0026 EMBOTELLADORA NEW YORK BEVERAGE S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"294070022\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"carmen.delafuente@las-consultores.com\",\n \"CardForeignName\" : \"IMPORTADORA \u0026 EMBOTELLADORA NEW YORK BEVERAGE S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 3,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"1038\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1141\",\n \"CardName\" : \"PLASTICOS CARMEN S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1014517021\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"gmejia@plasticoscarmen.com\",\n \"CardForeignName\" : \"PLASTICOS CARMEN S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 11,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"1039\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1142\",\n \"CardName\" : \"Kreamac SRL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"355563025\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"earandia@kreamac.com\",\n \"CardForeignName\" : \"KREAMAC S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 13,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"1040\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1144\",\n \"CardName\" : \"ALLTEC BOLIVIA SRL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"212198028\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"contabilidad@alltecbolivia.com\",\n \"CardForeignName\" : \"ALLTEC BOLIVIA SRL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"1042\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1145\",\n \"CardName\" : \"CLINICA ODONTOLÓGICA MANZANO ROCHA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"6406710014\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"manzanorochaodt@hotmail.com\",\n \"CardForeignName\" : \"MAGDIEL MAIRA ROCHA SALVATIERRA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 26,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"1043\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1146\",\n \"CardName\" : \"VLADIMIR HERMAN GARCIA GUACHALLA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"2809960\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"hgarcia@trasvisol.com\",\n \"CardForeignName\" : \"VLADIMIR HERMAN GARCIA GUACHALLA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 36,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"1044\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1149\",\n \"CardName\" : \"LEVCORP SRL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"296202021\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"jjimenez@levcorp.bo; jmollo@levcorp.bo\",\n \"CardForeignName\" : \"LEVERAGE CORPORATION PROVISIONES S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 13,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"1047\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"115\",\n \"CardName\" : \"MINERA EDERRA SRL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"767 51 441\",\n \"FederalTaxID\" : \"204700027\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"augaldeb@citadelinversiones.com\",\n \"CardForeignName\" : \"MINERA EDERRA SRL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tNO\",\n \"Frozen\" : \"tYES\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 8,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"451\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1150\",\n \"CardName\" : \"Cabruja Films\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"285002020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"CABRUJA FILMS S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 33,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"1048\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1152\",\n \"CardName\" : \"CIAMSA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"aprendiz.compras@ciamsa.com\",\n \"CardForeignName\" : \"C.I. de Azucares y Mieles S.A.\",\n \"DebitorAccount\" : \"112200001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"1050\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1154\",\n \"CardName\" : \"Francisco Edwin Pérez Castellon\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"569164029\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"frape1966@gmail.com\",\n \"CardForeignName\" : \"EMPEÑOS PRIMERÍSIMA LTDA.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"1052\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1155\",\n \"CardName\" : \"Pagsmile Bolivia S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"646063029\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"vflores@emba.com.bo; invoice@pagsmile.com\",\n \"CardForeignName\" : \"Pagsmile Bolivia S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 46,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"1053\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1156\",\n \"CardName\" : \"SERVICIOS DE ALIMENTOS Y BEBIDAS KOFFE CORP. S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"183024024\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"abellido@koffecorp.com; dponce@koffecorp.com\",\n \"CardForeignName\" : \"SERVICIOS DE ALIMENTOS Y BEBIDAS KOFFE CORP. S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : -1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"1054\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1158\",\n \"CardName\" : \"DEUTSCHE BANK AG Sucursal Londres\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"DEUTSCHE BANK AG Sucursal Londres\",\n \"DebitorAccount\" : \"112200001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"1056\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1159\",\n \"CardName\" : \"ABASTECIMIENTO MINERO E INGENIERIA S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"397815029\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"joselin.bernabe@abamin.com.bo; raul.llorenti@abamin.com.bo\",\n \"CardForeignName\" : \"ABAMIN S.R.L\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 8,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"1057\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"116\",\n \"CardName\" : \"MINERA SAN CRISTOBAL SA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2623400\",\n \"FederalTaxID\" : \"1020415021\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"eduardo.torrecillas@minerasancristobal.com\",\n \"CardForeignName\" : \"MINERA SAN CRISTOBAL SA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tNO\",\n \"Frozen\" : \"tYES\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 8,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"452\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1160\",\n \"CardName\" : \"Bolívar 1925 S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"408756023\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"nils.sanmartin@clubbolivar.com; veronica.nina@clubbolivar.com; martin.mollinedo@clubbolivar.com\",\n \"CardForeignName\" : \"Bolívar 1925 S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"1058\"\n }\n ]\n}\n","time":"2025-07-30T10:48:24-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:24-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners?%24select=CardCode%2CCardName%2CCardForeignName%2CFederalTaxID%2CCurrency%2CCardType%2CGroupCode%2CPhone1%2CCellular%2CEmailAddress%2CIndustry%2CDebitorAccount%2CProperties1%2CProperties2%2CProperties3%2CU_ClienPadre%2CU_EMBAIDTM%2CValid%2CFrozen\u0026%24skip=120\u0026%24top=20 | Status: 200 | Duration: 123.6278ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:25 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#BusinessPartners\",\n \"value\" : [\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1161\",\n \"CardName\" : \"BEERTOWN\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"16796103012\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"jorgechazu.beertown@gmail.com\",\n \"CardForeignName\" : \"LUIS ARCELIO MORALES\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"1059\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1163\",\n \"CardName\" : \"Ariadna Communications Group\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"332098021\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"COMUNICACIONES ARIADNA BOLIVIA S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 24,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"1061\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1164\",\n \"CardName\" : \"CONSTRUCTORA MILANO S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"302288022\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"Empresa Constructora Milano Srl\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"1062\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1165\",\n \"CardName\" : \"Ericka Leyla Machicao Montaño\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"giovycampos73@gmail.com\",\n \"CardForeignName\" : \"Ericka Leyla Machicao Montaño\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 36,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"1063\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1166\",\n \"CardName\" : \"BDP Sociedad de Titularización\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"120791021\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"carlos.sanchez@bdpst.com.bo; christian.coca@bdpst.com.bo\",\n \"CardForeignName\" : \"BDP Sociedad de Titularización S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"1064\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"117\",\n \"CardName\" : \"MONOPOL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2180222\",\n \"FederalTaxID\" : \"1020525025\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"mlarrazabal@pinturasmonopol.com\",\n \"CardForeignName\" : \"MONOPOL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1170\",\n \"CardName\" : \"UCBVET\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"157958022.\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"CORPORACIÓN VETERINARIA CORVET S. R. L.\",\n \"DebitorAccount\" : \"112200001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 11,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"1068\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1172\",\n \"CardName\" : \"Luis Iturralde\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1006833024\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"mdavalos@kantutani.com; cgudino@kantutani.com\",\n \"CardForeignName\" : \"INMOBILIARIA KANTUTANI\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 36,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"1070\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1174\",\n \"CardName\" : \"Jacqueline Pinto Ramirez\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"7874942\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"Carlos Gordillo\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"1072\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1175\",\n \"CardName\" : \"Pio Rico SRL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"170242027\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"estadosfinancieros@piorico.com; gerentefinancierocontable@piorico.com\",\n \"CardForeignName\" : \"Pio Rico SRL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"1073\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1176\",\n \"CardName\" : \"COLSER LTDA.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"181838020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"marcelo.rodriguez@processmaker.com\",\n \"CardForeignName\" : \"COLSER LTDA.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 46,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"1074\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1177\",\n \"CardName\" : \"Rubens Ervin Gonzales Campero\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"5874998019\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"rubensg@monterreysrl.com.bo\",\n \"CardForeignName\" : \"Rubens Ervin Gonzales Campero\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 36,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"1075\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1178\",\n \"CardName\" : \"PROBRANDS BOLIVIA SRL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"331062026\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"PROBRANDS BOLIVIA SRL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 18,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"1076\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1179\",\n \"CardName\" : \"INDUSTRIA ALIMENTICIA MERAPA S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"325752027\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"INDUSTRIA ALIMENTICIA MERAPA S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 45,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"1077\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"118\",\n \"CardName\" : \"NACIONAL SEGUROS PATRIMONIALES Y FIANZAS S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"3716262\",\n \"FederalTaxID\" : \"145776027\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"wsuarez@nacionalseguros.com.bo; mrivero@nacionalseguros.com.bo; nestremadoiro@nacionalseguros.com.bo\",\n \"CardForeignName\" : \"NACIONAL SEGUROS PATRIMONIALES Y FIANZAS S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"465\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"1180\",\n \"CardName\" : \"Asisco SRL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"Asisco SRL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tNO\",\n \"Frozen\" : \"tYES\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"1078\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"119\",\n \"CardName\" : \"OPERADORA CARIBEÑA SRL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"3112518\",\n \"FederalTaxID\" : \"357257020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"recepcionfacturascz@mailcinecenter.com; ppaz@mailcinecenter.com; hmoreno@mailcinecenter.com\",\n \"CardForeignName\" : \"OPERADORA CARIBEÑA SRL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 13,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"480\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"120\",\n \"CardName\" : \"PEDIDOSYA SERVICIOS S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"29023359 ext 1208\",\n \"FederalTaxID\" : \"358245025\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"facturas.bolivia@pedidosya.com; legal.bolivia@pedidosya.com; noelia.tuero.ext@pedidosya.com\",\n \"CardForeignName\" : \"PEDIDOSYA SERVICIOS S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 12,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"493\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"121\",\n \"CardName\" : \"PLUSPETROL BOLIVIA CORPORATION S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"3594000\",\n \"FederalTaxID\" : \"1015459027\",\n \"Currency\" : \"USD\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"xtavera@pluspetrol.net\",\n \"CardForeignName\" : \"PLUSPETROL BOLIVIA CORPORATION S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tNO\",\n \"Frozen\" : \"tYES\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 7,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"506\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"122\",\n \"CardName\" : \"RODAMIENTIN - JAIME BENIGNO TORRICO ANTEZANA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"46663341\",\n \"FederalTaxID\" : \"2451920011\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"ventas@rodamientin.com\",\n \"CardForeignName\" : \"RODAMIENTIN - JAIME BENIGNO TORRICO ANTEZANA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tNO\",\n \"Frozen\" : \"tYES\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 14,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"534\"\n }\n ]\n}\n","time":"2025-07-30T10:48:25-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:25-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners?%24select=CardCode%2CCardName%2CCardForeignName%2CFederalTaxID%2CCurrency%2CCardType%2CGroupCode%2CPhone1%2CCellular%2CEmailAddress%2CIndustry%2CDebitorAccount%2CProperties1%2CProperties2%2CProperties3%2CU_ClienPadre%2CU_EMBAIDTM%2CValid%2CFrozen\u0026%24skip=140\u0026%24top=20 | Status: 200 | Duration: 130.2581ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:25 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#BusinessPartners\",\n \"value\" : [\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"123\",\n \"CardName\" : \"RODRIGO, ELÌAS \u0026 MEDRANO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"[+511] 619-1900\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"Fmolina@estudiorodrigo.com\",\n \"CardForeignName\" : \"RODRIGO, ELÌAS \u0026 MEDRANO\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tNO\",\n \"Frozen\" : \"tYES\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 18,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"536\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"125\",\n \"CardName\" : \"SILOS CORDOBA S.L. (SUCURSAL BOLIVIA)\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"54 911 541 36553\",\n \"FederalTaxID\" : \"333408029\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"federico@siloscordoba.com\",\n \"CardForeignName\" : \"SILOS CORDOBA S.L. (SUCURSAL BOLIVIA)\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tNO\",\n \"Frozen\" : \"tYES\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"562\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"126\",\n \"CardName\" : \"SOLARIS BOLIVIA SRL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"70454927 - 33448220\",\n \"FederalTaxID\" : \"369597029\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"jsuarez@pharmaris.com; cgonzales@emba.com.bo\",\n \"CardForeignName\" : \"SOLARIS BOLIVIA SRL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 26,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"572\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"127\",\n \"CardName\" : \"STE ENERGY SUCURSAL BOLIVIA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"56 2 29519262\",\n \"FederalTaxID\" : \"321194029\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"f.mery@ste-energy.com\",\n \"CardForeignName\" : \"STE ENERGY SUCURSAL BOLIVIA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tNO\",\n \"Frozen\" : \"tYES\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"576\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"128\",\n \"CardName\" : \"TEXTILES LAFAYETTE BOLIVIA S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"(57) 7 6300340\",\n \"FederalTaxID\" : \"860.001.965-7\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"ytorres@lafayette.com; gherrera@lafayette.com; recfacturae@lafayette.com\",\n \"CardForeignName\" : \"Textiles Lafayette S.A.S\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 4,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"592\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"129\",\n \"CardName\" : \"VALORIZA SERVICIOS MEDIOAMBIENTALES BOLIVIA S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"71844140\",\n \"FederalTaxID\" : \"295450029\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"javier.rios@sacyrbolivia.com; arnold.ticona@sacyrbolivia.com; carla.flores@sacyrbolivia.com\",\n \"CardForeignName\" : \"VALORIZA SERVICIOS MEDIOAMBIENTALES BOLIVIA S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"614\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"130\",\n \"CardName\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"5,26E+11\",\n \"FederalTaxID\" : \"355345029\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"VESTAS MEDITERRANEAN A/S SUCURSAL BOLIVIA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"618\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"131\",\n \"CardName\" : \"VOITH HYDRO LTDA. SUCURSAL BOLIVIA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"4532688\",\n \"FederalTaxID\" : \"316988023\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"thiago.tavares@voith.com\",\n \"CardForeignName\" : \"VOITH HYDRO LTDA. SUCURSAL BOLIVIA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tNO\",\n \"Frozen\" : \"tYES\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 9,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"625\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"132\",\n \"CardName\" : \"ZTE BOLIVIA S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2155700\",\n \"FederalTaxID\" : \"154370023\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"elu.shubiao@zte.com.cn\",\n \"CardForeignName\" : \"ZTE BOLIVIA S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tNO\",\n \"Frozen\" : \"tYES\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 10,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"644\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"133\",\n \"CardName\" : \"JAIME MARCELO TORRICO ESPEJO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"4327152\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"JAIME MARCELO TORRICO ESPEJO\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tNO\",\n \"Frozen\" : \"tYES\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"376\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"134\",\n \"CardName\" : \"TECHINT ING. Y CONST. BOLIVIA S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"3561291\",\n \"FederalTaxID\" : \"166524027\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"mdiaz@techint.com\",\n \"CardForeignName\" : \"TECHINT ING. Y CONST. BOLIVIA S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tNO\",\n \"Frozen\" : \"tYES\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"584\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"135\",\n \"CardName\" : \"PAN AMERICAN SILVER BOLIVIA S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"22 796990\",\n \"FederalTaxID\" : \"1002673025\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"arodriguez@bo.panamericansilver.com; ecayo@bo.panamericansilver.com\",\n \"CardForeignName\" : \"PAN AMERICAN SILVER BOLIVIA S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 8,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"487\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"136\",\n \"CardName\" : \"PRODUCTORA Y COMERCIALIZADORA DE CAFE AGRICAFE S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"75595905\",\n \"FederalTaxID\" : \"183546024\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"pedrorodriguez@agritrade.com.bo\",\n \"CardForeignName\" : \"PRODUCTORA Y COMERCIALIZADORA DE CAFE AGRICAFE S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"137\",\n \"CardName\" : \"FLUOR DANIEL SOUTH AMERICA LIMITED (SUC. BOLIVIA)\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"54-11-43237900\",\n \"FederalTaxID\" : \"1025759027\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"Ruben.Gajardo@fluor.com; luis.chavarria@sayc.com.bo; pablo.chacon@sayc.com.bo\",\n \"CardForeignName\" : \"FLUOR DANIEL SOUTH AMERICA LIMITED (SUC. BOLIVIA)\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"267\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"138\",\n \"CardName\" : \"AMADEUS BOLIVIA SRL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2434443\",\n \"FederalTaxID\" : \"124113021\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"diana.dibos@amadeus.com\",\n \"CardForeignName\" : \"AMADEUS BOLIVIA SRL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tNO\",\n \"Frozen\" : \"tYES\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 17,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"38\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"139\",\n \"CardName\" : \"SANTA MARIA FINANCIAL S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2752003\",\n \"FederalTaxID\" : \"1004109028\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"pablo.chacon@sayc.com.bo\",\n \"CardForeignName\" : \"SANTA MARIA FINANCIAL S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tNO\",\n \"Frozen\" : \"tYES\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"545\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"140\",\n \"CardName\" : \"AGRICOLA CAFETALERA BUENA VISTA S.A. AGRICABV S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"591-3-9233258\",\n \"FederalTaxID\" : \"120995021\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"pedrorodriguez@agritrade.com.bo\",\n \"CardForeignName\" : \"AGRICOLA CAFETALERA BUENA VISTA S.A. AGRICABV S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tNO\",\n \"Frozen\" : \"tYES\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"17\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"141\",\n \"CardName\" : \"GALAVISION S.R.L. CANAL 4 DE TELEVISIÓN\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"3524544\",\n \"FederalTaxID\" : \"1026519020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"carmen.quintana@redbolivision.tv.bo\",\n \"CardForeignName\" : \"GALAVISION S.R.L. CANAL 4 DE TELEVISIÓN\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tNO\",\n \"Frozen\" : \"tYES\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 33,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"283\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"142\",\n \"CardName\" : \"MARCONSULT BOLIVIA SRL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2432444\",\n \"FederalTaxID\" : \"1006129025\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"rperez.bolivia@marconsult-sidens.com\",\n \"CardForeignName\" : \"MARCONSULT BOLIVIA SRL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tNO\",\n \"Frozen\" : \"tYES\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 18,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"425\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"143\",\n \"CardName\" : \"JORGE HILTON PEÑA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"2016308011\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"JORGE HILTON PEÑA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:25-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:25-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners?%24select=CardCode%2CCardName%2CCardForeignName%2CFederalTaxID%2CCurrency%2CCardType%2CGroupCode%2CPhone1%2CCellular%2CEmailAddress%2CIndustry%2CDebitorAccount%2CProperties1%2CProperties2%2CProperties3%2CU_ClienPadre%2CU_EMBAIDTM%2CValid%2CFrozen\u0026%24skip=160\u0026%24top=20 | Status: 200 | Duration: 105.7717ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:25 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#BusinessPartners\",\n \"value\" : [\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"144\",\n \"CardName\" : \"RADIO CADENA NACIONAL S.R.L\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2409062\",\n \"FederalTaxID\" : \"128343023\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"juan.puna@redbolivision.tv.bo\",\n \"CardForeignName\" : \"RADIO CADENA NACIONAL S.R.L\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tNO\",\n \"Frozen\" : \"tYES\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 33,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"519\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"145\",\n \"CardName\" : \"NACIONAL SEGUROS VIDA Y SALUD S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"3716262\",\n \"FederalTaxID\" : \"1028483024\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"dpaz@nacionalseguros.com.bo; aperez@nacionalseguros.com.bo\",\n \"CardForeignName\" : \"NACIONAL SEGUROS VIDA Y SALUD S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"466\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"146\",\n \"CardName\" : \"ANTENA UNO CANAL 6 S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"4250661\",\n \"FederalTaxID\" : \"1020975023\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"mauricio.guitierrez@redbolivision.tv.bo\",\n \"CardForeignName\" : \"ANTENA UNO CANAL 6 S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tNO\",\n \"Frozen\" : \"tYES\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 33,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"48\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"147\",\n \"CardName\" : \"BISA SEGUROS Y REASEGUROS S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2177000\",\n \"FederalTaxID\" : \"1020655027\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"pespinoza@grupobisa.com\",\n \"CardForeignName\" : \"BISA SEGUROS Y REASEGUROS S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"148\",\n \"CardName\" : \"RAICES IMPORT EXPORT SRL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"333-4040\",\n \"FederalTaxID\" : \"1027943022\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"raices@cotas.com.bo\",\n \"CardForeignName\" : \"RAICES IMPORT EXPORT SRL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tNO\",\n \"Frozen\" : \"tYES\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 12,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"525\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"149\",\n \"CardName\" : \"JULIO ARCE\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"JULIO ARCE\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"150\",\n \"CardName\" : \"CONSTRUCCIONES Y SERVICIOS S\u0026Q SRL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2770251\",\n \"FederalTaxID\" : \"203446022\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"mario.suarezq@gmail.com\",\n \"CardForeignName\" : \"CONSTRUCCIONES Y SERVICIOS S\u0026Q SRL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tNO\",\n \"Frozen\" : \"tYES\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"150\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"151\",\n \"CardName\" : \"RADIO FIDES TRINIDAD S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"76200428\",\n \"FederalTaxID\" : \"1015833020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"trinidad@radiofides.com; charo@radiofides.com\",\n \"CardForeignName\" : \"RADIO FIDES TRINIDAD S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 33,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"523\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"152\",\n \"CardName\" : \"NELDY ANDRADE\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"469854\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"NELDY ANDRADE\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tNO\",\n \"Frozen\" : \"tYES\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"471\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"153\",\n \"CardName\" : \"BRINK'S BOLIVIA S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"3128400\",\n \"FederalTaxID\" : \"1028645025\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"anezs@brinksbolivia.com; Serranoje@brinksbolivia.com\",\n \"CardForeignName\" : \"BRINK'S BOLIVIA S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"104\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"154\",\n \"CardName\" : \"DRAGON ADMINISTRACION E INVERSIONES BOLIVIA S.A\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"4250661\",\n \"FederalTaxID\" : \"154794020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"mauricio.guitierrez@redbolivision.tv.bo\",\n \"CardForeignName\" : \"DRAGON ADMINISTRACION E INVERSIONES BOLIVIA S.A\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tNO\",\n \"Frozen\" : \"tYES\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 33,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"208\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"155\",\n \"CardName\" : \"DRAGON OPERADORA COMERCIAL EN TELECOMUNICACIONES S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"4250661\",\n \"FederalTaxID\" : \"162224029\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"mauricio.guitierrez@redbolivision.tv.bo\",\n \"CardForeignName\" : \"DRAGON OPERADORA COMERCIAL EN TELECOMUNICACIONES S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 33,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"156\",\n \"CardName\" : \"BISA S.A. AGENCIA DE BOLSA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2434515\",\n \"FederalTaxID\" : \"1006939024\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"tampuero@grupobisa.com\",\n \"CardForeignName\" : \"BISA S.A. AGENCIA DE BOLSA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tNO\",\n \"Frozen\" : \"tYES\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"91\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"157\",\n \"CardName\" : \"MANTENIMIENTO Y MONTAJE DE MAQUINARIA INDUSTRIAL MASA BOLIVIA S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2791554\",\n \"FederalTaxID\" : \"188660027\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"tmercado@emba.com.bo\",\n \"CardForeignName\" : \"MANTENIMIENTO Y MONTAJE DE MAQUINARIA INDUSTRIAL MASA BOLIVIA S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 15,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"158\",\n \"CardName\" : \"CASTELLANOS CONSTRUCCIONES S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"6637987\",\n \"FederalTaxID\" : \"142323028\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"castellanosconstrucciones@gmail.com\",\n \"CardForeignName\" : \"CASTELLANOS CONSTRUCCIONES S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"122\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"159\",\n \"CardName\" : \"AON BOLIVIA S.A. CORREDORES DE SEGUROS\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2790955\",\n \"FederalTaxID\" : \"1016477028\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"diegoblanco@aon.com\",\n \"CardForeignName\" : \"AON BOLIVIA S.A. CORREDORES DE SEGUROS\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"160\",\n \"CardName\" : \"BEJARANO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"3457394\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"BEJARANO\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"161\",\n \"CardName\" : \"DE LA FUENTE\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"2616704017\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"DE LA FUENTE\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"162\",\n \"CardName\" : \"ICA BOLIVIA S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2430038\",\n \"FederalTaxID\" : \"1017219026\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"gadministrativa@ica-bolivia.com\",\n \"CardForeignName\" : \"ICA BOLIVIA S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"163\",\n \"CardName\" : \"ARANIBAR\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"3388981010\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"marco_aranibar@yahoo.com\",\n \"CardForeignName\" : \"ARANIBAR\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 36,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"56\"\n }\n ]\n}\n","time":"2025-07-30T10:48:25-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:25-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners?%24select=CardCode%2CCardName%2CCardForeignName%2CFederalTaxID%2CCurrency%2CCardType%2CGroupCode%2CPhone1%2CCellular%2CEmailAddress%2CIndustry%2CDebitorAccount%2CProperties1%2CProperties2%2CProperties3%2CU_ClienPadre%2CU_EMBAIDTM%2CValid%2CFrozen\u0026%24skip=180\u0026%24top=20 | Status: 200 | Duration: 127.3304ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:25 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#BusinessPartners\",\n \"value\" : [\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"164\",\n \"CardName\" : \"ACADEMIA NACIONAL DE CIENCIAS JURIDICAS DE BOLIVIA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2379681\",\n \"FederalTaxID\" : \"1006509022\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"academia@aciencias.org.bo\",\n \"CardForeignName\" : \"ACADEMIA NACIONAL DE CIENCIAS JURIDICAS DE BOLIVIA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 27,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"165\",\n \"CardName\" : \"CRAMER BOLIVIA S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2441550\",\n \"FederalTaxID\" : \"138631021\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"cpenaloza@cramer.com.bo; mleigue@cramer.com.bo\",\n \"CardForeignName\" : \"CRAMER BOLIVIA S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 13,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"175\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"166\",\n \"CardName\" : \"HERNAN VERA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"HERNAN VERA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"167\",\n \"CardName\" : \"INVERMESA SOCIEDAD DE INVERSIONES EN MEDIOS S.A\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"3524544\",\n \"FederalTaxID\" : \"275924027\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"ceciliamontero@redbolivicion.tv.bo\",\n \"CardForeignName\" : \"INVERMESA SOCIEDAD DE INVERSIONES EN MEDIOS S.A\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 33,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"364\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"168\",\n \"CardName\" : \"AON SERVICE CORPORATION\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2790955\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"marta.carreira-slabe@aon.com\",\n \"CardForeignName\" : \"AON SERVICE CORPORATION\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"169\",\n \"CardName\" : \"INDATROP S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"4124576\",\n \"FederalTaxID\" : \"1009431026\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"oficina@indatrop.com\",\n \"CardForeignName\" : \"INDATROP S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"170\",\n \"CardName\" : \"HECTOR DANILO VASQUEZ GUTIERREZ\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"4939523\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"HECTOR DANILO VASQUEZ GUTIERREZ\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"171\",\n \"CardName\" : \"CARLOS VASQUEZ DARIMONT\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"CARLOS VASQUEZ DARIMONT\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"172\",\n \"CardName\" : \"SOCIEDAD INMOBILIARIA SNR S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"22791554\",\n \"FederalTaxID\" : \"327948023\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"rmb@emba.com.bo\",\n \"CardForeignName\" : \"SOCIEDAD INMOBILIARIA SNR S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 25,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"173\",\n \"CardName\" : \"METALES Y ACEROS BOLIVIANOS S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"3888152\",\n \"FederalTaxID\" : \"172888020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"sporra@metalesdeloriente.com\",\n \"CardForeignName\" : \"METALES Y ACEROS BOLIVIANOS S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"174\",\n \"CardName\" : \"HOTEL ROSARIO S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2451658\",\n \"FederalTaxID\" : \"1018207020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"auditoria@gruporosario.trale\",\n \"CardForeignName\" : \"HOTEL ROSARIO S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 17,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"175\",\n \"CardName\" : \"COMPAÑIA INTERNACIONAL DE SERVICIOS Y REPRESENTACIONES LTDA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2750487\",\n \"FederalTaxID\" : \"1016779029\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"finanzas@coinser.com\",\n \"CardForeignName\" : \"COMPAÑIA INTERNACIONAL DE SERVICIOS Y REPRESENTACIONES LTDA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 13,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"176\",\n \"CardName\" : \"RONDO (FECOTEL)\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2352006\",\n \"FederalTaxID\" : \"280608012\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"grondo.fecotel@gmail.com\",\n \"CardForeignName\" : \"RONDO (FECOTEL)\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 31,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"177\",\n \"CardName\" : \"ASTRONOM BOLIVIANA DE DESARROLLOS S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"ASTRONOM BOLIVIANA DE DESARROLLOS S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 25,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"178\",\n \"CardName\" : \"CONSTRUCTORA ORMACHEA SRL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2809165\",\n \"FederalTaxID\" : \"1000933025\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"jop53@hotmail.com\",\n \"CardForeignName\" : \"CONSTRUCTORA ORMACHEA SRL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"179\",\n \"CardName\" : \"BINBIT (BOLIVIA) SRL.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2112225\",\n \"FederalTaxID\" : \"157100021\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"lfernandez@binbit.com\",\n \"CardForeignName\" : \"BINBIT (BOLIVIA) SRL.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 10,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"180\",\n \"CardName\" : \"SONIA FALCONE\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"SONIA FALCONE\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"181\",\n \"CardName\" : \"IVESUR S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2441600\",\n \"FederalTaxID\" : \"304950028\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"info@ivesur.es\",\n \"CardForeignName\" : \"IVESUR S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 25,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"182\",\n \"CardName\" : \"GWB INVERSIONES S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2786527\",\n \"FederalTaxID\" : \"1006477020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"amtracbo@gmail.com\",\n \"CardForeignName\" : \"GWB INVERSIONES S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"183\",\n \"CardName\" : \"PRIMER ANILLO BIENES RAICES S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"351245023\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"c.h.fernandez@mac.com\",\n \"CardForeignName\" : \"PRIMER ANILLO BIENES RAICES S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 25,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:25-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:25-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners?%24select=CardCode%2CCardName%2CCardForeignName%2CFederalTaxID%2CCurrency%2CCardType%2CGroupCode%2CPhone1%2CCellular%2CEmailAddress%2CIndustry%2CDebitorAccount%2CProperties1%2CProperties2%2CProperties3%2CU_ClienPadre%2CU_EMBAIDTM%2CValid%2CFrozen\u0026%24skip=200\u0026%24top=20 | Status: 200 | Duration: 105.3626ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:25 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#BusinessPartners\",\n \"value\" : [\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"184\",\n \"CardName\" : \"COSIN SRL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2434242\",\n \"FederalTaxID\" : \"1006819024\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"info@grupocosin.com\",\n \"CardForeignName\" : \"COSIN SRL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 26,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"185\",\n \"CardName\" : \"CALZADA CONSTRUCCIONES S.A. DE C.V. SUCURSAL BOLIVIA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"318626028\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"sergiomiranda@gruporavi.com\",\n \"CardForeignName\" : \"CALZADA CONSTRUCCIONES S.A. DE C.V. SUCURSAL BOLIVIA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"186\",\n \"CardName\" : \"HALLIBURTON LATIN AMERICA S.R.L. (Sucursal Bolivia).\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"3127700\",\n \"FederalTaxID\" : \"1015569020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"cecilia.medrano@halliburton.com\",\n \"CardForeignName\" : \"HALLIBURTON LATIN AMERICA S.R.L. (Sucursal Bolivia).\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 7,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"313\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"187\",\n \"CardName\" : \"INDUSTRIAS AJEBOLIVIA S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"3469878\",\n \"FederalTaxID\" : \"199426022\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"lenny.duran.bo@grupoaje.com; francis.aguilera.bo@ajegroup.com; wilber.gutierrez.bo@ajegroup.com\",\n \"CardForeignName\" : \"INDUSTRIAS AJEBOLIVIA S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : -1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"350\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"188\",\n \"CardName\" : \"SIEMENS ENERGY S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"78511410\",\n \"FederalTaxID\" : \"146438029\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"se.facturasproveedores-bo@siemens-energy.com; facturacionelectronica.bo@siemens-energy.com\",\n \"CardForeignName\" : \"SIEMENS ENERGY S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 46,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"557\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"189\",\n \"CardName\" : \"TJC BOLIVIA S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"3331118\",\n \"FederalTaxID\" : \"1026901020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"andres.puentes@tjcbolivia.com\",\n \"CardForeignName\" : \"TJC BOLIVIA S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 4,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"595\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"190\",\n \"CardName\" : \"EMPRESA FORESTAL SIEMPRE BOSQUE S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"188898029\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"alejandro.grob@intlforestry.com\",\n \"CardForeignName\" : \"EMPRESA FORESTAL SIEMPRE BOSQUE S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 2,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"191\",\n \"CardName\" : \"HRS RELOCATION\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"77516120\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"any.urquidi@hrsrelocation.com\",\n \"CardForeignName\" : \"HRS RELOCATION\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 7,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"192\",\n \"CardName\" : \"TotalEnergies EP Bolivie Sucursal Bolivia\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"363 4500\",\n \"FederalTaxID\" : \"1028641023\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"cecilia.castillo@totalenergi.com\",\n \"CardForeignName\" : \"TotalEnergies EP Bolivie Sucursal Bolivia\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 7,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"600\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"193\",\n \"CardName\" : \"AGROREAL S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"3454371\",\n \"FederalTaxID\" : \"188182022\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"agrorealgerencia@cotas.com.bo\",\n \"CardForeignName\" : \"AGROREAL S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"194\",\n \"CardName\" : \"ASOCIACION DE COPROPIETARIOS DE LA TORRE INSTITUCIONAL - CAINCO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"adm_cainco@aclelerate.com\",\n \"CardForeignName\" : \"ASOCIACION DE COPROPIETARIOS DE LA TORRE INSTITUCIONAL - CAINCO\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 31,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"195\",\n \"CardName\" : \"SABORES BOLIVIANOS ALEMANES S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"76604937\",\n \"FederalTaxID\" : \"251644025\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"guido.muehr@sba.bo; contabilidad@sba.bo; dexter.espinoza@sba.bo\",\n \"CardForeignName\" : \"SABORES BOLIVIANOS ALEMANES S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : -1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"540\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"197\",\n \"CardName\" : \"NOV DOWNHOLE BOLIVIA S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"3524107\",\n \"FederalTaxID\" : \"1015299026\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"karina.pilon@nov.com\",\n \"CardForeignName\" : \"NOV DOWNHOLE BOLIVIA S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 7,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"198\",\n \"CardName\" : \"TYPSA - TECNICA Y PROYECTOS S.A., SUCURSAL BOLIVIA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"123123123\",\n \"FederalTaxID\" : \"1026735026\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"maolguin@typsa.es\",\n \"CardForeignName\" : \"TYPSA - TECNICA Y PROYECTOS S.A., SUCURSAL BOLIVIA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 12,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"199\",\n \"CardName\" : \"KIMBERLY BOLIVIA S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"3465159\",\n \"FederalTaxID\" : \"1028633023\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"rene.A.Abrego@kcc.com\",\n \"CardForeignName\" : \"KIMBERLY BOLIVIA S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 13,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"200\",\n \"CardName\" : \"HOGAR TERESA DE LOS ANDES\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"3882201\",\n \"FederalTaxID\" : \"135257027\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"faustoalejandro09@hotmail.com\",\n \"CardForeignName\" : \"HOGAR TERESA DE LOS ANDES\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 31,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"201\",\n \"CardName\" : \"INDUSTRIAS CORPORACION DIRECTO S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"71645500\",\n \"FederalTaxID\" : \"168372020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"rbarbery@directo.com.bo\",\n \"CardForeignName\" : \"INDUSTRIAS CORPORACION DIRECTO S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 13,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"202\",\n \"CardName\" : \"WARTSILA ARGENTINA S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"+ 54 11 4555 1331\",\n \"FederalTaxID\" : \"202\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"johanna.arzadun@wartsila.com\",\n \"CardForeignName\" : \"WARTSILA ARGENTINA S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 7,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"203\",\n \"CardName\" : \"TRANSBEL S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"3142500\",\n \"FederalTaxID\" : \"1028501021\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"anbustamante@belcorp.biz\",\n \"CardForeignName\" : \"TRANSBEL S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 5,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"204\",\n \"CardName\" : \"BIOPAS LABORATORIO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"146562020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"fsiredeyolivares@gmail.com\",\n \"CardForeignName\" : \"BIOPAS LABORATORIO\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 26,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:25-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:25-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners?%24select=CardCode%2CCardName%2CCardForeignName%2CFederalTaxID%2CCurrency%2CCardType%2CGroupCode%2CPhone1%2CCellular%2CEmailAddress%2CIndustry%2CDebitorAccount%2CProperties1%2CProperties2%2CProperties3%2CU_ClienPadre%2CU_EMBAIDTM%2CValid%2CFrozen\u0026%24skip=220\u0026%24top=20 | Status: 200 | Duration: 104.1859ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:25 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#BusinessPartners\",\n \"value\" : [\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"205\",\n \"CardName\" : \"MARTIN RAPP\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"13508454\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"MARTIN RAPP\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"206\",\n \"CardName\" : \"COTINAVEC BOL, MONTAJES Y CONSTRUCCIONES S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"3529270\",\n \"FederalTaxID\" : \"237900025\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"roxana.canido@bolinter.com\",\n \"CardForeignName\" : \"COTINAVEC BOL, MONTAJES Y CONSTRUCCIONES S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"207\",\n \"CardName\" : \"DOLLY CASSAL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1826330018\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"DOLLY CASSAL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"208\",\n \"CardName\" : \"GABRIELA TORREZ ALE\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"5020109\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"GABRIELA TORREZ ALE\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"209\",\n \"CardName\" : \"MARIA TERESA PRIETO YUCRA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1609946\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"MARIA TERESA PRIETO YUCRA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"210\",\n \"CardName\" : \"IMPORTADORA MORALES LTDA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"4 6644328\",\n \"FederalTaxID\" : \"134601022\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"info@moralesltda.com\",\n \"CardForeignName\" : \"IMPORTADORA MORALES LTDA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 13,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"211\",\n \"CardName\" : \"JAVIER FRANCISCO IRADY ROMERO (CAIGUAMI SRL)\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"46722353\",\n \"FederalTaxID\" : \"1028943011\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"usuario@ejemplo.com\",\n \"CardForeignName\" : \"JAVIER FRANCISCO IRADY ROMERO (CAIGUAMI SRL)\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 7,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"212\",\n \"CardName\" : \"YASMANI ESTIVEN BALANZA MIRANDA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"5055541015\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"YASMANI ESTIVEN BALANZA MIRANDA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"214\",\n \"CardName\" : \"MATOSCA SOLAR BOLIVIA S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"333098029\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"MATOSCA SOLAR BOLIVIA S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"215\",\n \"CardName\" : \"PAULA ZAMORA COLODRO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"PAULA ZAMORA COLODRO\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"216\",\n \"CardName\" : \"EMBAJADA AMERICANA EN BOLIVIA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2 2168000\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"LaPazFMOFacturas@state.gov\",\n \"CardForeignName\" : \"EMBAJADA AMERICANA EN BOLIVIA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 31,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"217\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"217\",\n \"CardName\" : \"NATIONAL OILWELL VARCO DE BOLIVIA S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"3476887\",\n \"FederalTaxID\" : \"1015167028\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"WF-BOL-FacturacionElectronica@nov.com; Mariela.Suarez@nov.com; Fabiola.Carrion@nov.com\",\n \"CardForeignName\" : \"NATIONAL OILWELL VARCO DE BOLIVIA S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 7,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"469\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"218\",\n \"CardName\" : \"The Church of Jesus Christ of Latter-day Saints (a Utah corporation sole)\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"0051-1-3177092\",\n \"FederalTaxID\" : \"00 99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"MoscosoKA@ldschurch.org; altamiranoca@ChurchofJesusChrist.org; kevin.ponce@churchofjesuschrist.org\",\n \"CardForeignName\" : \"The Church of Jesus Christ of Latter-day Saints (a Utah corporation sole)\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 31,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"169\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"219\",\n \"CardName\" : \"INGVAR ELLEFSEN\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"76201369\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"INGVAR ELLEFSEN\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 36,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"220\",\n \"CardName\" : \"Mediterranean Shippig Company (Bolivia) Limitada\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2126610\",\n \"FederalTaxID\" : \"1020173028\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"ingrid.arce@msc.com\",\n \"CardForeignName\" : \"Mediterranean Shippig Company (Bolivia) Limitada\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 12,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"443\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"221\",\n \"CardName\" : \"CORSAN CORVIAM CONSTRUCCION S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99011\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"efernandez@isoluxcorsan.com\",\n \"CardForeignName\" : \"CORSAN CORVIAM CONSTRUCCION S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"170\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"222\",\n \"CardName\" : \"CONSTRUCOES E COMERCIO CAMARGO CORREA S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"2750148\",\n \"FederalTaxID\" : \"1001443027\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"eduardo@paesbarros.pe\",\n \"CardForeignName\" : \"CONSTRUCOES E COMERCIO CAMARGO CORREA S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"223\",\n \"CardName\" : \"CARLOS MORALES\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"77292236\",\n \"FederalTaxID\" : \"122779024\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"cmorales@delcosur.com\",\n \"CardForeignName\" : \"CARLOS MORALES\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 36,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"118\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"224\",\n \"CardName\" : \"RICHLINE GROUP, INC.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"954-718-3200\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"USD\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"amorenog@emba.com.bo\",\n \"CardForeignName\" : \"RICHLINE GROUP, INC.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"225\",\n \"CardName\" : \"AMAZON\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"+44 20 7296 2409\",\n \"FederalTaxID\" : \"225\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"maria.sowinska@hoganlovells.com\",\n \"CardForeignName\" : \"AMAZON\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 13,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:25-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:26-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners?%24select=CardCode%2CCardName%2CCardForeignName%2CFederalTaxID%2CCurrency%2CCardType%2CGroupCode%2CPhone1%2CCellular%2CEmailAddress%2CIndustry%2CDebitorAccount%2CProperties1%2CProperties2%2CProperties3%2CU_ClienPadre%2CU_EMBAIDTM%2CValid%2CFrozen\u0026%24skip=240\u0026%24top=20 | Status: 200 | Duration: 97.3265ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:26 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#BusinessPartners\",\n \"value\" : [\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"226\",\n \"CardName\" : \"Dispak S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"3473030\",\n \"FederalTaxID\" : \"12341234\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"jpsaavedra@dispack.com.bo\",\n \"CardForeignName\" : \"Dispak S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 13,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"197\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"227\",\n \"CardName\" : \"SUPER MERCADO AMERICA S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"4 4249127\",\n \"FederalTaxID\" : \"1008565022\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"atorrez@supermercadoamerica.com.bo\",\n \"CardForeignName\" : \"SUPER MERCADO AMERICA S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 13,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"228\",\n \"CardName\" : \"WE WORK\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"228\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"jaime.orvananos@wework.com\",\n \"CardForeignName\" : \"WE WORK\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 25,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"229\",\n \"CardName\" : \"DACAS BOLIVIA S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"3226777\",\n \"FederalTaxID\" : \"309230020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"diego@dacas.com\",\n \"CardForeignName\" : \"DACAS BOLIVIA S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 15,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"230\",\n \"CardName\" : \"AGROCERES MULTIMIX NUTRICAO ANIMAL LTDA.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"55 19 3526-8658\",\n \"FederalTaxID\" : \"230\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"guilherme.schrank@agroceres.com\",\n \"CardForeignName\" : \"AGROCERES MULTIMIX NUTRIÇAO ANIMAL LTDA.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tNO\",\n \"Frozen\" : \"tYES\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"231\",\n \"CardName\" : \"EMPRESA DE TRANSPORTE DE VALORES\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"72006219\",\n \"FederalTaxID\" : \"177458029\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"CarlosA@etv.com.bo\",\n \"CardForeignName\" : \"EMPRESA DE TRANSPORTE DE VALORES\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"232\",\n \"CardName\" : \"COLEGIO CARDENAL CUSHING\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"3323474\",\n \"FederalTaxID\" : \"1028513027\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"dccushing1969@gmail.com\",\n \"CardForeignName\" : \"COLEGIO CARDENAL CUSHING\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 27,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"233\",\n \"CardName\" : \"REPSOL EXPLIORACION ATLAS SA SUCURSAL BOLIVIA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"3660000\",\n \"FederalTaxID\" : \"1028549026\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"jbrinckhauso@repsol.com\",\n \"CardForeignName\" : \"REPSOL EXPLIORACION ATLAS SA SUCURSAL BOLIVIA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 7,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"234\",\n \"CardName\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"78511408\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 46,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"559\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"235\",\n \"CardName\" : \"MB SERVICIOS REGULATORIOS SRL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2791554\",\n \"FederalTaxID\" : \"376769024\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"fsanchez@emba.com.bo\",\n \"CardForeignName\" : \"MB SERVICIOS REGULATORIOS SRL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 18,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"440\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"236\",\n \"CardName\" : \"SPC Impresores S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2111121\",\n \"FederalTaxID\" : \"1029191028\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"smarca@spc.net.bo\",\n \"CardForeignName\" : \"SPC Impresores S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 44,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"575\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"237\",\n \"CardName\" : \"TIGO - Telefónica Celular de Bolivia S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"3365003\",\n \"FederalTaxID\" : \"1020255020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"sanchezju@tigo.net.bo\",\n \"CardForeignName\" : \"TIGO - Telefónica Celular de Bolivia S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 10,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"594\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"239\",\n \"CardName\" : \"AGROGRAIN LIMITED SUCURSAL URUGUAY\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"598 99594322\",\n \"FederalTaxID\" : \"239\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"Florencia.Mendez@adm.com; Alejandra.Tuduri@adm.com; UYINVOICES@adm.com; Virginia.Antelo@adm.com;\",\n \"CardForeignName\" : \"AGROGRAIN LIMITED SUCURSAL URUGUAY\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"21\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"240\",\n \"CardName\" : \"360 CONSULTING GROUP\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2912757\",\n \"FederalTaxID\" : \"352164024\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"audit_nestor@outlook.com\",\n \"CardForeignName\" : \"360 CONSULTING GROUP\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 18,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"241\",\n \"CardName\" : \"FABRICA NACIONAL DE CEMENTO S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"3581301\",\n \"FederalTaxID\" : \"16259020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"f.mirandarodriguez@fancesa.com\",\n \"CardForeignName\" : \"FABRICA NACIONAL DE CEMENTO S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"242\",\n \"CardName\" : \"ALIMENTO SOCIEDAD ANOMINA ALSA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"3477771\",\n \"FederalTaxID\" : \"1027853022\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"earce@alsa-clarabella.com\",\n \"CardForeignName\" : \"ALIMENTO SOCIEDAD ANOMINA ALSA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : -1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"34\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"243\",\n \"CardName\" : \"FABER CASTELL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"+55 16 21061452\",\n \"FederalTaxID\" : \"20100050359\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"FABER CASTELL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 13,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"246\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"244\",\n \"CardName\" : \"FEDERACION DE EMPRESARIOS PRIVADOS DE TARIJA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"6668353\",\n \"FederalTaxID\" : \"224408025\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"contacto@fept.org\",\n \"CardForeignName\" : \"FEDERACION DE EMPRESARIOS PRIVADOS DE TARIJA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 31,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"245\",\n \"CardName\" : \"SAMSUNG E\u0026A BOLIVIA S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"71650135\",\n \"FederalTaxID\" : \"198702026\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"e.rivamontan@samsung.com; karen.ortiz@samsung.com\",\n \"CardForeignName\" : \"SAMSUNG E\u0026A BOLIVIA S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 10,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"542\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"246\",\n \"CardName\" : \"CONFITERIA ELI’S LTDA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2310506\",\n \"FederalTaxID\" : \"1020413025\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"n_inquillo@pizzaelis.com\",\n \"CardForeignName\" : \"CONFITERIA ELI’S LTDA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 45,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:26-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:26-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners?%24select=CardCode%2CCardName%2CCardForeignName%2CFederalTaxID%2CCurrency%2CCardType%2CGroupCode%2CPhone1%2CCellular%2CEmailAddress%2CIndustry%2CDebitorAccount%2CProperties1%2CProperties2%2CProperties3%2CU_ClienPadre%2CU_EMBAIDTM%2CValid%2CFrozen\u0026%24skip=260\u0026%24top=20 | Status: 200 | Duration: 83.4482ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:26 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#BusinessPartners\",\n \"value\" : [\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"247\",\n \"CardName\" : \"BTESA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"34 913274363\",\n \"FederalTaxID\" : \"247\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"d.munoz@btesa.com\",\n \"CardForeignName\" : \"BTESA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 10,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"248\",\n \"CardName\" : \"AMERFACHADAS CONSTRUCCIONES\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"76012166\",\n \"FederalTaxID\" : \"248\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"joseluismartin@despacho-de-abogados.com\",\n \"CardForeignName\" : \"AMERFACHADAS CONSTRUCCIONES\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"40\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"249\",\n \"CardName\" : \"PECOM SERVICIOS ENERGIA S.A. (SUCURSAL BOLIVIA)\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"3559595\",\n \"FederalTaxID\" : \"1028355021\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"oscar.ortiz@pecomenergia.com.bo; Darinca.Paz@pecomenergia.com.bo; contabilidad@emba.com.bo\",\n \"CardForeignName\" : \"PECOM SERVICIOS ENERGIA S.A.U. SUCURSAL BOLIVIA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 7,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"100\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"250\",\n \"CardName\" : \"AGRONEGOCIOS LASCOT S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"76001776\",\n \"FederalTaxID\" : \"351734024\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"jllandivarb@gmail.com; sergiolandivarscott@gmail.com; javierterrazas.712@gmail.com\",\n \"CardForeignName\" : \"AGRONEGOCIOS LASCOT S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"22\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"251\",\n \"CardName\" : \"YPO BOLIVIA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"76385900\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"USD\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"sashamostajo@gmail.com\",\n \"CardForeignName\" : \"YPO BOLIVIA\",\n \"DebitorAccount\" : \"112200002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 31,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"252\",\n \"CardName\" : \"Banco Nacional de Bolivia S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2313232\",\n \"FederalTaxID\" : \"1016253021\",\n \"Currency\" : \"BS\",\n \"Cellular\" : \"MiTorrez@bnb.com.bo\",\n \"EmailAddress\" : \"MiTorrez@bnb.com.bo; arielt@emba.com.bo\",\n \"CardForeignName\" : \"Banco Nacional de Bolivia S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"72\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"253\",\n \"CardName\" : \"Antonio Portugal\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"76570109\",\n \"FederalTaxID\" : \"3431908\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"antonio.portugal@quan.bo\",\n \"CardForeignName\" : \"Antonio Portugal\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 36,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"49\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"254\",\n \"CardName\" : \"VERTIV CONO SUR LTDA.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"56227290600\",\n \"FederalTaxID\" : \"254\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"asotomayor@porzio.cl\",\n \"CardForeignName\" : \"VERTIV CONO SUR LTDA.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 46,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"255\",\n \"CardName\" : \"YANAPA - PERCY MANRIQUEZ\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"75267277\",\n \"FederalTaxID\" : \"6100847011\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"dg772@hotmail.com\",\n \"CardForeignName\" : \"YANAPA - PERCY MANRIQUEZ\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 13,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"256\",\n \"CardName\" : \"PFENNINGER BOLIVIA S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"3447593\",\n \"FederalTaxID\" : \"198100026\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"jps@pfenninger.com.bo\",\n \"CardForeignName\" : \"PFENNINGER BOLIVIA S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"257\",\n \"CardName\" : \"IMOCERT LTDA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"71403629\",\n \"FederalTaxID\" : \"1020951023\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"ggarcia@imocert.bio\",\n \"CardForeignName\" : \"IMOCERT LTDA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 18,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"258\",\n \"CardName\" : \"INDUSTRIAS SALADILLO S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"0054 11 4793-0700\",\n \"FederalTaxID\" : \"258\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"imandel@industriassaladillo.com.ar\",\n \"CardForeignName\" : \"INDUSTRIAS SALADILLO S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tNO\",\n \"Frozen\" : \"tYES\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"259\",\n \"CardName\" : \"FUNDACION SPARKASSENSTIFTUNG\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2 2443504\",\n \"FederalTaxID\" : \"371327024\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"Guillermo.Sempertegui@sparkassenstiftung.de\",\n \"CardForeignName\" : \"FUNDACION SPARKASSENSTIFTUNG\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 31,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"279\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"260\",\n \"CardName\" : \"FUNDACION EDUCATIVA Y CULTURAL – C.B.A. TJA.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"66 - 48626\",\n \"FederalTaxID\" : \"1024237020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"oportunidades@cba.org.bo\",\n \"CardForeignName\" : \"FUNDACION EDUCATIVA Y CULTURAL – C.B.A. TJA.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 31,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"261\",\n \"CardName\" : \"FEDERACION DE CENTROS BINACIONALES DE BOLIVIA – FEBI\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"66 - 48626\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"hugosuareztarija@gmail.com\",\n \"CardForeignName\" : \"FEDERACION DE CENTROS BINACIONALES DE BOLIVIA – FEBI\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 31,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"262\",\n \"CardName\" : \"TELXIUS CABLE BOLIVIA S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"3419565\",\n \"FederalTaxID\" : \"353561025\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"lucia.escobar@hoganlovells.com\",\n \"CardForeignName\" : \"TELXIUS CABLE BOLIVIA S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 33,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"263\",\n \"CardName\" : \"PHISIOBASIC- SERGIO GUZMAN GALVEZ\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"76906776\",\n \"FederalTaxID\" : \"6484274010\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"administracion@phisiobasic.com\",\n \"CardForeignName\" : \"PHISIOBASIC- SERGIO GUZMAN GALVEZ\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 13,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"264\",\n \"CardName\" : \"LA VITALICIA SEGUROS Y REASEGUROS DE VIDA S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2157800\",\n \"FederalTaxID\" : \"1020687029\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"mlimachi@grupobisa.com\",\n \"CardForeignName\" : \"LA VITALICIA SEGUROS Y REASEGUROS DE VIDA S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"265\",\n \"CardName\" : \"NUC ADVISOR\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2791554\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"darredondo@emba.com.bo\",\n \"CardForeignName\" : \"NUC ADVISOR\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 18,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"267\",\n \"CardName\" : \"BANCO DE DESARROLLO PRODUCTIVO SOCIEDAD ANONIMA MIXTA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2157171\",\n \"FederalTaxID\" : \"1020589022\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"ariel.zabala@bdp.com.bo\",\n \"CardForeignName\" : \"BANCO DE DESARROLLO PRODUCTIVO SOCIEDAD ANONIMA MIXTA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:26-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:26-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners?%24select=CardCode%2CCardName%2CCardForeignName%2CFederalTaxID%2CCurrency%2CCardType%2CGroupCode%2CPhone1%2CCellular%2CEmailAddress%2CIndustry%2CDebitorAccount%2CProperties1%2CProperties2%2CProperties3%2CU_ClienPadre%2CU_EMBAIDTM%2CValid%2CFrozen\u0026%24skip=280\u0026%24top=20 | Status: 200 | Duration: 99.9472ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:26 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#BusinessPartners\",\n \"value\" : [\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"268\",\n \"CardName\" : \"FABER CASTELL PERÚ\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"20100050359\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"Melissa.Zerpa@faber-castell.com.pe\",\n \"CardForeignName\" : \"FABER CASTELL PERÚ\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 13,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"247\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"269\",\n \"CardName\" : \"GRANJA AVICOLA INTEGRAL SOFIA LTDA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"346 2717 Int 1420 C\",\n \"FederalTaxID\" : \"1028779020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"cmendoza@avicolasofia.com\",\n \"CardForeignName\" : \"GRANJA AVICOLA INTEGRAL SOFIA LTDA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : -1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"297\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"270\",\n \"CardName\" : \"BLOCCREATIVO S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"65172867\",\n \"FederalTaxID\" : \"371113020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"bloccreativo@gmail.com\",\n \"CardForeignName\" : \"BLOCCREATIVO S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 27,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"95\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"271\",\n \"CardName\" : \"FUTURO DE BOLIVIA S.A. ADM. FONDOS PENSIONES\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2912929\",\n \"FederalTaxID\" : \"1006803028\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"cduarte@afp-futuro.com.bo\",\n \"CardForeignName\" : \"FUTURO DE BOLIVIA S.A. ADM. FONDOS PENSIONES\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"272\",\n \"CardName\" : \"REPSOL E\u0026P BOLIVIA SA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1027373022\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"rmb@emba.com.bo\",\n \"CardForeignName\" : \"REPSOL E\u0026P BOLIVIA SA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 7,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"273\",\n \"CardName\" : \"UPM SALES OY\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"+358 2041 48070\",\n \"FederalTaxID\" : \"273\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"daniela.siegismund@upm.com\",\n \"CardForeignName\" : \"UPM SALES OY\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 44,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"274\",\n \"CardName\" : \"OSCAR OLMOS\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"72135395\",\n \"FederalTaxID\" : \"1987469\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"cotoelata@hotmail.com\",\n \"CardForeignName\" : \"Oscar Hugo Olmos Menacho\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 36,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"481\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"275\",\n \"CardName\" : \"ALTRAN\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"+34 93 272 3220 - Ex\",\n \"FederalTaxID\" : \"B-80428972\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"alberto.recoder@altran.com\",\n \"CardForeignName\" : \"ALTRAN\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"276\",\n \"CardName\" : \"Maria Belen Arias Suarez\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"75022588\",\n \"FederalTaxID\" : \"4560821\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"mabelenarias@gmail.com; jarias@laestrella.com.bo\",\n \"CardForeignName\" : \"Maria Belen Arias Suarez\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 36,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"427\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"277\",\n \"CardName\" : \"PREMIER INTERNACIONAL S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"4797000\",\n \"FederalTaxID\" : \"1020905022\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"amilicovsky@premier-internacional.com\",\n \"CardForeignName\" : \"PREMIER INTERNACIONAL S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 13,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"278\",\n \"CardName\" : \"EMPACAR S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"3 346 5525 - 306 Cel\",\n \"FederalTaxID\" : \"1028123025\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"climpias@empacar.com.bo; lrocabado@empacar.com.bo\",\n \"CardForeignName\" : \"EMPACAR S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : -1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"224\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"279\",\n \"CardName\" : \"ALEJANDRO BETANCOURT\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"69053734\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"abetancourt@dispack.com.bo\",\n \"CardForeignName\" : \"ALEJANDRO BETANCOURT\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 36,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"280\",\n \"CardName\" : \"IDOM\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"+57 312 655 3067 / T\",\n \"FederalTaxID\" : \"280\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"jose.lineros@idom.com\",\n \"CardForeignName\" : \"IDOM\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 46,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"337\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"281\",\n \"CardName\" : \"HECTOR VASQUEZ\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"76750713\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"hvasquez@acergal.com\",\n \"CardForeignName\" : \"HECTOR VASQUEZ\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"282\",\n \"CardName\" : \"HARD ROCK INTERNATIONAL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"Phone: +1-954-488-78\",\n \"FederalTaxID\" : \"282\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"Eusebio_PeraltaMartinez@hardrock.com\",\n \"CardForeignName\" : \"HARD ROCK INTERNATIONAL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"283\",\n \"CardName\" : \"INTERLOGISTIK SERVICIOS S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"78240304\",\n \"FederalTaxID\" : \"382425022\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"fernandezirina95@gmail.com\",\n \"CardForeignName\" : \"INTERLOGISTIK SERVICIOS S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 12,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"284\",\n \"CardName\" : \"KAMPO BOLIVIA S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2125199\",\n \"FederalTaxID\" : \"257022027\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"mjemio@emba.com.bo\",\n \"CardForeignName\" : \"KAMPO BOLIVIA S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 18,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"285\",\n \"CardName\" : \"HAZAMA ANDO CORPORATION\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"72222343\",\n \"FederalTaxID\" : \"285\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"ncortezq@emba.com.bo\",\n \"CardForeignName\" : \"HAZAMA ANDO CORPORATION\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"316\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"286\",\n \"CardName\" : \"DR. AZ GROUP CO. LTD\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"8,62E+12\",\n \"FederalTaxID\" : \"286\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"sddraz@163.com\",\n \"CardForeignName\" : \"DR. AZ GROUP CO. LTD\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"287\",\n \"CardName\" : \"FERNANDO TERAN VARGAS\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"78523000\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"f.vargas@gmail.com\",\n \"CardForeignName\" : \"FERNANDO TERAN VARGAS\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 36,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:26-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:26-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners?%24select=CardCode%2CCardName%2CCardForeignName%2CFederalTaxID%2CCurrency%2CCardType%2CGroupCode%2CPhone1%2CCellular%2CEmailAddress%2CIndustry%2CDebitorAccount%2CProperties1%2CProperties2%2CProperties3%2CU_ClienPadre%2CU_EMBAIDTM%2CValid%2CFrozen\u0026%24skip=300\u0026%24top=20 | Status: 200 | Duration: 108.6973ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:26 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#BusinessPartners\",\n \"value\" : [\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"288\",\n \"CardName\" : \"BROADTEL BOLIVIA S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"34913274363\",\n \"FederalTaxID\" : \"382095023\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"d.munoz@btesa.com\",\n \"CardForeignName\" : \"BROADTEL BOLIVIA S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 10,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"105\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"289\",\n \"CardName\" : \"IMPEXPAP\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2424243\",\n \"FederalTaxID\" : \"170358027\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"oscar.zaballa@impexpap.com\",\n \"CardForeignName\" : \"IMPEXPAP\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 44,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"290\",\n \"CardName\" : \"AGRO JAL S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"3450172-3437127\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"jllandivarb@gmail.com\",\n \"CardForeignName\" : \"AGRO JAL S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"291\",\n \"CardName\" : \"MBINMOBILIARIA S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"3353515\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"lmorenog@emba.com.bo\",\n \"CardForeignName\" : \"MBINMOBILIARIA S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 25,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"441\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"292\",\n \"CardName\" : \"INVITAR S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"3353515\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"lmorenog@emba.com.bo\",\n \"CardForeignName\" : \"INVITAR S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : -1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"367\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"293\",\n \"CardName\" : \"ASOCIACION CIVIL PISTA 8\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"75304840\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"viviana@pista8.com\",\n \"CardForeignName\" : \"ASOCIACION CIVIL PISTA 8\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 31,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"294\",\n \"CardName\" : \"MARGA JULIE LUX\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"4,91E+11\",\n \"FederalTaxID\" : \"294\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"rmb@emba.com.bo\",\n \"CardForeignName\" : \"MARGA JULIE LUX\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 36,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"295\",\n \"CardName\" : \"JUAN CARLOS SALVATIERRA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"7777777\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"chavo_mx1@hotmail.com\",\n \"CardForeignName\" : \"JUAN CARLOS SALVATIERRA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 36,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"296\",\n \"CardName\" : \"ANDEAN BIO NATURALS S.A.C.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"+51 914-035-857\",\n \"FederalTaxID\" : \"296\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"Curt.Schwarz@andennat.com\",\n \"CardForeignName\" : \"ANDEAN BIO NATURALS S.A.C.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 11,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"298\",\n \"CardName\" : \"COMPASS MINERALS\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"+55 11 3016-9552\",\n \"FederalTaxID\" : \"298\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"leandro.menze@compassminerals.com.br\",\n \"CardForeignName\" : \"COMPASS MINERALS\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 8,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"299\",\n \"CardName\" : \"LH COREA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"Bolivia Mobile +591\",\n \"FederalTaxID\" : \"299\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"chseo@lh.or.kr\",\n \"CardForeignName\" : \"LH COREA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 25,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"300\",\n \"CardName\" : \"PIL ANDINA S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"3451271\",\n \"FederalTaxID\" : \"1020757027\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"fvillarroel@pilandina.com.bo; recepcionfacturaselectronicas@pilandina.com.bo\",\n \"CardForeignName\" : \"PIL ANDINA S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : -1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"501\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"301\",\n \"CardName\" : \"ITALIAN CITIZENSHIP ASSISTANCE - ICA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"+1 (323) 892-0861\",\n \"FederalTaxID\" : \"301\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"martina@italiancitizenshipassistance.com\",\n \"CardForeignName\" : \"ITALIAN CITIZENSHIP ASSISTANCE - ICA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 18,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"302\",\n \"CardName\" : \"CONSTRUCTORA COMERCIAL ARAUCARIA S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"72220212\",\n \"FederalTaxID\" : \"183614026\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"gerencia@gcs-ea.com\",\n \"CardForeignName\" : \"CONSTRUCTORA COMERCIAL ARAUCARIA S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"152\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"303\",\n \"CardName\" : \"TORRE PACIFICO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"71547762\",\n \"FederalTaxID\" : \"99002\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"grosazza@bmcs.com.bo; mvidez@emba.com.bo; rcardozo@emba.com.bo\",\n \"CardForeignName\" : \"TORRE PACIFICO\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 25,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"599\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"304\",\n \"CardName\" : \"FABRICIO RIVAS\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"fabricio.rivas@exed.incae.edu\",\n \"CardForeignName\" : \"FABRICIO RIVAS\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 13,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"305\",\n \"CardName\" : \"TEPROVID SRL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2445005\",\n \"FederalTaxID\" : \"351612028\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"teprovidinfo@gmail.com\",\n \"CardForeignName\" : \"TEPROVID SRL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 46,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"306\",\n \"CardName\" : \"ACI Systems Alemania GmbH Sucursal Bolivia\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"3224848\",\n \"FederalTaxID\" : \"373868027\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"jose.taborga@kaiserbo.com\",\n \"CardForeignName\" : \"ACI Systems Alemania GmbH Sucursal Bolivia\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tNO\",\n \"Frozen\" : \"tYES\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 9,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"6\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"307\",\n \"CardName\" : \"LA BOLIVIANA CIACRUZ DE SEGUROS Y REASEGUROS S.A. (LBC)\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2203806\",\n \"FederalTaxID\" : \"1007017028\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"laurden.bertaux@lbc.bo\",\n \"CardForeignName\" : \"LA BOLIVIANA CIACRUZ DE SEGUROS Y REASEGUROS S.A. (LBC)\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"400\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"308\",\n \"CardName\" : \"SIMECORTEX SRL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"65159033\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"cmerino@emba.com.bo\",\n \"CardForeignName\" : \"SIMECORTEX SRL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 30,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:26-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:26-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners?%24select=CardCode%2CCardName%2CCardForeignName%2CFederalTaxID%2CCurrency%2CCardType%2CGroupCode%2CPhone1%2CCellular%2CEmailAddress%2CIndustry%2CDebitorAccount%2CProperties1%2CProperties2%2CProperties3%2CU_ClienPadre%2CU_EMBAIDTM%2CValid%2CFrozen\u0026%24skip=320\u0026%24top=20 | Status: 200 | Duration: 99.1087ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:26 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#BusinessPartners\",\n \"value\" : [\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"309\",\n \"CardName\" : \"EMPRESA ELECTRICA ENDE CORANI S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"70772679\",\n \"FederalTaxID\" : \"1009393025\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"aldo.maldonado@endecorani.bo\",\n \"CardForeignName\" : \"EMPRESA ELECTRICA ENDE CORANI S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 9,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"310\",\n \"CardName\" : \"Fundación Simón I. Patiño\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"69414515\",\n \"FederalTaxID\" : \"1023229020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"j.blajos@fundacionpatino.org\",\n \"CardForeignName\" : \"Fundación Simón I. Patiño\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 31,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"278\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"311\",\n \"CardName\" : \"Jalasoft SRL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"Of (591-4) 4308282\",\n \"FederalTaxID\" : \"155018021\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"Mendy.Lopez@jala.global; ContabilidadJALA@jalasoft.com; Luz.Lopez@jala.global\",\n \"CardForeignName\" : \"Jalasoft SRL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 46,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"377\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"312\",\n \"CardName\" : \"Bunge North America, Inc\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"(305) 648-4364\",\n \"FederalTaxID\" : \"134977260\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"Erika.RodriguezSolano@bunge.com; Monica.Sadurni@bunge.com\",\n \"CardForeignName\" : \"Bunge North America, Inc\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"109\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"313\",\n \"CardName\" : \"POTENZA SRL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"3338181\",\n \"FederalTaxID\" : \"173550023\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"dhurtado@bpocenter.com.bo\",\n \"CardForeignName\" : \"POTENZA SRL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 18,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"314\",\n \"CardName\" : \"ESCUELAS RADIOFONICAS FIDES\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2846415\",\n \"FederalTaxID\" : \"1016589028\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"clinica@radiofide.com\",\n \"CardForeignName\" : \"ESCUELAS RADIOFONICAS FIDES\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 31,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"240\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"315\",\n \"CardName\" : \"JOSE MUÑOZ\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"71506234\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"joseronim@hotmail.com\",\n \"CardForeignName\" : \"JOSE MUÑOZ\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 36,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"316\",\n \"CardName\" : \"MIRIAM ORTIZ\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"67979680\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"miriamortiz_0710@hotmail.com\",\n \"CardForeignName\" : \"MIRIAM ORTIZ\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 36,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"317\",\n \"CardName\" : \"CHURROMANIA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"7864016026\",\n \"FederalTaxID\" : \"317\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"ariel@churromania.com\",\n \"CardForeignName\" : \"CHURROMANIA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : -1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"318\",\n \"CardName\" : \"COMPAÑIA DE SEGUROS Y REASEGUROS FORTALEZA S.A\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2434885\",\n \"FederalTaxID\" : \"1028175023\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"mbarron@fortaleza.com.bo; ltrigo@fortaleza.com.bo\",\n \"CardForeignName\" : \"COMPAÑIA DE SEGUROS Y REASEGUROS FORTALEZA S.A\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"142\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"319\",\n \"CardName\" : \"KPMG - NOKIA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"Mobile\",\n \"FederalTaxID\" : \"319\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"hanna.ryynanen@kpmg.fi;\",\n \"CardForeignName\" : \"KPMG - NOKIA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 13,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"398\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"320\",\n \"CardName\" : \"CARLOS REBOLLO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"320\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"carlos@hetta.com.br\",\n \"CardForeignName\" : \"CARLOS REBOLLO\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"321\",\n \"CardName\" : \"FLAVIO FACCENDA - SITREX\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"3454543\",\n \"FederalTaxID\" : \"235798021\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"flavio@sitrex.net.br\",\n \"CardForeignName\" : \"FLAVIO FACCENDA - SITREX\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 12,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"322\",\n \"CardName\" : \"COPAGAZ DISTRIBUIDORA DE GAS S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"11 21633924\",\n \"FederalTaxID\" : \"99011\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"cimara@copagaz.com.br\",\n \"CardForeignName\" : \"COPAGAZ DISTRIBUIDORA DE GAS S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 9,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"323\",\n \"CardName\" : \"DLA PIPER PERU\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"+511 616 1200\",\n \"FederalTaxID\" : \"323\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"lvargas@dlapiper.pe\",\n \"CardForeignName\" : \"DLA PIPER PERU\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 18,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"203\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"324\",\n \"CardName\" : \"PREVITEC SRL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"70559186\",\n \"FederalTaxID\" : \"196628027\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"luiss63507@gmail.com\",\n \"CardForeignName\" : \"PREVITEC SRL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"325\",\n \"CardName\" : \"SMI ENVASES INDUSTRIAS BOLIVIA SA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"5286247\",\n \"FederalTaxID\" : \"388444020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"dmallea@smi.com.pe; japaricio@smi.com.pe\",\n \"CardForeignName\" : \"SMI ENVASES INDUSTRIAS BOLIVIA SA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"565\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"326\",\n \"CardName\" : \"WOOD PLC\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"Direct: +1 (770) 360\",\n \"FederalTaxID\" : \"326\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"jessica.guevara@woodplc.com\",\n \"CardForeignName\" : \"WOOD PLC\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 8,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"327\",\n \"CardName\" : \"Ogletree, Deakins, Nash, Smoak \u0026 Stewart, P.C.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"mdavila@emba.com.bo\",\n \"CardForeignName\" : \"Ogletree, Deakins, Nash, Smoak \u0026 Stewart, P.C.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 18,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"477\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"328\",\n \"CardName\" : \"GELVIS VALDEZ\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"+591 78511409\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"gelvis.valdez@siemens.com\",\n \"CardForeignName\" : \"GELVIS VALDEZ\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 36,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:26-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:26-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners?%24select=CardCode%2CCardName%2CCardForeignName%2CFederalTaxID%2CCurrency%2CCardType%2CGroupCode%2CPhone1%2CCellular%2CEmailAddress%2CIndustry%2CDebitorAccount%2CProperties1%2CProperties2%2CProperties3%2CU_ClienPadre%2CU_EMBAIDTM%2CValid%2CFrozen\u0026%24skip=340\u0026%24top=20 | Status: 200 | Duration: 124.9516ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:26 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#BusinessPartners\",\n \"value\" : [\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"329\",\n \"CardName\" : \"LA PROMOTORA ENTIDAD FINANCIERA DE VIVIENDA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"72207200\",\n \"FederalTaxID\" : \"1009387022\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"madiaz@lapromotora.com.bo\",\n \"CardForeignName\" : \"LA PROMOTORA ENTIDAD FINANCIERA DE VIVIENDA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"330\",\n \"CardName\" : \"MER TELECOM BOLIVIA S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"3355600\",\n \"FederalTaxID\" : \"171352023\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"rodrigo@merbolivia.com\",\n \"CardForeignName\" : \"MER TELECOM BOLIVIA S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 10,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"445\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"331\",\n \"CardName\" : \"SERGIO PATRICIO ARAYA PACHECO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"56956811081\",\n \"FederalTaxID\" : \"331\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"spatricio71@hotmail.com\",\n \"CardForeignName\" : \"SERGIO PATRICIO ARAYA PACHECO\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 36,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"332\",\n \"CardName\" : \"RODRIGO CAMPERO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"rodrigocampero@hotmail.com\",\n \"CardForeignName\" : \"RODRIGO CAMPERO\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 36,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"333\",\n \"CardName\" : \"AUTOSTAR\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2791554\",\n \"FederalTaxID\" : \"198718021\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"amorenog@emba.com.bo\",\n \"CardForeignName\" : \"AUTOSTAR\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 14,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"67\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"334\",\n \"CardName\" : \"MITRANI CABALLERO RUIZ MORENO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"+54 (11) 4590-8617\",\n \"FederalTaxID\" : \"334\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"maria.paula.diaz@mcolex.com\",\n \"CardForeignName\" : \"MITRANI CABALLERO RUIZ MORENO\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 18,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"335\",\n \"CardName\" : \"NEXUS GROUP\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"51 (1) 6192060 E\",\n \"FederalTaxID\" : \"335\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"gustavo.yokoo@nexusgroup.com.pe\",\n \"CardForeignName\" : \"NEXUS GROUP\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 46,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"336\",\n \"CardName\" : \"NAVITIME JAPAN\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"336\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"takashi_unoki@noandt.com\",\n \"CardForeignName\" : \"NAVITIME JAPAN\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 10,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"337\",\n \"CardName\" : \"RADIODIFUSORAS POPULARES S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2203339\",\n \"FederalTaxID\" : \"1020441026\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"rtp@rtpbolivia.com.bo\",\n \"CardForeignName\" : \"RADIODIFUSORAS POPULARES S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 33,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"524\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"338\",\n \"CardName\" : \"SOBOCE\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"75260784\",\n \"FederalTaxID\" : \"1020235024\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"ssoliz@soboce.com\",\n \"CardForeignName\" : \"SOBOCE\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"339\",\n \"CardName\" : \"DeliveryHero Stores Almacenes Bolivia S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"+49 162 2070521\",\n \"FederalTaxID\" : \"393367021\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"facturas.bolivia@pedidosya.com\",\n \"CardForeignName\" : \"DeliveryHero Stores Almacenes Bolivia S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 13,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"190\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"340\",\n \"CardName\" : \"LATHAM \u0026 WATKINS\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"4,42E+11\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"Victoria.Wan@lw.com\",\n \"CardForeignName\" : \"LATHAM \u0026 WATKINS\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 10,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"406\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"341\",\n \"CardName\" : \"MEDTRONIC LOGISTICS LLC\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"51161118748\",\n \"FederalTaxID\" : \"341\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"MEDTRONIC LOGISTICS LLC\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 40,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"444\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"342\",\n \"CardName\" : \"GARRIGUES - PERU\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"5113995600\",\n \"FederalTaxID\" : \"342\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"franco.muschi@garrigues.com\",\n \"CardForeignName\" : \"GARRIGUES - PERU\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 18,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"343\",\n \"CardName\" : \"INDUSTRIAS VENADO S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"3630700\",\n \"FederalTaxID\" : \"1020539025\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"rolandocespedes@grupovenado.com; eunicequisbert@grupovenado.com\",\n \"CardForeignName\" : \"INDUSTRIAS VENADO S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : -1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"357\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"344\",\n \"CardName\" : \"PAGOS SRL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"174992029\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"gpena@pagoexpress.com.bo\",\n \"CardForeignName\" : \"PAGOS SRL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"485\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"345\",\n \"CardName\" : \"TUVES TV SATELITAL BOLIVIA S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"76787362\",\n \"FederalTaxID\" : \"166134029\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"ealiaga@tuves.com.bo; jcori@tuves.com\",\n \"CardForeignName\" : \"TUVES TV SATELITAL BOLIVIA S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 10,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"604\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"346\",\n \"CardName\" : \"BANCO DE CREDITO DE BOLIVIA S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2114141\",\n \"FederalTaxID\" : \"1020435022\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"malarcon@bcp.com.bo\",\n \"CardForeignName\" : \"BANCO DE CREDITO DE BOLIVIA S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"69\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"347\",\n \"CardName\" : \"EMPRESA DE COMUNICACIÓN SOCIAL EL DEBER S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"3538000 int 1412\",\n \"FederalTaxID\" : \"1028283021\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"mirian.bejarano@grupoeldeber.com; facturacion.eldeber@grupoeldeber.com;\",\n \"CardForeignName\" : \"EMPRESA DE COMUNICACIÓN SOCIAL EL DEBER S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 33,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"227\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"349\",\n \"CardName\" : \"CHRISTIAN AUTOMOTORS S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"3340705\",\n \"FederalTaxID\" : \"1028579022\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"cjacir@christian.com.bo\",\n \"CardForeignName\" : \"CHRISTIAN AUTOMOTORS S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 14,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:27-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:27-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners?%24select=CardCode%2CCardName%2CCardForeignName%2CFederalTaxID%2CCurrency%2CCardType%2CGroupCode%2CPhone1%2CCellular%2CEmailAddress%2CIndustry%2CDebitorAccount%2CProperties1%2CProperties2%2CProperties3%2CU_ClienPadre%2CU_EMBAIDTM%2CValid%2CFrozen\u0026%24skip=360\u0026%24top=20 | Status: 200 | Duration: 89.0038ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:27 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#BusinessPartners\",\n \"value\" : [\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"350\",\n \"CardName\" : \"WILFRED HOEDT\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"(+598) 2622 4276\",\n \"FederalTaxID\" : \"350\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"adolfo@ppm.com.uy\",\n \"CardForeignName\" : \"WILFRED HOEDT\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 36,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"351\",\n \"CardName\" : \"AGCO AMERICA DO SUL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"+55 (51) 34628408\",\n \"FederalTaxID\" : \"351\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"ludmila.costa@agcocorp.com\",\n \"CardForeignName\" : \"AGCO AMERICA DO SUL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"352\",\n \"CardName\" : \"SIEMENS LTDA. (SIEMENS BRASIL)\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"Tel: +55 11 4585-46\",\n \"FederalTaxID\" : \"352\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"andre.araujo@siemens.com\",\n \"CardForeignName\" : \"SIEMENS LTDA. (SIEMENS BRASIL)\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 46,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"353\",\n \"CardName\" : \"TRADECORP SRL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"75444437\",\n \"FederalTaxID\" : \"376201021\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"corp.kev21@gmail.com\",\n \"CardForeignName\" : \"TRADECORP SRL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 13,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"354\",\n \"CardName\" : \"Alfredo Fernandez Delfin\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"71564522\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"afernandezdelfin@yahoo.es\",\n \"CardForeignName\" : \"Alfredo Fernandez Delfin\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 36,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"32\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"355\",\n \"CardName\" : \"DIGITAL HARBOR INTERNATIONAL S.R.L\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"76971010\",\n \"FederalTaxID\" : \"269456023\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"marcelo.zenzano@dharbor.com\",\n \"CardForeignName\" : \"DIGITAL HARBOR INTERNATIONAL S.R.L\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"195\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"356\",\n \"CardName\" : \"BANCO SANTANDER BRASIL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"4004 3535\",\n \"FederalTaxID\" : \"356\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"ansilveira@santander.com.br\",\n \"CardForeignName\" : \"BANCO SANTANDER BRASIL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"357\",\n \"CardName\" : \"ZHEJIANG PROVINCIAL NO.1 WATER CONSERVANCY \u0026 ELECTRIC POWER CONSTRUCTION GROUP HOLDINGS CO S.A. (SUC\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"22788142\",\n \"FederalTaxID\" : \"290058028\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"patricia.liquitaya@gmail.com\",\n \"CardForeignName\" : \"ZHEJIANG PROVINCIAL NO.1 WATER CONSERVANCY \u0026 ELECTRIC POWER CONSTRUCTION GROUP HOLDINGS CO S.A. (SUC\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"358\",\n \"CardName\" : \"TMF BOLIVIA SRL.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"(+51) 01 612 4406\",\n \"FederalTaxID\" : \"144414026\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"Javier.Grau@tmf-group.com\",\n \"CardForeignName\" : \"TMF BOLIVIA SRL.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"359\",\n \"CardName\" : \"Embajada de Canadá\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"22415141\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"monica.burgoa@international.gc.ca\",\n \"CardForeignName\" : \"Embajada de Canadá\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 25,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"218\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"360\",\n \"CardName\" : \"COOPERATIVA DE SERVICIOS DE VIAJES LAURETANA R L\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"70342318\",\n \"FederalTaxID\" : \"1020771024\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"lauretana14@gmail.com\",\n \"CardForeignName\" : \"COOPERATIVA DE SERVICIOS DE VIAJES LAURETANA R L\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 7,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"162\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"361\",\n \"CardName\" : \"regulatory advisors S.A.S.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"57310154876\",\n \"FederalTaxID\" : \"9004091168\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"claragomez@regulatoryadvisors.com.co\",\n \"CardForeignName\" : \"regulatory advisors S.A.S.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 18,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"527\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"362\",\n \"CardName\" : \"CAMARA BOLIVIANA DE COMERCIO ELECTRONICO Y STARTUPS (CABOCES)\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"75031300\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"luispolasek@gmail.com\",\n \"CardForeignName\" : \"CAMARA BOLIVIANA DE COMERCIO ELECTRONICO Y STARTUPS (CABOCES)\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 31,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"363\",\n \"CardName\" : \"AVICONS SRL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"72200826\",\n \"FederalTaxID\" : \"1020779021\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"svillarroel@avicons.com.bo\",\n \"CardForeignName\" : \"AVICONS SRL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"68\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"364\",\n \"CardName\" : \"FLEXWIND\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"+55 85 9631-9724\",\n \"FederalTaxID\" : \"364\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"aqu@flex-wind.com\",\n \"CardForeignName\" : \"FLEXWIND\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 9,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"365\",\n \"CardName\" : \"META GROUP SRL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"70053026\",\n \"FederalTaxID\" : \"127457021\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"dhurtado@bpocenter.com.bo\",\n \"CardForeignName\" : \"META GROUP SRL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 46,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"366\",\n \"CardName\" : \"QUANVENTURES S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"76570109\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"antonio.portugal@quan.bo\",\n \"CardForeignName\" : \"QUANVENTURES S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 18,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"367\",\n \"CardName\" : \"SACYR INDUSTRIAL BOLIVIA SIB SRL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"71880530\",\n \"FederalTaxID\" : \"329520021\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"javier.rios@sacyrbolivia.com; arnold.ticona@sacyrbolivia.com; carla.flores@sacyrbolivia.com\",\n \"CardForeignName\" : \"SACYR INDUSTRIAL BOLIVIA SIB SRL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 7,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"541\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"368\",\n \"CardName\" : \"ALDEAS INFANTILES SOS INTERNACIONAL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"7657792-70659453\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"Grace.Romero@sos-kd.org\",\n \"CardForeignName\" : \"ALDEAS INFANTILES SOS INTERNACIONAL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 31,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"29\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"369\",\n \"CardName\" : \"MUGEBUSCH\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2444124\",\n \"FederalTaxID\" : \"1005735026\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"janeth.velarde@mugebush.org\",\n \"CardForeignName\" : \"MUGEBUSCH\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:27-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:27-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners?%24select=CardCode%2CCardName%2CCardForeignName%2CFederalTaxID%2CCurrency%2CCardType%2CGroupCode%2CPhone1%2CCellular%2CEmailAddress%2CIndustry%2CDebitorAccount%2CProperties1%2CProperties2%2CProperties3%2CU_ClienPadre%2CU_EMBAIDTM%2CValid%2CFrozen\u0026%24skip=380\u0026%24top=20 | Status: 200 | Duration: 98.9666ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:27 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#BusinessPartners\",\n \"value\" : [\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"370\",\n \"CardName\" : \"TEOMA BOLIVIA S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"70000172\",\n \"FederalTaxID\" : \"296898021\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"roberto.celis@teomaglobal.com\",\n \"CardForeignName\" : \"TEOMA BOLIVIA S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 13,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"371\",\n \"CardName\" : \"Distribuidora Cummins S.A. Sucursal Bolivia\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"72115038\",\n \"FederalTaxID\" : \"1013135029\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"mariana.oliveira@cummins.com\",\n \"CardForeignName\" : \"Distribuidora Cummins S.A. Sucursal Bolivia\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 30,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"198\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"372\",\n \"CardName\" : \"AESA RATINGS S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2774470\",\n \"FederalTaxID\" : \"188120027\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"irma.aduviri@aesa-ratings.bo\",\n \"CardForeignName\" : \"AESA RATINGS S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"11\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"373\",\n \"CardName\" : \"ALTIFIBERS S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2441129\",\n \"FederalTaxID\" : \"1006901027\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"contabilidad@altifibers.com\",\n \"CardForeignName\" : \"ALTIFIBERS S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 4,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"374\",\n \"CardName\" : \"TERAPEUTICA BOLIVIANA S.A. TERBOL S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"3426767\",\n \"FederalTaxID\" : \"1028129026\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"rmquijano@terbol.com\",\n \"CardForeignName\" : \"TERAPEUTICA BOLIVIANA S.A. TERBOL S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 26,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"591\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"375\",\n \"CardName\" : \"MORENO BALDIVIESO SRL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"69999136\",\n \"FederalTaxID\" : \"337536022\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"jmamani@emba.com.bo, mdavila@emba.com.bo\",\n \"CardForeignName\" : \"MORENO BALDIVIESO SRL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 18,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"461\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"376\",\n \"CardName\" : \"Credinform\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"69831345\",\n \"FederalTaxID\" : \"1006765027\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"aarduz@credinformsa.com\",\n \"CardForeignName\" : \"SEGUROS Y REASEGUROS CREDINFORM INTERNATIONAL S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"176\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"377\",\n \"CardName\" : \"GRUPOAKROS7 SRL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"77790961\",\n \"FederalTaxID\" : \"393544023\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"victorhurtado@akros7.com\",\n \"CardForeignName\" : \"GRUPOAKROS7 SRL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"378\",\n \"CardName\" : \"BARREIRO OLIVA DE LUCA JACA NICASTRO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"54 11 4814-1746\",\n \"FederalTaxID\" : \"30716029898\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"fcardini@bodlegal.com\",\n \"CardForeignName\" : \"BARREIRO OLIVA DE LUCA JACA NICASTRO\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 18,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"77\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"379\",\n \"CardName\" : \"FONPLATA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"3159400\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"lwestermann@fonplata.com\",\n \"CardForeignName\" : \"FONPLATA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"380\",\n \"CardName\" : \"RADIO FIDES LA PAZ SRL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2167700\",\n \"FederalTaxID\" : \"1020523021\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"contactos@radiofides.com\",\n \"CardForeignName\" : \"RADIO FIDES LA PAZ SRL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 33,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"521\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"381\",\n \"CardName\" : \"JUAN PABLO SAAVEDRA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"78188434\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"jpsaavedra@dispack.com.bo\",\n \"CardForeignName\" : \"JUAN PABLO SAAVEDRA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 36,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"382\",\n \"CardName\" : \"Susana Barbery\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"76009408\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"nellybwwptg@gmail.com\",\n \"CardForeignName\" : \"Susana Barbery\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 36,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"581\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"383\",\n \"CardName\" : \"EYAVATECH SRL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2791554\",\n \"FederalTaxID\" : \"394036020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"amorenog@emba.com.bo\",\n \"CardForeignName\" : \"EYAVATECH SRL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 13,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"245\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"384\",\n \"CardName\" : \"SCALA HIGHER EDUCATION SC\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"52 1 55 4836 7339\",\n \"FederalTaxID\" : \"384\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"daniel.lazaro@utel.edu.mx\",\n \"CardForeignName\" : \"SCALA HIGHER EDUCATION SC\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 27,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"385\",\n \"CardName\" : \"RADIO FIDES ACTIVOS SRL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"72538166\",\n \"FederalTaxID\" : \"126911020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"cmerino@emba.com.bo\",\n \"CardForeignName\" : \"RADIO FIDES ACTIVOS SRL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 33,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"520\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"386\",\n \"CardName\" : \"ITALSA S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"3536674\",\n \"FederalTaxID\" : \"246406022\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"oveliz@italsa.com.bo\",\n \"CardForeignName\" : \"ITALSA S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 13,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"387\",\n \"CardName\" : \"FUNDACION DIACONIA FONDO ROTATIVO DE INVERSION Y FOMENTO - INSTITUCION FINANCIERA DE DESARROLLO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2847812\",\n \"FederalTaxID\" : \"1020601026\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"elsa.quinteros@diaconia.bo\",\n \"CardForeignName\" : \"FUNDACION DIACONIA FONDO ROTATIVO DE INVERSION Y FOMENTO - INSTITUCION FINANCIERA DE DESARROLLO\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"388\",\n \"CardName\" : \"PREMONOR BOLIVIA S.R.L\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"72130900\",\n \"FederalTaxID\" : \"351486025\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"PREMONOR BOLIVIA S.R.L\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tNO\",\n \"Frozen\" : \"tYES\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"512\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"389\",\n \"CardName\" : \"BOLÍVAR ADMINISTRACIÓN, INVERSIONES y SERVICIOS ASOCIADOS S.R.L. (BAISA S.R.L.),\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2916965\",\n \"FederalTaxID\" : \"153676025\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"nils.sanmartin@clubbolivar.com; veronica.nina@clubbolivar.com; martin.mollinedo@clubbolivar.com\",\n \"CardForeignName\" : \"BOLÍVAR ADMINISTRACIÓN, INVERSIONES y SERVICIOS ASOCIADOS S.R.L. (BAISA S.R.L.),\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"99\"\n }\n ]\n}\n","time":"2025-07-30T10:48:27-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:27-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners?%24select=CardCode%2CCardName%2CCardForeignName%2CFederalTaxID%2CCurrency%2CCardType%2CGroupCode%2CPhone1%2CCellular%2CEmailAddress%2CIndustry%2CDebitorAccount%2CProperties1%2CProperties2%2CProperties3%2CU_ClienPadre%2CU_EMBAIDTM%2CValid%2CFrozen\u0026%24skip=400\u0026%24top=20 | Status: 200 | Duration: 106.3706ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:27 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#BusinessPartners\",\n \"value\" : [\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"390\",\n \"CardName\" : \"PATRICIA ALBORTA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"78777772\",\n \"FederalTaxID\" : \"3336800\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"PALBORTA@caf.com\",\n \"CardForeignName\" : \"PATRICIA ALBORTA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 36,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"391\",\n \"CardName\" : \"BRIGARD CASTRO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"(571) 7442200 Ext82\",\n \"FederalTaxID\" : \"860047372-8\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"lguayacan@bc.com.co\",\n \"CardForeignName\" : \"BRIGARD CASTRO\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 18,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"392\",\n \"CardName\" : \"AUMENTUMTECH BOLIVIA SRL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"4485159\",\n \"FederalTaxID\" : \"211542024\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"aguardia@harriscomputer.com; LCatala@harriscomputer.com\",\n \"CardForeignName\" : \"AUMENTUMTECH BOLIVIA SRL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 46,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"65\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"393\",\n \"CardName\" : \"IMMUNOTEC USA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"(55) 5255-6900\",\n \"FederalTaxID\" : \"393\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"tdiaz@immunotec.com\",\n \"CardForeignName\" : \"IMMUNOTEC USA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 5,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"394\",\n \"CardName\" : \"CONTACTMEDIA COMUNICACIONES S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"400934026\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"mrivero78@gmail.com\",\n \"CardForeignName\" : \"CONTACTMEDIA COMUNICACIONES S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 10,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"158\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"395\",\n \"CardName\" : \"SUSANA PRUDENCIO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"72035333\",\n \"FederalTaxID\" : \"107782\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"susypru2004@yahoo.com\",\n \"CardForeignName\" : \"SUSANA PRUDENCIO\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 36,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"396\",\n \"CardName\" : \"Antonio Torrico Clavijo\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"4406259\",\n \"FederalTaxID\" : \"5203562010\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"atorrico@atecconstructora.com\",\n \"CardForeignName\" : \"Antonio Torrico Clavijo\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 36,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"50\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"397\",\n \"CardName\" : \"ENRIQUE MOYA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"397\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"enrique.globaliem@gmail.com\",\n \"CardForeignName\" : \"ENRIQUE MOYA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : -1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"398\",\n \"CardName\" : \"COMERCIALIZADORA IMMUNOTEC BOLIVIA S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"77499598\",\n \"FederalTaxID\" : \"399509027\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"kmarin@immunotec.com; vaneza.rivas@encinas.com.bo; fclasing@immunotec.com\",\n \"CardForeignName\" : \"COMERCIALIZADORA IMMUNOTEC BOLIVIA S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 5,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"140\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"399\",\n \"CardName\" : \"HELIX SEMENTES E MUDAS LTDA.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"55 19 3526-8670\",\n \"FederalTaxID\" : \"399\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"ieda@agroceres.com\",\n \"CardForeignName\" : \"HELIX SEMENTES E MUDAS LTDA.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"400\",\n \"CardName\" : \"MORGAN \u0026 MORGAN\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"5072657777\",\n \"FederalTaxID\" : \"400\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"carolina.tejada@morimor.com\",\n \"CardForeignName\" : \"MORGAN \u0026 MORGAN\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 18,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"401\",\n \"CardName\" : \"TKFSTORES SRL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"77690490\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"andres.puentes@tkfbolivia.com\",\n \"CardForeignName\" : \"TKFSTORES SRL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 4,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"402\",\n \"CardName\" : \"ADMINISTRADORA DE CAMARAS DE COMPENSACION Y LIQUIDACION S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"77205580\",\n \"FederalTaxID\" : \"121597027\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"info@accl.bo\",\n \"CardForeignName\" : \"ADMINISTRADORA DE CAMARAS DE COMPENSACION Y LIQUIDACION S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"403\",\n \"CardName\" : \"MMGC SRL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"5,41E+11\",\n \"FederalTaxID\" : \"30711878579\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"vania.montero@mmgc.com.ar\",\n \"CardForeignName\" : \"MMGC SRL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 18,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"404\",\n \"CardName\" : \"Copelme SA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"4720600 Int 01\",\n \"FederalTaxID\" : \"1023095027\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"factura@copelme.com; arios@copelme.com; emurillo@copelme.com; gmartinez@copelme.com:\",\n \"CardForeignName\" : \"Copelme SA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 44,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"166\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"405\",\n \"CardName\" : \"GLOBAL ADVISORY S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"65658265\",\n \"FederalTaxID\" : \"359847020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"jmariaca@globaladvisory.com.bo\",\n \"CardForeignName\" : \"GLOBAL ADVISORY S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 18,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"406\",\n \"CardName\" : \"ACTIVZBOLIVIA SRL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"69832546\",\n \"FederalTaxID\" : \"402408021\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"fvarela@activz.com; mvidez@emba.com.bo; mpirela@activz.com; vyanes@activz.com\",\n \"CardForeignName\" : \"ACTIVZBOLIVIA SRL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 40,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"7\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"407\",\n \"CardName\" : \"FIDES MATER TELEVISIÓN S.R.L\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2406363\",\n \"FederalTaxID\" : \"166758022\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"cmerino@emba.com.bo\",\n \"CardForeignName\" : \"FIDES MATER TELEVISIÓN S.R.L\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 33,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"263\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"408\",\n \"CardName\" : \"COFACE\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"+51 (1) 616 3434\",\n \"FederalTaxID\" : \"408\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"daniel.cayetano@coface.com\",\n \"CardForeignName\" : \"COFACE\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"409\",\n \"CardName\" : \"VILLEGAS PAREJA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"774444033\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"michelpareja@gmail.com\",\n \"CardForeignName\" : \"VILLEGAS PAREJA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 36,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:27-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:27-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners?%24select=CardCode%2CCardName%2CCardForeignName%2CFederalTaxID%2CCurrency%2CCardType%2CGroupCode%2CPhone1%2CCellular%2CEmailAddress%2CIndustry%2CDebitorAccount%2CProperties1%2CProperties2%2CProperties3%2CU_ClienPadre%2CU_EMBAIDTM%2CValid%2CFrozen\u0026%24skip=420\u0026%24top=20 | Status: 200 | Duration: 105.8473ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:27 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#BusinessPartners\",\n \"value\" : [\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"410\",\n \"CardName\" : \"AUTOMERCADOS SRL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"70377717\",\n \"FederalTaxID\" : \"306612023\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"javiercremer@hotmail.com\",\n \"CardForeignName\" : \"AUTOMERCADOS SRL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 13,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"411\",\n \"CardName\" : \"Edwin Saavedra Toledo y Sra.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"78522774\",\n \"FederalTaxID\" : \"1030029024\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"carlos.castro@toyosa.com\",\n \"CardForeignName\" : \"Edwin Saavedra Toledo y Sra.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 14,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"212\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"412\",\n \"CardName\" : \"SIEMPRESALUD – GRUPO FIDES\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2846415\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"clinica@radiofide.com\",\n \"CardForeignName\" : \"SIEMPRESALUD – GRUPO FIDES\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 26,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"560\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"413\",\n \"CardName\" : \"Hupi Constructura S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"74650323\",\n \"FederalTaxID\" : \"401407029\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"carlos@hetta.br.com\",\n \"CardForeignName\" : \"Hupi Constructura S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"330\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"414\",\n \"CardName\" : \"LEVY \u0026 SALOMAO ADVOGADOS\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"5,51E+11\",\n \"FederalTaxID\" : \"414\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"gforsman@levysalomao.com.br\",\n \"CardForeignName\" : \"LEVY \u0026 SALOMAO ADVOGADOS\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 18,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"415\",\n \"CardName\" : \"ROBIT S.A.C.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"+51 1 469 2967\",\n \"FederalTaxID\" : \"415\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"jose.cisneros@robitgroup.com\",\n \"CardForeignName\" : \"ROBIT S.A.C.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 13,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"416\",\n \"CardName\" : \"COOPERATIVA DE AHORRO Y CREDITO ABIERTA “JESUS NAZARENO” RL.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"3638101\",\n \"FederalTaxID\" : \"1015477021\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"eramos@jesus-nazareno.coop\",\n \"CardForeignName\" : \"COOPERATIVA DE AHORRO Y CREDITO ABIERTA “JESUS NAZARENO” RL.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"417\",\n \"CardName\" : \"AGROINDUSTRIAS ALIEMGLOBAL S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"77888116\",\n \"FederalTaxID\" : \"403424028\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"alberto.moya@globaliem.com\",\n \"CardForeignName\" : \"AGROINDUSTRIAS ALIEMGLOBAL S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : -1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"33\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"418\",\n \"CardName\" : \"CST INVERSIONES S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"78188434\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"jpsaavedra@dispack.com.bo\",\n \"CardForeignName\" : \"CST INVERSIONES S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : -1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"419\",\n \"CardName\" : \"INDABOL SRL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"74162288\",\n \"FederalTaxID\" : \"293516023\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"selma_vargas@indabol.com.bo\",\n \"CardForeignName\" : \"INDABOL SRL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 12,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"420\",\n \"CardName\" : \"DLOCAL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"420\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"acancela@dlocal.com\",\n \"CardForeignName\" : \"DLOCAL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"421\",\n \"CardName\" : \"BENITES, VARGAS \u0026 UGAZ ABOGADOS\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"(511) 615-9090\",\n \"FederalTaxID\" : \"421\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"jacevedo@bvu.pe\",\n \"CardForeignName\" : \"BENITES, VARGAS \u0026 UGAZ ABOGADOS\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 18,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"422\",\n \"CardName\" : \"CONSULADO GENERAL DE AUSTRIA - LA PAZ\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"(+591) 2 244 20 94\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"lapaz1@austroko-bo.net\",\n \"CardForeignName\" : \"CONSULADO GENERAL DE AUSTRIA - LA PAZ\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 34,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"423\",\n \"CardName\" : \"OVANDO S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"591 3 336 3100\",\n \"FederalTaxID\" : \"1023103028\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"jaime.ovando@ovando.com\",\n \"CardForeignName\" : \"OVANDO S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 14,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"424\",\n \"CardName\" : \"CONSEGSA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"69831012\",\n \"FederalTaxID\" : \"1020669027\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"diegosuxo@consegsa.com\",\n \"CardForeignName\" : \"Consultores de Seguros S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"157\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"425\",\n \"CardName\" : \"DISTRITO MODA S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"75111797\",\n \"FederalTaxID\" : \"407216020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"ceo.distritomoda@gmail.com\",\n \"CardForeignName\" : \"DISTRITO MODA S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 4,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"201\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"426\",\n \"CardName\" : \"FUNDACIÓN PRO MUJER INSTITUCIÓN FINANCIERA DE DESARROLLO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"+591-2-2114914 Int\",\n \"FederalTaxID\" : \"173342029\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"gabriel.reyes@promujer.org\",\n \"CardForeignName\" : \"FUNDACIÓN PRO MUJER INSTITUCIÓN FINANCIERA DE DESARROLLO\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"277\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"427\",\n \"CardName\" : \"DLOCAL LLP\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"fbianchi@dlocal.com\",\n \"CardForeignName\" : \"DLOCAL LLP\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"428\",\n \"CardName\" : \"TIENDA AMIGA ER S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"3-435000\",\n \"FederalTaxID\" : \"176592023\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"franz.carvajal@tiendaamiga.com.bo\",\n \"CardForeignName\" : \"TIENDA AMIGA ER S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 13,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"593\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"429\",\n \"CardName\" : \"EMPRESAS POLAR\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"-2320975\",\n \"FederalTaxID\" : \"429\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"hillmer.vallenilla@empresas-polar.com\",\n \"CardForeignName\" : \"EMPRESAS POLAR\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : -1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:27-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:27-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners?%24select=CardCode%2CCardName%2CCardForeignName%2CFederalTaxID%2CCurrency%2CCardType%2CGroupCode%2CPhone1%2CCellular%2CEmailAddress%2CIndustry%2CDebitorAccount%2CProperties1%2CProperties2%2CProperties3%2CU_ClienPadre%2CU_EMBAIDTM%2CValid%2CFrozen\u0026%24skip=440\u0026%24top=20 | Status: 200 | Duration: 93.319ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:27 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#BusinessPartners\",\n \"value\" : [\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"430\",\n \"CardName\" : \"TECNOLOGÍA COLABORATIVA EXPORT S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"76971010\",\n \"FederalTaxID\" : \"404059028\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"marcelo.zenzano@dharbor.com\",\n \"CardForeignName\" : \"TECNOLOGÍA COLABORATIVA EXPORT S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 46,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"585\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"431\",\n \"CardName\" : \"UNIVERSIDAD PRIVADA FRANZ TAMAYO S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"76203980\",\n \"FederalTaxID\" : \"1020233028\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"oagreda@unifranz.edu.bo\",\n \"CardForeignName\" : \"UNIVERSIDAD PRIVADA FRANZ TAMAYO S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 27,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"611\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"432\",\n \"CardName\" : \"MARCIA VIVIANA CALANI ANTEZANA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"77967687\",\n \"FederalTaxID\" : \"6471348\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"viviana.calani@gmail.com\",\n \"CardForeignName\" : \"MARCIA VIVIANA CALANI ANTEZANA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 36,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"433\",\n \"CardName\" : \"INDUSTRIAS CERAMICAS PAZ LTDA.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2800648\",\n \"FederalTaxID\" : \"1029853025\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"bejarano.jmanuel@gmail.com\",\n \"CardForeignName\" : \"INDUSTRIAS CERAMICAS PAZ LTDA.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"434\",\n \"CardName\" : \"AGIMEX SRL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"77401011\",\n \"FederalTaxID\" : \"1022573027\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"mestrada@agimex.com.bo\",\n \"CardForeignName\" : \"AGIMEX SRL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 13,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"435\",\n \"CardName\" : \"BUNGE LODERS CROKLAAN OILS SDN BHD\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"+65 6730 6262\",\n \"FederalTaxID\" : \"435\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"Derek.Lim@bunge.com\",\n \"CardForeignName\" : \"BUNGE LODERS CROKLAAN OILS SDN BHD\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : -1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"436\",\n \"CardName\" : \"Banco para el Fomento a Iniciativas Económicas S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"(591-2) 2173600\",\n \"FederalTaxID\" : \"1020273023\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"enrique.palmero@bancofie.com.bo\",\n \"CardForeignName\" : \"Banco para el Fomento a Iniciativas Económicas S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"73\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"437\",\n \"CardName\" : \"BANCO UNION S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"(591-2) 2-171717\",\n \"FederalTaxID\" : \"1028415020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"lfescobar@bancounion.com.bo\",\n \"CardForeignName\" : \"BANCO UNION S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"438\",\n \"CardName\" : \"UNIVERSIDAD CATOLICA bla\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2782222\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"gaguirre@ucb.edu.bo\",\n \"CardForeignName\" : \"UNIVERSIDAD CATOLICA bla\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tNO\",\n \"Frozen\" : \"tYES\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 27,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"609\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"439\",\n \"CardName\" : \"WALTER GUERRERO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"72985250\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"JRIVERA2613@GMAIL.COM\",\n \"CardForeignName\" : \"WALTER GUERRERO\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 30,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"440\",\n \"CardName\" : \"MHTNARQ SRL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"69999160\",\n \"FederalTaxID\" : \"413541020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"mcalatayud@emba.com.bo; dackerman@tannerco.com\",\n \"CardForeignName\" : \"MHTNARQ SRL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"449\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"441\",\n \"CardName\" : \"JABONERIA WILSON S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"+593 2 2544 144\",\n \"FederalTaxID\" : \"179000000000\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"daniela@corralrosales.com\",\n \"CardForeignName\" : \"JABONERIA WILSON S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 41,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"443\",\n \"CardName\" : \"FREDDY ALEJANDRO COILA LOPERA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"72218480\",\n \"FederalTaxID\" : \"4846497\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"fcoila08@gmail.com\",\n \"CardForeignName\" : \"FREDDY ALEJANDRO COILA LOPERA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 36,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"444\",\n \"CardName\" : \"CASHU SRL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"77773372\",\n \"FederalTaxID\" : \"320930027\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"henrrycasas@hotmail.com\",\n \"CardForeignName\" : \"CASHU SRL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 13,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"445\",\n \"CardName\" : \"PAE E\u0026P BOLIVIA LIMITED SUCURSAL BOLIVIA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1015389022\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"jdauria@pan-energy.com\",\n \"CardForeignName\" : \"PAE E\u0026P BOLIVIA LIMITED SUCURSAL BOLIVIA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 7,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"446\",\n \"CardName\" : \"Droguería INTI S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"72505357\",\n \"FederalTaxID\" : \"1020521023\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"carla.herrera@inti.com.bo; diego.blanco@inti.com.bo\",\n \"CardForeignName\" : \"Droguería INTI S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 40,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"210\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"447\",\n \"CardName\" : \"FRANCHISE WORLD HEADQUARTERS, LLC (SUBWAY)\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"Tel: (305) 883-3966\",\n \"FederalTaxID\" : \"447\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"maragni_p@subway.com\",\n \"CardForeignName\" : \"FRANCHISE WORLD HEADQUARTERS, LLC (SUBWAY)\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : -1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"448\",\n \"CardName\" : \"SICURAINV SOCIEDAD DE INVERSIONES SA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2791554\",\n \"FederalTaxID\" : \"394032022\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"amorenog@emba.com.bo\",\n \"CardForeignName\" : \"SICURAINV SOCIEDAD DE INVERSIONES SA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"449\",\n \"CardName\" : \"FOROEMP SRL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2791554\",\n \"FederalTaxID\" : \"400834025\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"amorenog@emba.com.bo; mcalatayud@emba.com.bo\",\n \"CardForeignName\" : \"FOROEMP SRL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"270\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"450\",\n \"CardName\" : \"EMPRESA CONSTRUCTORA E INMOBILIARIA PACIFICO S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"71547762\",\n \"FederalTaxID\" : \"176408026\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"vchavez@pacificosa.com\",\n \"CardForeignName\" : \"EMPRESA CONSTRUCTORA E INMOBILIARIA PACIFICO S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"225\"\n }\n ]\n}\n","time":"2025-07-30T10:48:27-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:27-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners?%24select=CardCode%2CCardName%2CCardForeignName%2CFederalTaxID%2CCurrency%2CCardType%2CGroupCode%2CPhone1%2CCellular%2CEmailAddress%2CIndustry%2CDebitorAccount%2CProperties1%2CProperties2%2CProperties3%2CU_ClienPadre%2CU_EMBAIDTM%2CValid%2CFrozen\u0026%24skip=460\u0026%24top=20 | Status: 200 | Duration: 92.0402ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:27 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#BusinessPartners\",\n \"value\" : [\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"451\",\n \"CardName\" : \"PRODUCTOS DE CUIDADO PERSONAL Y DE LA SALUD DE BOLIVIA S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2791554\",\n \"FederalTaxID\" : \"185524029\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"rclaure@emba.com.bo; cgonzales@emba.com.bo\",\n \"CardForeignName\" : \"PRODUCTOS DE CUIDADO PERSONAL Y DE LA SALUD DE BOLIVIA S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 5,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"516\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"452\",\n \"CardName\" : \"Perfumería Francesa (Bolivia)\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2791554\",\n \"FederalTaxID\" : \"182180020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"rclaure@emba.com.bo; cgonzales@emba.com.bo\",\n \"CardForeignName\" : \"PERFUMERIA FRANCESA (BOLIVIA) S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 5,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"495\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"453\",\n \"CardName\" : \"LABORATORIO CATEDRAL SEC. PAT. CLINICA S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"59177392531\",\n \"FederalTaxID\" : \"1012539022\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"mariolyruilowa@laboratoriocatedral.com\",\n \"CardForeignName\" : \"LABORATORIO CATEDRAL SEC. PAT. CLINICA S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 26,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"454\",\n \"CardName\" : \"Amparo Rivero\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"77391187\",\n \"FederalTaxID\" : \"1584481\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"brasmac@cotas.com.bo\",\n \"CardForeignName\" : \"Amparo Trinidad Rivero Suarez\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 36,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"41\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"455\",\n \"CardName\" : \"GRUPO MARCHET - Natalia Rivero\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"13015084\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"natarivero@hotmail.com; lyonelballester.lb@gmail.com\",\n \"CardForeignName\" : \"GRUPO MARCHET - Natalia Rivero\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"306\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"456\",\n \"CardName\" : \"OMNILIFE DE BOLIVIA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2112217\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"juan.herrera@omnilife.com\",\n \"CardForeignName\" : \"OMNILIFE DE BOLIVIA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 13,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"457\",\n \"CardName\" : \"BECLEVER\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"5,41E+11\",\n \"FederalTaxID\" : \"457\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"sebastian.luna@beclevercorp.com\",\n \"CardForeignName\" : \"BECLEVER\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"80\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"458\",\n \"CardName\" : \"Charbel Mendoza\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"67402389\",\n \"FederalTaxID\" : \"464810\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"rprado@copelme.com\",\n \"CardForeignName\" : \"Charbel Mendoza\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 13,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"128\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"459\",\n \"CardName\" : \"SOCIEDAD INVERSIONES INMOBILIARIAS SOUTH VALLEYS S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"69999136\",\n \"FederalTaxID\" : \"41866827\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"lchalco@emba.com.bo\",\n \"CardForeignName\" : \"SOCIEDAD INVERSIONES INMOBILIARIAS SOUTH VALLEYS S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 25,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"570\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"460\",\n \"CardName\" : \"SATVA S.R.L\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"70688244\",\n \"FederalTaxID\" : \"346316025\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"vania.200986@hotmail.com\",\n \"CardForeignName\" : \"SATVA S.R.L\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 18,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"461\",\n \"CardName\" : \"MAJOBOL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"76936333\",\n \"FederalTaxID\" : \"820378018\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"juanjordan@majobol.com\",\n \"CardForeignName\" : \"MAJOBOL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 13,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"462\",\n \"CardName\" : \"PREMOLTEC S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"premoltec@cotas.com.bo\",\n \"CardForeignName\" : \"PREMOLTEC S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"464\",\n \"CardName\" : \"INVERSIONES INMOBILIARIAS VERMIETUNG S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"72030020\",\n \"FederalTaxID\" : \"420041026\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"lchalco@emba.com.bo\",\n \"CardForeignName\" : \"INVERSIONES INMOBILIARIAS VERMIETUNG S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 25,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"366\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"465\",\n \"CardName\" : \"PLATTS\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"2791554\",\n \"FederalTaxID\" : \"99011\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"jerry.saliman@spglobal.com\",\n \"CardForeignName\" : \"PLATTS\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"466\",\n \"CardName\" : \"KAISER SERVICIOS S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"68923495\",\n \"FederalTaxID\" : \"1015443027\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"carola.herrera@kaiserbo.com\",\n \"CardForeignName\" : \"KAISER SERVICIOS S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 7,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"467\",\n \"CardName\" : \"CELESTINA VIRGINIA ORIHUELA ALVAREZ\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"76222959\",\n \"FederalTaxID\" : \"2050132\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"mdavila@emba.com.bo\",\n \"CardForeignName\" : \"CELESTINA VIRGINIA ORIHUELA ALVAREZ\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 36,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"468\",\n \"CardName\" : \"TELEPERFORMANCE COLOMBIA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"5,74E+11\",\n \"FederalTaxID\" : \"468\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"asesortp@overaz.com.co; diroperaciones@overaz.com.co\",\n \"CardForeignName\" : \"TELEPERFORMANCE COLOMBIA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 10,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"587\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"469\",\n \"CardName\" : \"BLUETRAIL AJAYU SRL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"5162342953\",\n \"FederalTaxID\" : \"420801023\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"amels@bluetrailsoft.com\",\n \"CardForeignName\" : \"BLUETRAIL AJAYU SRL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 11,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"470\",\n \"CardName\" : \"BUHOOO S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"78777167\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"ricardolimpias@buhooo.com\",\n \"CardForeignName\" : \"BUHOOO S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"471\",\n \"CardName\" : \"VISIÓN MUNDIAL BOLIVIA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1005307027\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"wilfredo_aparicio@wvi.org; abraham_vega@wvi.org\",\n \"CardForeignName\" : \"ONG VISION MUNDIAL BOLIVIA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 31,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"622\"\n }\n ]\n}\n","time":"2025-07-30T10:48:27-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:28-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners?%24select=CardCode%2CCardName%2CCardForeignName%2CFederalTaxID%2CCurrency%2CCardType%2CGroupCode%2CPhone1%2CCellular%2CEmailAddress%2CIndustry%2CDebitorAccount%2CProperties1%2CProperties2%2CProperties3%2CU_ClienPadre%2CU_EMBAIDTM%2CValid%2CFrozen\u0026%24skip=480\u0026%24top=20 | Status: 200 | Duration: 91.9496ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:28 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#BusinessPartners\",\n \"value\" : [\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"472\",\n \"CardName\" : \"SAAINSA S.A. (GRUPO EL DEBER)\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"71347920\",\n \"FederalTaxID\" : \"174790026\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"mirian.bejarano@grupoeldeber.com\",\n \"CardForeignName\" : \"SAAINSA S.A. (GRUPO EL DEBER)\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tNO\",\n \"Frozen\" : \"tYES\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 33,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"473\",\n \"CardName\" : \"Maria Elcy Elvira Pereira de Antelo - Paulo Savoca\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"70787582\",\n \"FederalTaxID\" : \"749719\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"prsavoca85@gmail.com; chichyantelo@gmail.com\",\n \"CardForeignName\" : \"Maria Elcy Elvira Pereira de Antelo - Paulo Savoca\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 36,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"430\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"474\",\n \"CardName\" : \"DISMAC - XIMENA SAAVEDRA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"xsaavedra@dismac.com.bo\",\n \"CardForeignName\" : \"DISMAC - XIMENA SAAVEDRA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 13,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"475\",\n \"CardName\" : \"CORPCREDIT SOLUCIONES TECNOLOGICAS S.A\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"5,41E+11\",\n \"FederalTaxID\" : \"422598020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"sebastian.luna@beclevercorp.com; administracion@beclevercorp.com; kgutierrez@emba.com.bo\",\n \"CardForeignName\" : \"CORPCREDIT SOLUCIONES TECNOLOGICAS S.A\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"167\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"476\",\n \"CardName\" : \"Aon Argentina Corredores de Reaseguros S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"5,41E+11\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"susana.garcia1@aon.com\",\n \"CardForeignName\" : \"Aon Argentina Corredores de Reaseguros S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"51\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"477\",\n \"CardName\" : \"IMBA S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"74162288\",\n \"FederalTaxID\" : \"1023201022\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"marco_argandona@indabol.com.bo\",\n \"CardForeignName\" : \"IMBA S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : -1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"478\",\n \"CardName\" : \"HERRAGRO SRL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"70106238\",\n \"FederalTaxID\" : \"1019931027\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"amorenog@emba.com.bo\",\n \"CardForeignName\" : \"HERRAGRO SRL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"323\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"479\",\n \"CardName\" : \"UNION AGRONEGOCIOS\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"76333310\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"gvillagomez@union.com.bo\",\n \"CardForeignName\" : \"UNION AGRONEGOCIOS\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 15,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"480\",\n \"CardName\" : \"ICL America do Sul SA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"+5511 4745 3081\",\n \"FederalTaxID\" : \"603981380001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"manuel.julca@icl-group.com.br\",\n \"CardForeignName\" : \"ICL America do Sul SA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"334\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"481\",\n \"CardName\" : \"DIVERSEY DE ARGENTINA S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"5,41E+11\",\n \"FederalTaxID\" : \"481\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"carolina.mayer@Diversey.com\",\n \"CardForeignName\" : \"DIVERSEY DE ARGENTINA S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 11,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"482\",\n \"CardName\" : \"Marcela Soligno\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"72035333\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"marcelasoligno@yahoo.com\",\n \"CardForeignName\" : \"Marcela Soligno\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 36,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"423\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"483\",\n \"CardName\" : \"Embajada de Italia en Bolivia\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"000099001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"smendoza@emba.com.bo\",\n \"CardForeignName\" : \"Embajada de Italia en Bolivia\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 34,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"221\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"484\",\n \"CardName\" : \"Universidad Católica Boliviana San Pablo\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2782222\",\n \"FederalTaxID\" : \"1020141023\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"mdavila@emba.com.bo\",\n \"CardForeignName\" : \"Universidad Católica Boliviana San Pablo\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 27,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"610\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"485\",\n \"CardName\" : \"Farmacias Corporativas S.A. - FARMACORP\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"59133489190 Int\",\n \"FederalTaxID\" : \"1015447026\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"ARANAR@farmacorp.com; ACANELAS@iadb.org; SMEDINA@farmacorp.com\",\n \"CardForeignName\" : \"Farmacias Corporativas S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 26,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"253\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"486\",\n \"CardName\" : \"SAWALIFE SRL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"69758233\",\n \"FederalTaxID\" : \"376382025\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"xophera@gmail.com\",\n \"CardForeignName\" : \"SAWALIFE SRL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : -1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"547\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"487\",\n \"CardName\" : \"MLU B.V.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"487\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"nlbelikova@yandex-team.com\",\n \"CardForeignName\" : \"MLU B.V.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 12,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"488\",\n \"CardName\" : \"CONECTA REDES Y SERVICIOS SA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"69214931\",\n \"FederalTaxID\" : \"136995022\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"kleanos@conecta.com.bo; facturacion@conecta.com.bo\",\n \"CardForeignName\" : \"CONECTA REDES Y SERVICIOS SA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 10,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"146\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"489\",\n \"CardName\" : \"BIOMERIEUX COLOMBIA SAS\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"(571) 647 601\",\n \"FederalTaxID\" : \"8300238441\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"michael.tapiero@biomerieux.com\",\n \"CardForeignName\" : \"BIOMERIEUX COLOMBIA SAS\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"86\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"490\",\n \"CardName\" : \"ENTRAVISION BOLIVIA S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"328978028\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"jackeline.gonzalez@alephholding.com; victor.burgos@alephholding.com; ap_evcbolivia@alephholding.com\",\n \"CardForeignName\" : \"TRUPEN CORPORATION BOLIVIA S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 11,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"237\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"491\",\n \"CardName\" : \"EMPRESA PRODUCTOS Y SERVICIOS TECNICOS PROSERTEC S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"7735-4093\",\n \"FederalTaxID\" : \"1015211029\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"mauricio.rios@prosertec-srl.com\",\n \"CardForeignName\" : \"EMPRESA PRODUCTOS Y SERVICIOS TECNICOS PROSERTEC S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:28-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:28-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners?%24select=CardCode%2CCardName%2CCardForeignName%2CFederalTaxID%2CCurrency%2CCardType%2CGroupCode%2CPhone1%2CCellular%2CEmailAddress%2CIndustry%2CDebitorAccount%2CProperties1%2CProperties2%2CProperties3%2CU_ClienPadre%2CU_EMBAIDTM%2CValid%2CFrozen\u0026%24skip=500\u0026%24top=20 | Status: 200 | Duration: 97.4625ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:28 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#BusinessPartners\",\n \"value\" : [\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"492\",\n \"CardName\" : \"Daniela Andia\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"75497878\",\n \"FederalTaxID\" : \"5935893\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"danielandia@hotmail.com\",\n \"CardForeignName\" : \"Daniela Andia\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 36,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"184\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"493\",\n \"CardName\" : \"ANDRES URQUIDI SELICH\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"2458020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"jaus23@yahoo.com\",\n \"CardForeignName\" : \"ANDRES URQUIDI SELICH\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 36,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"494\",\n \"CardName\" : \"Plan International Inc.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"72002751\",\n \"FederalTaxID\" : \"127885029\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"gerardo.manzaneda@plan-international.org\",\n \"CardForeignName\" : \"Plan International Inc.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 31,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"503\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"495\",\n \"CardName\" : \"HOUSEHOLD SOLUTIONS S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"50499529381\",\n \"FederalTaxID\" : \"495\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"ghassan.maalouf@osterlineablanca.com\",\n \"CardForeignName\" : \"HOUSEHOLD SOLUTIONS S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 13,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"496\",\n \"CardName\" : \"JUAN CAROS SOUSA SENZANO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"70373039\",\n \"FederalTaxID\" : \"7887002\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"juancasousa@gmail.com\",\n \"CardForeignName\" : \"JUAN CAROS SOUSA SENZANO\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 36,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"497\",\n \"CardName\" : \"LA PAZ ENTIDAD FINANCIERA DE VIVIENDA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2333030\",\n \"FederalTaxID\" : \"1020427024\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"lchalco@emba.com.bo\",\n \"CardForeignName\" : \"LA PAZ ENTIDAD FINANCIERA DE VIVIENDA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"498\",\n \"CardName\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"3530808\",\n \"FederalTaxID\" : \"1028279021\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"jdasilva@sccs.edu.bo; contabilidad@emba.com.bo\",\n \"CardForeignName\" : \"Cooperativa Educacional Santa Cruz R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 27,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"163\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"499\",\n \"CardName\" : \"FAVARO HNOS. S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"78287110\",\n \"FederalTaxID\" : \"220816023\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"favarodan201084@hotmail.com\",\n \"CardForeignName\" : \"FAVARO HNOS. S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"500\",\n \"CardName\" : \"EMPRESA NACIONAL DE TELECOMUNICACIONES (ENTEL S.A.)\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"10207030223\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"iterrazas@entel.bo\",\n \"CardForeignName\" : \"EMPRESA NACIONAL DE TELECOMUNICACIONES (ENTEL S.A.)\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 10,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"501\",\n \"CardName\" : \"ADM ARCHER DANIELS MIDLAND COMPANY\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"+55 19 3884-9844\",\n \"FederalTaxID\" : \"501\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"Lilian.Silva1@adm.com\",\n \"CardForeignName\" : \"ADM ARCHER DANIELS MIDLAND COMPANY\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : -1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"502\",\n \"CardName\" : \"NEWDECO S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"72204362\",\n \"FederalTaxID\" : \"394425021\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"gerencia.novitadue@gmail.com\",\n \"CardForeignName\" : \"NEWDECO S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"503\",\n \"CardName\" : \"YANDEX\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"503\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"nlbelikova@yandex-team.com\",\n \"CardForeignName\" : \"YANDEX\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 46,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"637\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"504\",\n \"CardName\" : \"FENIZIAM PANAMA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"+511 4143700 -\",\n \"FederalTaxID\" : \"504\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"alejandra.ganoza@ajegroup.com\",\n \"CardForeignName\" : \"FENIZIAM PANAMA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : -1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"505\",\n \"CardName\" : \"SOCIEDAD DE SERVICIOS LOGISTICOS DELTAEXPRESS S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"60003006\",\n \"FederalTaxID\" : \"373968026\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"mdorado@deltax.la\",\n \"CardForeignName\" : \"SOCIEDAD DE SERVICIOS LOGISTICOS DELTAEXPRESS S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 12,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"506\",\n \"CardName\" : \"SUBWAY INTERNATIONAL B.V. SUCURSAL BOLIVIA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"235720020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"silvia.choque@sayc.com.bo\",\n \"CardForeignName\" : \"SUBWAY INTERNATIONAL B.V. SUCURSAL BOLIVIA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : -1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"578\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"507\",\n \"CardName\" : \"DEMERGE BOLIVIA SRL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"+598 99 232 672\",\n \"FederalTaxID\" : \"452052028\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"acancela@dlocal.com; sheila.barcan@dlocal.com; amuzio@dlocal.com\",\n \"CardForeignName\" : \"DEMERGE BOLIVIA SRL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 13,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"192\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"508\",\n \"CardName\" : \"FOIANINISALUD MEDICINAPREPAGA S.A\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"+591 3 – 337 4100\",\n \"FederalTaxID\" : \"392948020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"facturas.compras@vitaliasalud.com; consuelo.hurtado@vitaliasalud.com\",\n \"CardForeignName\" : \"FOIANINISALUD MEDICINAPREPAGA S.A\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 26,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"268\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"509\",\n \"CardName\" : \"OXYMAT\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"+45 2475 8168\",\n \"FederalTaxID\" : \"509\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"ahe@oxymat.com\",\n \"CardForeignName\" : \"OXYMAT\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 26,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"510\",\n \"CardName\" : \"ASESORAMIENTO EMPRESARIAL S.A. A.E.S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2 2774470 int 107\",\n \"FederalTaxID\" : \"1003999028\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"irma.aduviri@aesa-ratings.bo\",\n \"CardForeignName\" : \"ASESORAMIENTO EMPRESARIAL S.A. A.E.S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"511\",\n \"CardName\" : \"DE LA RUE\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"+44 (0) 7803 249 198\",\n \"FederalTaxID\" : \"720284\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"Montse.Maqueda@uk.delarue.com\",\n \"CardForeignName\" : \"DE LA RUE\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 11,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:28-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:28-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners?%24select=CardCode%2CCardName%2CCardForeignName%2CFederalTaxID%2CCurrency%2CCardType%2CGroupCode%2CPhone1%2CCellular%2CEmailAddress%2CIndustry%2CDebitorAccount%2CProperties1%2CProperties2%2CProperties3%2CU_ClienPadre%2CU_EMBAIDTM%2CValid%2CFrozen\u0026%24skip=520\u0026%24top=20 | Status: 200 | Duration: 90.1648ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:28 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#BusinessPartners\",\n \"value\" : [\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"512\",\n \"CardName\" : \"COSIN LTDA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2355311\",\n \"FederalTaxID\" : \"100681924\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"wilma.cayoja@grupocosin.com\",\n \"CardForeignName\" : \"COSIN LTDA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"513\",\n \"CardName\" : \"Fabiola Antelo Cuellar\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"15712755374\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"fabiola.antelo3@gmail.com\",\n \"CardForeignName\" : \"Fabiola Antelo Cuellar\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 36,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"248\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"514\",\n \"CardName\" : \"WALTER CAMACHO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"79960430\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"oo@gmail.com\",\n \"CardForeignName\" : \"WALTER CAMACHO\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 13,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"515\",\n \"CardName\" : \"CAPRESSO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"79966599\",\n \"FederalTaxID\" : \"174496020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"rmendez@capressocafe.com\",\n \"CardForeignName\" : \"CAPRESSO\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 13,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"516\",\n \"CardName\" : \"MORA CUE\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"5,96E+11\",\n \"FederalTaxID\" : \"516\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"fauzi.antakli@moracue.com\",\n \"CardForeignName\" : \"MORA CUE\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 9,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"517\",\n \"CardName\" : \"FIBRAFILL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"517\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"ezaidans@grupofibrafil.com\",\n \"CardForeignName\" : \"FIBRAFILL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 11,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"518\",\n \"CardName\" : \"WHOLESALE BORTHERS\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"5,96E+11\",\n \"FederalTaxID\" : \"518\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"jazmin.franco@wholesalebrothers.com.py\",\n \"CardForeignName\" : \"WHOLESALE BORTHERS\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 13,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"519\",\n \"CardName\" : \"VILTE \u0026 FLORES ICC SRL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"78950044\",\n \"FederalTaxID\" : \"300502026\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"steelcradcontractorssrl@gmail.com\",\n \"CardForeignName\" : \"VILTE \u0026 FLORES ICC SRL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"621\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"520\",\n \"CardName\" : \"Fundación Jala\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"70787445\",\n \"FederalTaxID\" : \"159790029\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"enrique.torrico@jalasoft.com\",\n \"CardForeignName\" : \"Fundación Jala\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 31,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"276\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"521\",\n \"CardName\" : \"Delta Cargo S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"69052163\",\n \"FederalTaxID\" : \"1025565029\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"mdavalos@deltacargosrl.com\",\n \"CardForeignName\" : \"Delta Cargo S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 12,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"191\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"522\",\n \"CardName\" : \"BRIGARD CASTRO S.A.S.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"5717442200\",\n \"FederalTaxID\" : \"860.047.372-\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"clatorre@bc.com.co\",\n \"CardForeignName\" : \"BRIGARD CASTRO S.A.S.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 18,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"103\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"523\",\n \"CardName\" : \"MARIA CRISTINA CARDENAS PONCE\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"71569961\",\n \"FederalTaxID\" : \"582497\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"criscarpo@hotmail.com\",\n \"CardForeignName\" : \"MARIA CRISTINA CARDENAS PONCE\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 36,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"428\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"524\",\n \"CardName\" : \"Lilac Solutions Bolivia S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"591 2 2791554\",\n \"FederalTaxID\" : \"464758021\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"andres.brockmann@lilacsolutions.com; mcalatayud@emba.com.bo; victoria.huergo@lilacsolutions.com\",\n \"CardForeignName\" : \"Lilac Solutions Bolivia S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 8,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"414\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"525\",\n \"CardName\" : \"RIDETECH BOL S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"59122791554\",\n \"FederalTaxID\" : \"469172024\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"annapavlenko@yandex-team.ru; sergiokukoc@yandex-team.ru; vflores@emba.com.bo\",\n \"CardForeignName\" : \"RIDETECH BOL S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 12,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"530\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"526\",\n \"CardName\" : \"SERPROYTEC S.A.C.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"5,84E+11\",\n \"FederalTaxID\" : \"526\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"gerardo.virla@serprotechenergy.com\",\n \"CardForeignName\" : \"SERPROYTEC S.A.C.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 39,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"552\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"527\",\n \"CardName\" : \"DEVELOOP SOFTWARE, S.L\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"+34 933 002 702\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"rlopezosa@develoop.net\",\n \"CardForeignName\" : \"DEVELOOP SOFTWARE, S.L\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 46,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"193\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"528\",\n \"CardName\" : \"Industrias Feniziam Bolivia S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"76009709\",\n \"FederalTaxID\" : \"467359023\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"lenny.duran.bo@ajegroup.com\",\n \"CardForeignName\" : \"Industrias Feniziam Bolivia S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : -1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"354\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"530\",\n \"CardName\" : \"INVERSIONES TL S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"+51 (1)998 125 545\",\n \"FederalTaxID\" : \"480546020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"kvera@tailoy.com.pe; wgonzalez@tailoy.com.pe; ecaceres@tailoy.com.bo\",\n \"CardForeignName\" : \"INVERSIONES TL S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 13,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"583\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"531\",\n \"CardName\" : \"SGS Argentina S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"+54 2944-532073\",\n \"FederalTaxID\" : \"30547110427\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"Matias.Rainone@sgs.com\",\n \"CardForeignName\" : \"SGS Argentina S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 18,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"555\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"532\",\n \"CardName\" : \"EMPRESA DE GIROS Y REMESAS DE DINERO MORE BOLIVIA S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"(591 – 4) 452-7555\",\n \"FederalTaxID\" : \"146018020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"rubilla@moremt.com\",\n \"CardForeignName\" : \"EMPRESA DE GIROS Y REMESAS DE DINERO MORE BOLIVIA S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:28-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:28-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners?%24select=CardCode%2CCardName%2CCardForeignName%2CFederalTaxID%2CCurrency%2CCardType%2CGroupCode%2CPhone1%2CCellular%2CEmailAddress%2CIndustry%2CDebitorAccount%2CProperties1%2CProperties2%2CProperties3%2CU_ClienPadre%2CU_EMBAIDTM%2CValid%2CFrozen\u0026%24skip=540\u0026%24top=20 | Status: 200 | Duration: 128.9702ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:28 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#BusinessPartners\",\n \"value\" : [\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"533\",\n \"CardName\" : \"TECTONIQ BOLIVIA SRL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"+61 427 095 817\",\n \"FederalTaxID\" : \"478765020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"rob.schaefer@tectoniq.com; mcalatayud@emba.com.bo\",\n \"CardForeignName\" : \"TECTONIQ BOLIVIA SRL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 8,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"586\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"534\",\n \"CardName\" : \"ITACAMBA CEMENTO SA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"33481007\",\n \"FederalTaxID\" : \"1028695029\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"claudia.bulacia@itacamba.com\",\n \"CardForeignName\" : \"ITACAMBA CEMENTO SA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"371\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"535\",\n \"CardName\" : \"COOPERATIVA DE AHORRO Y CREDITO ABIERTA “SAN MARTIN DE PORRES” R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"72117770\",\n \"FederalTaxID\" : \"1028469022\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"rroca@cosmart.coop\",\n \"CardForeignName\" : \"COOPERATIVA DE AHORRO Y CREDITO ABIERTA “SAN MARTIN DE PORRES” R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"536\",\n \"CardName\" : \"PRECISION SPA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"(56) 9342 76742\",\n \"FederalTaxID\" : \"536\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"gustavo.leo.e@gmail.com\",\n \"CardForeignName\" : \"PRECISION SPA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 5,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"509\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"537\",\n \"CardName\" : \"Embajada de Suiza\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"(+591 2) 2617501\",\n \"FederalTaxID\" : \"537\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"johnny.bozo@eda.admin.ch\",\n \"CardForeignName\" : \"Embajada de Suiza\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 34,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"223\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"538\",\n \"CardName\" : \"Patricia Miranda\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"19179922995\",\n \"FederalTaxID\" : \"538\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"ptmiranda@lucreadvisors.com\",\n \"CardForeignName\" : \"Patricia Miranda\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 36,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"490\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"539\",\n \"CardName\" : \"COMERCIAL AGROINDUSTRIAL DE BOLIVIA CABSA S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"75851771\",\n \"FederalTaxID\" : \"256094029\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"angidtorrez@gmail.com\",\n \"CardForeignName\" : \"COMERCIAL AGROINDUSTRIAL DE BOLIVIA CABSA S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"540\",\n \"CardName\" : \"CUATRECASAS\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"+ 34 91 524 76 03\",\n \"FederalTaxID\" : \"540\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"blanca.lanzas@cuatrecasas.com\",\n \"CardForeignName\" : \"CUATRECASAS\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 18,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"541\",\n \"CardName\" : \"GRUPO EMPRESARIAL DE INVERSIONES NACIONAL VIDA S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"3716262\",\n \"FederalTaxID\" : \"255426022\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"grupoinversiones@nacionalseguros.com.bo; ngutierrez@nacionalvida.com.bo\",\n \"CardForeignName\" : \"GRUPO EMPRESARIAL DE INVERSIONES NACIONAL VIDA S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"300\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"542\",\n \"CardName\" : \"LATI TELECOM INFRASTRUCTURE BOLIVIA S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"77812264\",\n \"FederalTaxID\" : \"480560022\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"echazuda@tigo.net.bo\",\n \"CardForeignName\" : \"LATI TELECOM INFRASTRUCTURE BOLIVIA S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 10,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"543\",\n \"CardName\" : \"LG Electronics Perú\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"5114510000\",\n \"FederalTaxID\" : \"20375755344\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"mario.rosazza@lge.com\",\n \"CardForeignName\" : \"LG Electronics Perú\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 13,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"411\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"544\",\n \"CardName\" : \"TECH.EBIZ BOL S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"591 2 2791554\",\n \"FederalTaxID\" : \"479066022\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"annapavlenko@yandex-team.ru; sergiokukoc@yandex-team.ru; vflores@emba.com.bo\",\n \"CardForeignName\" : \"TECH.EBIZ BOL S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 12,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"638\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"545\",\n \"CardName\" : \"SPACE X\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"3102197861\",\n \"FederalTaxID\" : \"545\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"Emmanuel.Cardenas2@spacex.com\",\n \"CardForeignName\" : \"SPACE X\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 46,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"546\",\n \"CardName\" : \"Zurich Insurance Company Ltd\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"12026263600\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"lchalco@emba.com.bo\",\n \"CardForeignName\" : \"Zurich Insurance Company Ltd\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"645\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"547\",\n \"CardName\" : \"PLAMAT\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"ftalavera@plamat.com.bo\",\n \"CardForeignName\" : \"PLAMAT\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"548\",\n \"CardName\" : \"Vivian Aguirre\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"licviviaguirre@gmail.com\",\n \"CardForeignName\" : \"Vivian Aguirre\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"623\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"549\",\n \"CardName\" : \"BLENASTOR BOLIVIA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"59323949880\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"##\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"nrosas@blenastor.com\",\n \"CardForeignName\" : \"BLENASTOR BOLIVIA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 5,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"94\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"550\",\n \"CardName\" : \"RIPIO HOLDING INC\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"550\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"pablo.cabiati@ripio.com\",\n \"CardForeignName\" : \"RIPIO HOLDING INC\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"531\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"551\",\n \"CardName\" : \"CERÁMICA ESTRUCTURAL DE BOLIVIA S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"70155082\",\n \"FederalTaxID\" : \"211544020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"lilian_dp@yahoo.com\",\n \"CardForeignName\" : \"CERÁMICA ESTRUCTURAL DE BOLIVIA S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"126\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"552\",\n \"CardName\" : \"INDUSTRIA CERÁMICA PAVINAL S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"70155082\",\n \"FederalTaxID\" : \"393816027\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"lilian_dp@yahoo.com\",\n \"CardForeignName\" : \"INDUSTRIA CERÁMICA PAVINAL S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"347\"\n }\n ]\n}\n","time":"2025-07-30T10:48:28-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:28-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners?%24select=CardCode%2CCardName%2CCardForeignName%2CFederalTaxID%2CCurrency%2CCardType%2CGroupCode%2CPhone1%2CCellular%2CEmailAddress%2CIndustry%2CDebitorAccount%2CProperties1%2CProperties2%2CProperties3%2CU_ClienPadre%2CU_EMBAIDTM%2CValid%2CFrozen\u0026%24skip=560\u0026%24top=20 | Status: 200 | Duration: 101.834ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:28 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#BusinessPartners\",\n \"value\" : [\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"553\",\n \"CardName\" : \"INDUSTRIA CRUCEÑA DE CERÁMICAS LIMITADA - INCERCRUZ Ltda.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"70155082\",\n \"FederalTaxID\" : \"120875027\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"lilian_dp@yahoo.com\",\n \"CardForeignName\" : \"INDUSTRIA CRUCEÑA DE CERÁMICAS LIMITADA - INCERCRUZ Ltda.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"348\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"554\",\n \"CardName\" : \"MONTERREY\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"jvalencia@monterreysrl.com.bo\",\n \"CardForeignName\" : \"MONTERREY\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"555\",\n \"CardName\" : \"INDUSTRIA DE CERÁMICAS COCHABAMBA LIMITADA - INCERCO Ltda.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"70155082\",\n \"FederalTaxID\" : \"1021643026\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"lilian_dp@yahoo.com\",\n \"CardForeignName\" : \"INDUSTRIA DE CERÁMICAS COCHABAMBA LIMITADA - INCERCO Ltda.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"349\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"556\",\n \"CardName\" : \"Aceros Galvanizados S.R.L. Acergal\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"76750725\",\n \"FederalTaxID\" : \"128711021\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"dmurillo@acergal.com\",\n \"CardForeignName\" : \"Aceros Galvanizados S.R.L. Acergal\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 11,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"5\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"557\",\n \"CardName\" : \"EMPRESA CONSTRUCTORA HORUS Ltda\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2414377\",\n \"FederalTaxID\" : \"1019563029\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"mariosuarez1950@gmail.com\",\n \"CardForeignName\" : \"EMPRESA CONSTRUCTORA HORUS Ltda\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"226\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"558\",\n \"CardName\" : \"ANDESLINO S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"78804989\",\n \"FederalTaxID\" : \"329532020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"lmorenog@emba.com.bo\",\n \"CardForeignName\" : \"ANDESLINO S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : -1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"44\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"559\",\n \"CardName\" : \"BIOFERM S.R.L. (GRUPO VENADO)\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"77700255\",\n \"FederalTaxID\" : \"348402029\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"rolandocespedes@grupovenado.com\",\n \"CardForeignName\" : \"BIOFERM S.R.L. (GRUPO VENADO)\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : -1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"84\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"560\",\n \"CardName\" : \"INDUSTRIAS FACRULESA S.A. (GRUPO VENADO)\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"77700255\",\n \"FederalTaxID\" : \"379587023\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"rolandocespedes@grupovenado.com; eunicequisbert@grupovenado.com\",\n \"CardForeignName\" : \"INDUSTRIAS FACRULESA S.A. (GRUPO VENADO)\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : -1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"353\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"561\",\n \"CardName\" : \"MORENOBALDIVIESO INMOBILIARIA S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"78804989\",\n \"FederalTaxID\" : \"383163029\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"lmorenog@emba.com.bo\",\n \"CardForeignName\" : \"MORENOBALDIVIESO INMOBILIARIA S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 25,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"462\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"562\",\n \"CardName\" : \"VEMASSA (GRUPO VENADO)\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"77700255\",\n \"FederalTaxID\" : \"403420021\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"andrescadima@vemassa.com.bo; diegoticona@grupovenado.com\",\n \"CardForeignName\" : \"VEMASSA ALIMENTOS Y BEBIDAS SA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : -1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"616\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"563\",\n \"CardName\" : \"John Deere (MX)\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"563\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"RomeroRicoAndreaM@JohnDeere.com\",\n \"CardForeignName\" : \"John Deere (MX)\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 15,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"381\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"564\",\n \"CardName\" : \"COMPAÑIA DE INGENIERIA Y ARQUITECTURA BOLIVIA LIMITADA -CIABOL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"-6635271\",\n \"FederalTaxID\" : \"1011411021\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"central@ciabol.com.bo\",\n \"CardForeignName\" : \"COMPAÑIA DE INGENIERIA Y ARQUITECTURA BOLIVIA LIMITADA -CIABOL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"565\",\n \"CardName\" : \"Biotrop Participações S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"41 3099-7300\",\n \"FederalTaxID\" : \"29.818.778/0001-94\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"sebastian.corbacho@biotrop.com.br: daniel.muglia@biotrop.com.br\",\n \"CardForeignName\" : \"Biotrop Participações S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"89\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"566\",\n \"CardName\" : \"Instituto Privado de Oftalmología S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"22790516\",\n \"FederalTaxID\" : \"195436024\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"marcelomurillosasamoto@gmail.com; mcalatayud@emba.com.bo; oftalmurillo@hotmail.com\",\n \"CardForeignName\" : \"Instituto Privado de Oftalmología S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 26,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"360\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"567\",\n \"CardName\" : \"BPOINT S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"(+507) 6203-0362\",\n \"FederalTaxID\" : \"481369028\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"Marjorie.Sencion@brinkspanama.com; torricokr@brinksbolivia.com; serranoje@brinksbolivia.com\",\n \"CardForeignName\" : \"BPOINT S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"101\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"568\",\n \"CardName\" : \"DAISY TRIGOSO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"77299449\",\n \"FederalTaxID\" : \"2355224018\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"Idey-tr@hotmail.com\",\n \"CardForeignName\" : \"DAISY TRIGOSO\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 36,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"569\",\n \"CardName\" : \"VICENTE SCAVONE \u0026 CIA S.A.E. SUCURSAL BOLIVIA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"72157909\",\n \"FederalTaxID\" : \"134619029\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"hernan.gutierrez@lasca.com.py; silvana.jijena@lasca.com.bo; kgutierrez@emba.com.bo\",\n \"CardForeignName\" : \"VICENTE SCAVONE \u0026 CIA S.A.E. SUCURSAL BOLIVIA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 13,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"619\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"570\",\n \"CardName\" : \"Maha Energy \u0026 Starboard Partners\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"5,51E+12\",\n \"FederalTaxID\" : \"570\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"barbara.bittencourt@mahaenergy.ca\",\n \"CardForeignName\" : \"Maha Energy \u0026 Starboard Partners\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 7,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"419\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"571\",\n \"CardName\" : \"PLASTIFORTE SRL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"68581010\",\n \"FederalTaxID\" : \"1009109025\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"zulema.andia@plastiforte.com; facturas@plastiforte.com; aaraoz@emba.com.bo\",\n \"CardForeignName\" : \"PLASTIFORTE SRL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 32,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"504\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"572\",\n \"CardName\" : \"Inttoff Estudio Legal - Laura Hernández\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"1 809 467 8950\",\n \"FederalTaxID\" : \"572\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"lhernandez@inttof.com\",\n \"CardForeignName\" : \"Inttoff Estudio Legal - Laura Hernández\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 18,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"363\"\n }\n ]\n}\n","time":"2025-07-30T10:48:28-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:28-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners?%24select=CardCode%2CCardName%2CCardForeignName%2CFederalTaxID%2CCurrency%2CCardType%2CGroupCode%2CPhone1%2CCellular%2CEmailAddress%2CIndustry%2CDebitorAccount%2CProperties1%2CProperties2%2CProperties3%2CU_ClienPadre%2CU_EMBAIDTM%2CValid%2CFrozen\u0026%24skip=580\u0026%24top=20 | Status: 200 | Duration: 102.303ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:28 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#BusinessPartners\",\n \"value\" : [\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"573\",\n \"CardName\" : \"HOFEX LTDA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"9,72E+11\",\n \"FederalTaxID\" : \"573\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"arj@hofex.hk\",\n \"CardForeignName\" : \"HOFEX LTDA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 13,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"574\",\n \"CardName\" : \"HERMANOS VICENTE\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"77397389\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"jevicente@famosa.com.bo\",\n \"CardForeignName\" : \"HERMANOS VICENTE\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : -1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"575\",\n \"CardName\" : \"GRUPO FAIR PLAY FAMILIA MALDONADO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"75122020\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"alisonm@fairplay.com.bo\",\n \"CardForeignName\" : \"GRUPO FAIR PLAY FAMILIA MALDONADO\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"576\",\n \"CardName\" : \"BLP Abogados S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"+506 7202 8469\",\n \"FederalTaxID\" : \"3101587195\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"turrutia@blplegal.com; proveedorescr@blplegal.com\",\n \"CardForeignName\" : \"BLP Abogados S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 18,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"96\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"577\",\n \"CardName\" : \"Panadería Victoria\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1014779027\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"usuario@ejemplo.com\",\n \"CardForeignName\" : \"Panadería Victoria\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : -1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"488\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"578\",\n \"CardName\" : \"BLP Abogados SA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"22053939\",\n \"FederalTaxID\" : \"3101587195\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"turrutia@blplegal.com\",\n \"CardForeignName\" : \"BLP Abogados SA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 18,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"97\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"579\",\n \"CardName\" : \"HASHI\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"78837122\",\n \"FederalTaxID\" : \"421355020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"naiaranvieira@hotmail.com\",\n \"CardForeignName\" : \"HASHI\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : -1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"315\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"580\",\n \"CardName\" : \"IBLIN CAMILA SARDON ALCOBA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"79110172\",\n \"FederalTaxID\" : \"1333644\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"nsanjines@emba.com.bo\",\n \"CardForeignName\" : \"IBLIN CAMILA SARDON ALCOBA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 36,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"581\",\n \"CardName\" : \"Industrias Saladillo S.A. (Argentina)\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"+54 9 11 5004-2979\",\n \"FederalTaxID\" : \"00099001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"imandel@industriassaladillo.com.ar\",\n \"CardForeignName\" : \"Industrias Saladillo S.A. (Argentina)\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"356\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"582\",\n \"CardName\" : \"Haleon\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"+506 4031-1931\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"priscilla.m.alvarez@haleon.com\",\n \"CardForeignName\" : \"Haleon\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 26,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"312\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"583\",\n \"CardName\" : \"GUNVOR GROUP\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"1,00E+13\",\n \"FederalTaxID\" : \"583\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"Marcelo.ALVAREZ@gunvorgroup.com\",\n \"CardForeignName\" : \"GUNVOR GROUP\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 9,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"584\",\n \"CardName\" : \"ROBALINO LAW\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"+593 98 264 7371\",\n \"FederalTaxID\" : \"584\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"pcordova@robalinolaw.com\",\n \"CardForeignName\" : \"ROBALINO LAW\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 18,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"585\",\n \"CardName\" : \"U.S. Department of Justice - Civil Division - Office of Foreign Litigation\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"50769211224\",\n \"FederalTaxID\" : \"585\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"brennancd@state.gov\",\n \"CardForeignName\" : \"U.S. Department of Justice - Civil Division - Office of Foreign Litigation\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 34,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"606\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"586\",\n \"CardName\" : \"LIBELULA S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"77722222\",\n \"FederalTaxID\" : \"396620021\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"jmealla@todotix.com\",\n \"CardForeignName\" : \"LIBELULA S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"587\",\n \"CardName\" : \"DEVELOOP SRL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"77999995\",\n \"FederalTaxID\" : \"480991023\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"aaraoz@emba.com.bo; administracion@develoop.net; rlopezosa@develoop.net\",\n \"CardForeignName\" : \"DEVELOOP SRL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"194\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"588\",\n \"CardName\" : \"PORZIO, RÍOS, GARCÍA \u0026 ASOCIADOS. LTDA.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"56227290600\",\n \"FederalTaxID\" : \"76.423.608.4\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"asistente@porzio.cl\",\n \"CardForeignName\" : \"PORZIO, RÍOS, GARCÍA \u0026 ASOCIADOS. LTDA.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 18,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"507\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"589\",\n \"CardName\" : \"DISTRIBUIDORA MAYORISTA DE TECNOLOGIA S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"76581533\",\n \"FederalTaxID\" : \"1027967025\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"masuchet@dismac.com.bo\",\n \"CardForeignName\" : \"DISTRIBUIDORA MAYORISTA DE TECNOLOGIA S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 13,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"199\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"590\",\n \"CardName\" : \"MINERA ALCIRA SOCIEDAD ANONIMA ALCIRA S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"2-2150583\",\n \"FederalTaxID\" : \"155512027\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"humberto@newpacificmetals.com; claudia.riveros@newpacificmetals.com\",\n \"CardForeignName\" : \"MINERA ALCIRA SOCIEDAD ANONIMA ALCIRA S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 8,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"450\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"591\",\n \"CardName\" : \"HealthC Management Services S.L\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"70303658\",\n \"FederalTaxID\" : \"591\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"elianavillegas@gmail.com\",\n \"CardForeignName\" : \"HealthC Management Services S.L\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 26,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"317\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"592\",\n \"CardName\" : \"ENERFLEX SERVICES BOLIVIA S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"+591 (3) 3630235\",\n \"FederalTaxID\" : \"305530029\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"recepcionfacturasbolivia@enerflex.com; finance.bolivia@enerflex.com\",\n \"CardForeignName\" : \"ENERFLEX SERVICES BOLIVIA S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 9,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"235\"\n }\n ]\n}\n","time":"2025-07-30T10:48:28-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:29-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners?%24select=CardCode%2CCardName%2CCardForeignName%2CFederalTaxID%2CCurrency%2CCardType%2CGroupCode%2CPhone1%2CCellular%2CEmailAddress%2CIndustry%2CDebitorAccount%2CProperties1%2CProperties2%2CProperties3%2CU_ClienPadre%2CU_EMBAIDTM%2CValid%2CFrozen\u0026%24skip=600\u0026%24top=20 | Status: 200 | Duration: 100.1408ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:29 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#BusinessPartners\",\n \"value\" : [\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"593\",\n \"CardName\" : \"AGECONSULTORES SRL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"76497229\",\n \"FederalTaxID\" : \"487507020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"raul2502_a_p25@hotmail.com\",\n \"CardForeignName\" : \"AGECONSULTORES SRL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 13,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"594\",\n \"CardName\" : \"FIFA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"+41 (0)43-222 7792\",\n \"FederalTaxID\" : \"594\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"daniel.zohny@fifa.org\",\n \"CardForeignName\" : \"FIFA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 29,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"264\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"595\",\n \"CardName\" : \"EFICIENCIA INDUSTRIAL BOLIVIA S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"+591 74162093\",\n \"FederalTaxID\" : \"480510027\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"cristina.eguez@precision.bo; mvidez@emba.com.bo;\",\n \"CardForeignName\" : \"EFICIENCIA INDUSTRIAL BOLIVIA S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 15,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"214\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"596\",\n \"CardName\" : \"Grupo Gadea\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"+591 76570109\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"antonio.portugal@quan.bo\",\n \"CardForeignName\" : \"Grupo Gadea\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 25,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"302\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"597\",\n \"CardName\" : \"Urbanizaciones del Norte S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"3180800\",\n \"FederalTaxID\" : \"317038022\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"jpsaavedra@condominioasai.com\",\n \"CardForeignName\" : \"Urbanizaciones del Norte S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 25,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"613\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"598\",\n \"CardName\" : \"CLUB DE TENIS LA PAZ\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2-2792590\",\n \"FederalTaxID\" : \"10068212025\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"gerente@ctlp.bo\",\n \"CardForeignName\" : \"CLUB DE TENIS LA PAZ\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"599\",\n \"CardName\" : \"3M COMPANY\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"6 719 8332\",\n \"FederalTaxID\" : \"12345\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"eagonzalez@mmm.com\",\n \"CardForeignName\" : \"3M COMPANY\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 40,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"2\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"601\",\n \"CardName\" : \"Alberto Vladimir Pacheco Mendoza\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"77298296\",\n \"FederalTaxID\" : \"189371016\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"alpach100959@gmail.com\",\n \"CardForeignName\" : \"Alberto Vladimir Pacheco Mendoza\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 36,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"28\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"602\",\n \"CardName\" : \"Constructora e Inmobiliaria Wework Srl\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2791554\",\n \"FederalTaxID\" : \"320378020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"svasquez@metabol.com\",\n \"CardForeignName\" : \"Constructora e Inmobiliaria Wework Srl\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"153\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"603\",\n \"CardName\" : \"Embajada de Suecia, La Paz, Bolivia\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"76799107\",\n \"FederalTaxID\" : \"603\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"sofia.renjel@gov.se\",\n \"CardForeignName\" : \"Embajada de Suecia, La Paz, Bolivia\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 34,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"222\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"604\",\n \"CardName\" : \"IDEPRO DESARROLLO EMPRESARIAL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"71240032\",\n \"FederalTaxID\" : \"1020403022\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"lbellott@idepro.com.bo\",\n \"CardForeignName\" : \"IDEPRO DESARROLLO EMPRESARIAL INSTITUCIÓN FINANCIERA DE DESARROLLO\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"336\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"606\",\n \"CardName\" : \"PBAA DESARROLLOS SRL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"67347444\",\n \"FederalTaxID\" : \"493274029\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"sebas_are@hotmail.com\",\n \"CardForeignName\" : \"PBAA DESARROLLOS SRL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"607\",\n \"CardName\" : \"EPICUSINE GROUP LTDA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"+591 77771766\",\n \"FederalTaxID\" : \"483594020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"antonio.portugal@quan.bo\",\n \"CardForeignName\" : \"EPICUSINE GROUP LTDA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"238\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"608\",\n \"CardName\" : \"ANNA STEIGER\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"41786249777\",\n \"FederalTaxID\" : \"608\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"anna.steiger@eda.admin.ch\",\n \"CardForeignName\" : \"ANNA STEIGER\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 36,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"609\",\n \"CardName\" : \"Sika Bolivia SA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"591 62149065\",\n \"FederalTaxID\" : \"1006905020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"mendez.corazon@bo.sika.com;\\tcarvajal.graciana@ar.sika.com; villagra.elvira@bo.sika.com\",\n \"CardForeignName\" : \"Sika Bolivia SA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"561\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"610\",\n \"CardName\" : \"FAMILIA NOSTAS\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"67894431\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"samirnostas@laboratoriosifa.com\",\n \"CardForeignName\" : \"FAMILIA NOSTAS\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 26,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"611\",\n \"CardName\" : \"GB MINERALES Y AGREGADOS S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"(+591 -3) 348-1007\",\n \"FederalTaxID\" : \"193364027\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"bernardo.eid@itacamba.com\",\n \"CardForeignName\" : \"GB MINERALES Y AGREGADOS S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 8,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"612\",\n \"CardName\" : \"YANGO RUSIA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"15152356\",\n \"FederalTaxID\" : \"612\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"natalia.friedman@y-nv.com\",\n \"CardForeignName\" : \"YANGO RUSIA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 12,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"639\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"613\",\n \"CardName\" : \"Super Abasto Sur Ltda. SAS\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1000465024\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"gerencia@sas.com.bo\",\n \"CardForeignName\" : \"Super Abasto Sur Ltda. SAS\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 13,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"579\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"614\",\n \"CardName\" : \"MB Academy\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"591 3 3353515\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"lmoreng@emba.com.bo\",\n \"CardForeignName\" : \"MB Academy\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 27,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"438\"\n }\n ]\n}\n","time":"2025-07-30T10:48:29-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:29-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners?%24select=CardCode%2CCardName%2CCardForeignName%2CFederalTaxID%2CCurrency%2CCardType%2CGroupCode%2CPhone1%2CCellular%2CEmailAddress%2CIndustry%2CDebitorAccount%2CProperties1%2CProperties2%2CProperties3%2CU_ClienPadre%2CU_EMBAIDTM%2CValid%2CFrozen\u0026%24skip=620\u0026%24top=20 | Status: 200 | Duration: 94.8518ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:29 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#BusinessPartners\",\n \"value\" : [\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"615\",\n \"CardName\" : \"AGENCIA EFE S.A.U., S.M.E. SUCURSAL BOLIVIA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"72504832\",\n \"FederalTaxID\" : \"1006575026\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"cquevedo@efe.com\",\n \"CardForeignName\" : \"AGENCIA EFE S.A.U., S.M.E. SUCURSAL BOLIVIA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 33,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"15\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"616\",\n \"CardName\" : \"MARIA VIRGINIA FLORES CRONEMBOLD\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"77977831\",\n \"FederalTaxID\" : \"317394\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"vifcrova@gmail.com\",\n \"CardForeignName\" : \"MARIA VIRGINIA FLORES CRONEMBOLD\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 36,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"432\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"617\",\n \"CardName\" : \"WESTLAND CONSTRUCTION BOLIVIA S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"+591 2 2791554\",\n \"FederalTaxID\" : \"504893023\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"samantha@westlandconstruction.com; vflores@emba.com.bo; epadilla@emba.com.bo\",\n \"CardForeignName\" : \"WESTLAND CONSTRUCTION BOLIVIA S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"631\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"618\",\n \"CardName\" : \"Familia Tejerina Rivera\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"65369962\",\n \"FederalTaxID\" : \"5223807\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"ingrid.clinicaelcarmen@gmail.com\",\n \"CardForeignName\" : \"Familia Tejerina Rivera\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 26,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"252\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"619\",\n \"CardName\" : \"MALAKUT CORREDORES DE REASEGUROS, S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"+507 830 51 11\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"mdavila@emba.com.bo\",\n \"CardForeignName\" : \"MALAKUT CORREDORES DE REASEGUROS, S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"421\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"620\",\n \"CardName\" : \"EGOSCENTRI SRL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"75004600\",\n \"FederalTaxID\" : \"157052020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"administracion@egoscentri.com\",\n \"CardForeignName\" : \"EGOSCENTRI SRL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 13,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"215\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"621\",\n \"CardName\" : \"NANCY CAMPERO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"72100314\",\n \"FederalTaxID\" : \"952112014\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"jvalencia@monterreysrl.com.bo\",\n \"CardForeignName\" : \"NANCY CAMPERO\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 36,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"622\",\n \"CardName\" : \"REEGRECHTSANWÄLTE\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"49 (0) 621-12717-0\",\n \"FederalTaxID\" : \"DE291259600\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"reeg@reeglaw.com\",\n \"CardForeignName\" : \"REEG Rechtsanwaelte PmbB\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 18,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"526\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"623\",\n \"CardName\" : \"Grupo Mathiesen\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"3461101\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"dbarrientos@grupomathiesen.com\",\n \"CardForeignName\" : \"Grupo Mathiesen\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tNO\",\n \"Frozen\" : \"tYES\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 13,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"307\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"624\",\n \"CardName\" : \"ONG ASOCIACIÓN NUEVO CAMINO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"70515325\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"rburgos@emba.com.bo\",\n \"CardForeignName\" : \"ONG ASOCIACIÓN NUEVO CAMINO\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 31,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"479\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"625\",\n \"CardName\" : \"Agropecuaria Acres del Sud S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"33419900\",\n \"FederalTaxID\" : \"157224020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"gvargas@acresdelsud.com.bo\",\n \"CardForeignName\" : \"Agropecuaria Acres del Sud S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"24\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"626\",\n \"CardName\" : \"EMBAJADA DE FRANCIA EN BOLIVIA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2149921\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"ines.kossatikoff@diplomatie.gouv.fr\",\n \"CardForeignName\" : \"EMBAJADA DE FRANCIA EN BOLIVIA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 34,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"220\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"627\",\n \"CardName\" : \"SERVECO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"71735572\",\n \"FederalTaxID\" : \"924725010\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"serveco@serveco.com.bo; contabilidad@emba.com.bo\",\n \"CardForeignName\" : \"JUAN CARLOS ARANIBAR CHINCHILLA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"553\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"628\",\n \"CardName\" : \"SOCIEDAD ACEITERA DEL ORIENTE S.R.L - ADM SAO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"71625082\",\n \"FederalTaxID\" : \"1028167028\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"ecarpio@alicorp.com.bo\",\n \"CardForeignName\" : \"SOCIEDAD ACEITERA DEL ORIENTE S.R.L - ADM SAO\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : -1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"629\",\n \"CardName\" : \"AON CORPORATION\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2790955\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"marta.carreira-slabe@aon.com\",\n \"CardForeignName\" : \"AON CORPORATION\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 23,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"630\",\n \"CardName\" : \"LATHAM AND WATKINS\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"4,42E+11\",\n \"FederalTaxID\" : \"630\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"Victoria.Wan@lw.com\",\n \"CardForeignName\" : \"LATHAM AND WATKINS\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"632\",\n \"CardName\" : \"GLOBAL PARTNERSHIPS\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"O: +12064567861 |\",\n \"FederalTaxID\" : \"632\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"aalor@globalpartnerships.org\",\n \"CardForeignName\" : \"GLOBAL PARTNERSHIPS\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"634\",\n \"CardName\" : \"STE ENERTGY S.P.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"56 2 29519262\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"f.mery@ste-energy.com\",\n \"CardForeignName\" : \"STE ENERTGY S.P.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"664\",\n \"CardName\" : \"BIOVET\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"BIOVET\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"665\",\n \"CardName\" : \"AON BENFIELDE ARGENTINA S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"(011) 5254 - 1600\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"atencionalcliente@aon.com\",\n \"CardForeignName\" : \"AON BENFIELDE ARGENTINA S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:29-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:29-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners?%24select=CardCode%2CCardName%2CCardForeignName%2CFederalTaxID%2CCurrency%2CCardType%2CGroupCode%2CPhone1%2CCellular%2CEmailAddress%2CIndustry%2CDebitorAccount%2CProperties1%2CProperties2%2CProperties3%2CU_ClienPadre%2CU_EMBAIDTM%2CValid%2CFrozen\u0026%24skip=640\u0026%24top=20 | Status: 200 | Duration: 103.3636ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:29 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#BusinessPartners\",\n \"value\" : [\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"666\",\n \"CardName\" : \"JOSE ALFREDO CISNEROS PORTALES\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"JOSE ALFREDO CISNEROS PORTALES\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"667\",\n \"CardName\" : \"GALLO BARRIOS PICKMANN\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"+51 1 208 4200\",\n \"FederalTaxID\" : \"667\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"usuario@ejemplo.com\",\n \"CardForeignName\" : \"GALLO BARRIOS PICKMANN\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"670\",\n \"CardName\" : \"CAMPUS TALENT BOLIVIA S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"bolivia@aulacampustalent.com\",\n \"CardForeignName\" : \"CAMPUS TALENT BOLIVIA S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"671\",\n \"CardName\" : \"JHONSON \u0026 JHONSON DEL PARAGUAY S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"59521 608800\",\n \"FederalTaxID\" : \"671\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"JLOPEZ02@ITS.JNJ.COM\",\n \"CardForeignName\" : \"JHONSON \u0026 JHONSON DEL PARAGUAY S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"672\",\n \"CardName\" : \"ANDRES SOLBALVARRO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"ANDRES SOLBALVARRO\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 36,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"45\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"673\",\n \"CardName\" : \"PEPSICO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2770808\",\n \"FederalTaxID\" : \"180544021\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"adriana.montealegre@pepsico.com\",\n \"CardForeignName\" : \"PEPSICO\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"674\",\n \"CardName\" : \"DECCO LIMITED\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"01635 556600\",\n \"FederalTaxID\" : \"674\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"deccoinfo@decco.co.uk\",\n \"CardForeignName\" : \"DECCO LIMITED\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"675\",\n \"CardName\" : \"NADDRA RESOURCES PTE LTD\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"675\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"francois.beuzelin@naddra.com\",\n \"CardForeignName\" : \"NADDRA RESOURCES PTE LTD\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"676\",\n \"CardName\" : \"PETREVEN SPA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"39-523354211\",\n \"FederalTaxID\" : \"676\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"usuario@ejemplo.com\",\n \"CardForeignName\" : \"PETREVEN SPA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"677\",\n \"CardName\" : \"GALANTE CIMENTACIONES S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"4421900\",\n \"FederalTaxID\" : \"677\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"usuario@ejemplo.com\",\n \"CardForeignName\" : \"GALANTE CIMENTACIONES S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"678\",\n \"CardName\" : \"LIPESA DEL PERU\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"+51 997 353 465\",\n \"FederalTaxID\" : \"678\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"info@perutrademark.com.pe\",\n \"CardForeignName\" : \"LIPESA DEL PERU\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"679\",\n \"CardName\" : \"DAEWOO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"DAEWOO\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"68\",\n \"CardName\" : \"AFFIFE CHAMAS DE SPRINGER\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"AFFIFE CHAMAS DE SPRINGER\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"680\",\n \"CardName\" : \"BARDAHL MANUFACTURING CORPORATION\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"LisaV@seedip.com\",\n \"CardForeignName\" : \"BARDAHL MANUFACTURING CORPORATION\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"681\",\n \"CardName\" : \"AGROCERES MULTIMIX NUTRICAO ANIMAL LTDA.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"55 19 3526-8670\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"ieda@agroceres.com\",\n \"CardForeignName\" : \"AGROCERES MULTIMIX NUTRICAO ANIMAL LTDA.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"682\",\n \"CardName\" : \"MARIANELA CHAMAS\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"MARIANELA CHAMAS\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"683\",\n \"CardName\" : \"COSMETICA NACIONAL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"(56-2) 24387900\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"usuario@ejemplo.com\",\n \"CardForeignName\" : \"COSMETICA NACIONAL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"684\",\n \"CardName\" : \"GRUPO ATLAS\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"GRUPO ATLAS\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"685\",\n \"CardName\" : \"CESAR GONZALES\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"CESAR GONZALES\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"686\",\n \"CardName\" : \"ALDO VERGARA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"avergara@convermaq.cl\",\n \"CardForeignName\" : \"ALDO VERGARA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 36,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"30\"\n }\n ]\n}\n","time":"2025-07-30T10:48:29-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:29-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners?%24select=CardCode%2CCardName%2CCardForeignName%2CFederalTaxID%2CCurrency%2CCardType%2CGroupCode%2CPhone1%2CCellular%2CEmailAddress%2CIndustry%2CDebitorAccount%2CProperties1%2CProperties2%2CProperties3%2CU_ClienPadre%2CU_EMBAIDTM%2CValid%2CFrozen\u0026%24skip=660\u0026%24top=20 | Status: 200 | Duration: 88.401ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:29 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#BusinessPartners\",\n \"value\" : [\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"687\",\n \"CardName\" : \"FELIPE GALDO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"FELIPE GALDO\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"689\",\n \"CardName\" : \"VOITH HYDRA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"4532688\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"Cibele.Barbara@voith.com\",\n \"CardForeignName\" : \"VOITH HYDRA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"690\",\n \"CardName\" : \"ANDEANTRADE S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2317355\",\n \"FederalTaxID\" : \"327252027\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"andeantrade@andeantrade.com\",\n \"CardForeignName\" : \"ANDEANTRADE S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"691\",\n \"CardName\" : \"LLOYD'S REGISTER AMERICAS\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"(281) 675-3100\",\n \"FederalTaxID\" : \"691\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"usuario@ejemplo.com\",\n \"CardForeignName\" : \"LLOYD'S REGISTER AMERICAS\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"692\",\n \"CardName\" : \"UBS\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"UBS\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"693\",\n \"CardName\" : \"GRUPO LALA S.A.B. DE C.V.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"8712293940\",\n \"FederalTaxID\" : \"693\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"lala800@grupolala.com\",\n \"CardForeignName\" : \"GRUPO LALA S.A.B. DE C.V.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"694\",\n \"CardName\" : \"SAMSUNG KDB\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"taejoon00.park@samsung.com\",\n \"CardForeignName\" : \"SAMSUNG KDB\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"695\",\n \"CardName\" : \"EXPRO WORLDWIDE B.V.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"EXPRO WORLDWIDE B.V.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"696\",\n \"CardName\" : \"MAGNESITA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"natalia.vieira@magnesita.com\",\n \"CardForeignName\" : \"MAGNESITA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"697\",\n \"CardName\" : \"YOLANDA BAUTISTA DE SARDES\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"YOLANDA BAUTISTA DE SARDES\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"698\",\n \"CardName\" : \"DAVIS POLK \u0026 WARDWELL LLP\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"DAVIS POLK \u0026 WARDWELL LLP\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"70\",\n \"CardName\" : \"AGROPARTNERS S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"33490100\",\n \"FederalTaxID\" : \"1013879029\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"jroca@agropartners.com.bo\",\n \"CardForeignName\" : \"AGROPARTNERS S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"700\",\n \"CardName\" : \"GOC SERVICIOS INTEGRADOS DE LA CONSTRUCCION\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"78805570\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"miguelrodriguez@gocsa.es\",\n \"CardForeignName\" : \"GOC SERVICIOS INTEGRADOS DE LA CONSTRUCCION\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"702\",\n \"CardName\" : \"FERNANDO AÑEZ\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"FERNANDO AÑEZ\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"704\",\n \"CardName\" : \"GRUPO SAN JOSE\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"+34 91 806 54 00\",\n \"FederalTaxID\" : \"704\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"central@gruposanjose.biz\",\n \"CardForeignName\" : \"GRUPO SAN JOSE\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"705\",\n \"CardName\" : \"SEGURITECH PRIVADA S.A. DE C.V.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"52-5550830000\",\n \"FederalTaxID\" : \"705\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"emmanuel.cardenas@seguritech.com\",\n \"CardForeignName\" : \"SEGURITECH PRIVADA S.A. DE C.V.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"707\",\n \"CardName\" : \"NILPETER USA INC\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"+51 9872 20671\",\n \"FederalTaxID\" : \"707\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"jpp@nilpeter.com\",\n \"CardForeignName\" : \"NILPETER USA INC\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"71\",\n \"CardName\" : \"ALBERTO RIVERA REARTE\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"ALBERTO RIVERA REARTE\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 36,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"27\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"717\",\n \"CardName\" : \"GLOBAL PARTNERSHIPS SOCIAL INVESTMENT FUND 6.0\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"O: +12064567861 |\",\n \"FederalTaxID\" : \"717\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"aalor@globalpartnerships.org\",\n \"CardForeignName\" : \"GLOBAL PARTNERSHIPS SOCIAL INVESTMENT FUND 6.0\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"72\",\n \"CardName\" : \"ARIAS INFRAESTRUCTURAS S.A. SUCURSAL BOLIVIA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"72985451\",\n \"FederalTaxID\" : \"292332029\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"jbrieba@ariasinfraestructuras.com\",\n \"CardForeignName\" : \"ARIAS INFRAESTRUCTURAS S.A. SUCURSAL BOLIVIA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:29-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:29-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners?%24select=CardCode%2CCardName%2CCardForeignName%2CFederalTaxID%2CCurrency%2CCardType%2CGroupCode%2CPhone1%2CCellular%2CEmailAddress%2CIndustry%2CDebitorAccount%2CProperties1%2CProperties2%2CProperties3%2CU_ClienPadre%2CU_EMBAIDTM%2CValid%2CFrozen\u0026%24skip=680\u0026%24top=20 | Status: 200 | Duration: 114.5709ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:29 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#BusinessPartners\",\n \"value\" : [\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"73\",\n \"CardName\" : \"ASOCIACION DE COPROPIETARIOS DE LA TORRE EMPRESARIAL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"3334555\",\n \"FederalTaxID\" : \"133981028\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"adm_cainco@acelerate.com\",\n \"CardForeignName\" : \"ASOCIACION DE COPROPIETARIOS DE LA TORRE EMPRESARIAL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 31,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"731\",\n \"CardName\" : \"Albagli Zaliasnik\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"Albagli Zaliasnik\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 36,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"26\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"74\",\n \"CardName\" : \"ASTRIX S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"4 4268369\",\n \"FederalTaxID\" : \"1023053020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"jimenalora@astrixsa.com\",\n \"CardForeignName\" : \"ASTRIX S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 5,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"744\",\n \"CardName\" : \"AGENCIA DE MARKETINGPROMOCIONAL LUCKY BOLIVIA S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"5,12E+11\",\n \"FederalTaxID\" : \"376809026\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"mgutierrez@lucky.com.bo; saguilera@grupolucky.com; dsoto@xplora.net\",\n \"CardForeignName\" : \"AGENCIA DE MARKETINGPROMOCIONAL LUCKY BOLIVIA S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 13,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"305\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"745\",\n \"CardName\" : \"EKF DANMARKS EKSPORTKREDI\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"+45 35 46 26 00\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"ekf@ekf.dk\",\n \"CardForeignName\" : \"EKF DANMARKS EKSPORTKREDI\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"75\",\n \"CardName\" : \"AUDITEL INGENIERIA Y SERVICIOS S.L. SUCURSAL BOLIVIA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"917211848\",\n \"FederalTaxID\" : \"340188024\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"agonzalez@auditel.es\",\n \"CardForeignName\" : \"AUDITEL INGENIERIA Y SERVICIOS S.L. SUCURSAL BOLIVIA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"752\",\n \"CardName\" : \"LG ELECTRONICS INC. CHILE LIMITADA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"752\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"LG ELECTRONICS INC. CHILE LIMITADA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tNO\",\n \"Frozen\" : \"tYES\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"742\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"754\",\n \"CardName\" : \"FUDDRUCKERS\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"FUDDRUCKERS\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"757\",\n \"CardName\" : \"BIOTECNICA S.R.L. (GALMEDIC)\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"+595 21 205 873\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"operaciones.export@galmedic.com.py\",\n \"CardForeignName\" : \"BIOTECNICA S.R.L. (GALMEDIC)\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"758\",\n \"CardName\" : \"FIDELIDADE \u0026 COMPANHIA DE SEGUROS, S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"(351) 218458515\",\n \"FederalTaxID\" : \"758\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"sinistros.automovel@fidelidade.pt\",\n \"CardForeignName\" : \"FIDELIDADE \u0026 COMPANHIA DE SEGUROS, S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"759\",\n \"CardName\" : \"ROLLS-ROYCE BRASIL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"55 (21) 98145-6015\",\n \"FederalTaxID\" : \"759\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"Ivan.Dilly@rolls-royce.com\",\n \"CardForeignName\" : \"ROLLS-ROYCE BRASIL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"76\",\n \"CardName\" : \"BANCO DO BRASIL S.A. SUC. BOLIVIA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"591 3 3120496\",\n \"FederalTaxID\" : \"1006973025\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"tgutierrez@bb.com.br\",\n \"CardForeignName\" : \"BANCO DO BRASIL S.A. SUC. BOLIVIA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"71\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"760\",\n \"CardName\" : \"WIKA ARGENTINA S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"54 11 5442 00 00\",\n \"FederalTaxID\" : \"760\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"dbidjimenian@wika.com.ar\",\n \"CardForeignName\" : \"WIKA ARGENTINA S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"768\",\n \"CardName\" : \"GRUPO HYCSA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"768\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"edith.rodriguez@grupohycsa.com.mx\",\n \"CardForeignName\" : \"GRUPO HYCSA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"769\",\n \"CardName\" : \"LAFAYETTE (COLOMBIA)\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"LAFAYETTE (COLOMBIA)\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"77\",\n \"CardName\" : \"BEATRIZ GIRALDO MUÑOZ\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"beatrizeugeniagiraldom@gmail.com\",\n \"CardForeignName\" : \"BEATRIZ GIRALDO MUÑOZ\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : -1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"770\",\n \"CardName\" : \"PAISAJISMO URBANO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"+34 965 688 134\",\n \"FederalTaxID\" : \"770\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"comunicacion@paisajismourbano.com\",\n \"CardForeignName\" : \"PAISAJISMO URBANO\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"778\",\n \"CardName\" : \"PHARMARIS BOLIVIA SRL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"61839999\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"fsiredey@pharmaris.com\",\n \"CardForeignName\" : \"PHARMARIS BOLIVIA SRL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"78\",\n \"CardName\" : \"BULLA CREATIVA S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"76207972\",\n \"FederalTaxID\" : \"369148026\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"fteran@bulla.com.bo\",\n \"CardForeignName\" : \"BULLA CREATIVA S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 13,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"782\",\n \"CardName\" : \"SACYR\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"329520021\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"roxana.rivero@sacyrbolivia.com; arnold.ticona@sacyrbolivia.com; edwin.oliva@sacyrbolivia.com\",\n \"CardForeignName\" : \"SACYR\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 42,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"826\"\n }\n ]\n}\n","time":"2025-07-30T10:48:29-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:29-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners?%24select=CardCode%2CCardName%2CCardForeignName%2CFederalTaxID%2CCurrency%2CCardType%2CGroupCode%2CPhone1%2CCellular%2CEmailAddress%2CIndustry%2CDebitorAccount%2CProperties1%2CProperties2%2CProperties3%2CU_ClienPadre%2CU_EMBAIDTM%2CValid%2CFrozen\u0026%24skip=700\u0026%24top=20 | Status: 200 | Duration: 115.7437ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:30 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#BusinessPartners\",\n \"value\" : [\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"786\",\n \"CardName\" : \"MOELLER IP ADVISORS\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"+54 11 4781-1770\",\n \"FederalTaxID\" : \"786\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"Luisina.Lanza@moellerip.com\",\n \"CardForeignName\" : \"MOELLER IP ADVISORS\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"787\",\n \"CardName\" : \"BIOMERIEUX\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"54 11 5555 6800\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"Eduardo.peluffo@biomerieux.com\",\n \"CardForeignName\" : \"BIOMERIEUX\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"789\",\n \"CardName\" : \"CBRE, INC\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"+1 800 799 6523\",\n \"FederalTaxID\" : \"789\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"Lucila.Bolli@cbre.com\",\n \"CardForeignName\" : \"CBRE, INC\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"79\",\n \"CardName\" : \"BUPA INSURANCE (BOLIVIA) S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"3424264\",\n \"FederalTaxID\" : \"158270027\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"kquesada@bupalatinamerica.com\",\n \"CardForeignName\" : \"BUPA INSURANCE (BOLIVIA) S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"111\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"793\",\n \"CardName\" : \"GREENBERG TRAURIG, P.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"3055790542\",\n \"FederalTaxID\" : \"99011\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"rodriguezr@gtlaw.com\",\n \"CardForeignName\" : \"GREENBERG TRAURIG, P.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 18,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"795\",\n \"CardName\" : \"SAN MIGUEL INDUSTRIAS\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"5113365100\",\n \"FederalTaxID\" : \"99011\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"karpe@smi.com.pe\",\n \"CardForeignName\" : \"SAN MIGUEL INDUSTRIAS\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 11,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"798\",\n \"CardName\" : \"EMBAJADA DE COLOMBIA EN BOLIVIA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2427252\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"cduran@procolombia.co\",\n \"CardForeignName\" : \"EMBAJADA DE COLOMBIA EN BOLIVIA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 34,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"799\",\n \"CardName\" : \"MARVAL, OFARRELL, MAIRAL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"5411 43100100\",\n \"FederalTaxID\" : \"799\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"EMS@marval.com\",\n \"CardForeignName\" : \"MARVAL, OFARRELL, MAIRAL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 18,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"80\",\n \"CardName\" : \"C.I. ENERGIA SOLAR S.A.S E.S. WINDOWS SUCURSAL BOLIVIA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"335024020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"jdiaz@energiasolarsa.com\",\n \"CardForeignName\" : \"C.I. ENERGIA SOLAR S.A.S E.S. WINDOWS SUCURSAL BOLIVIA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"801\",\n \"CardName\" : \"GAVILON PERU SRL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"(511) 6522323\",\n \"FederalTaxID\" : \"801\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"raul.condori@gavilon.com\",\n \"CardForeignName\" : \"GAVILON PERU SRL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"803\",\n \"CardName\" : \"ALVAREZ \u0026 MARSAL HOLDINGS, LLC\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"2127639799\",\n \"FederalTaxID\" : \"803\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"omorgenstern@alvarezandmarsal.com\",\n \"CardForeignName\" : \"ALVAREZ \u0026 MARSAL HOLDINGS, LLC\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 18,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"805\",\n \"CardName\" : \"CONVINGTON \u0026 BURLING LLP\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"+44 20 7067 2314\",\n \"FederalTaxID\" : \"805\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"rdirkzwager@cov.com\",\n \"CardForeignName\" : \"CONVINGTON \u0026 BURLING LLP\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 18,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"806\",\n \"CardName\" : \"HSB - THE HARTFORD STEAM BOILER\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"18607225724\",\n \"FederalTaxID\" : \"806\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"Jean_Cohn@hsb.com\",\n \"CardForeignName\" : \"HSB - THE HARTFORD STEAM BOILER\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 23,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"809\",\n \"CardName\" : \"COPAGAZ\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"11 21633924\",\n \"FederalTaxID\" : \"809\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"trivera@vradv.com.br\",\n \"CardForeignName\" : \"COPAGAZ\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tNO\",\n \"Frozen\" : \"tYES\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 7,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"813\",\n \"CardName\" : \"Votorantin Cimentos\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"+55 11 3019 6056\",\n \"FederalTaxID\" : \"813\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"Tom.Hosted@CliffordChance.com\",\n \"CardForeignName\" : \"Votorantin Cimentos\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 8,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"626\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"814\",\n \"CardName\" : \"Farmex S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"(511) 630 6400 Anexo\",\n \"FederalTaxID\" : \"2010014158\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"xnarro@farmex.com.pe; kgutierrez@emba.com.bo\",\n \"CardForeignName\" : \"Farmex S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 40,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"825\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"818\",\n \"CardName\" : \"CREDIT SUISSE SERVICIOS (MEXICO), S.A. DE C.V.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"+52 55 5283 8990\",\n \"FederalTaxID\" : \"818\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"gabriela.contreras@credit-suisse.com\",\n \"CardForeignName\" : \"CREDIT SUISSE SERVICIOS (MEXICO), S.A. DE C.V.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"177\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"819\",\n \"CardName\" : \"DEHENG LAW OFFICES\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"86-10-52682902\",\n \"FederalTaxID\" : \"819\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"liym@dehenglaw.com\",\n \"CardForeignName\" : \"DEHENG LAW OFFICES\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 18,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"82\",\n \"CardName\" : \"CENTRO MISIONERO MARYKNOLL EN AMERICA LATINA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1020797029\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"cllobet@emba.com.bo\",\n \"CardForeignName\" : \"CENTRO MISIONERO MARYKNOLL EN AMERICA LATINA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 31,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"822\",\n \"CardName\" : \"TRAXYS GROUP\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"mirari.barriola@traxys.com\",\n \"CardForeignName\" : \"TRAXYS GROUP\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 8,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"603\"\n }\n ]\n}\n","time":"2025-07-30T10:48:30-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:30-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners?%24select=CardCode%2CCardName%2CCardForeignName%2CFederalTaxID%2CCurrency%2CCardType%2CGroupCode%2CPhone1%2CCellular%2CEmailAddress%2CIndustry%2CDebitorAccount%2CProperties1%2CProperties2%2CProperties3%2CU_ClienPadre%2CU_EMBAIDTM%2CValid%2CFrozen\u0026%24skip=720\u0026%24top=20 | Status: 200 | Duration: 111.5074ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:30 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#BusinessPartners\",\n \"value\" : [\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"824\",\n \"CardName\" : \"EF COMPOSITE TECHNOLOGIES, L.P.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"(800) 433-6723\",\n \"FederalTaxID\" : \"824\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"rong@e-force.com\",\n \"CardForeignName\" : \"EF COMPOSITE TECHNOLOGIES, L.P.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 29,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"827\",\n \"CardName\" : \"Constellation Software\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"647-241-8520\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"mdennison@csisoftware.com\",\n \"CardForeignName\" : \"Constellation Software\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 46,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"149\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"83\",\n \"CardName\" : \"CHONGQING CISDI ENGINEERING CONSULTING CO. LTD SUCURSAL BOLIVIA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"350924025\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"tingting5jbh@hotmail.com\",\n \"CardForeignName\" : \"CHONGQING CISDI ENGINEERING CONSULTING CO. LTD SUCURSAL BOLIVIA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"834\",\n \"CardName\" : \"PHILLIPS 66 COMPANY\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"(+1) 8327651208\",\n \"FederalTaxID\" : \"834\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"Amanda.G.Grey@p66.com\",\n \"CardForeignName\" : \"PHILLIPS 66 COMPANY\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 7,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"836\",\n \"CardName\" : \"BLENASTOR\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"59323949880\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"USD\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"nrosas@blenastor.com\",\n \"CardForeignName\" : \"BLENASTOR\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 5,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"838\",\n \"CardName\" : \"HUSQVARNA GROUP\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"+1 704 408 3446\",\n \"FederalTaxID\" : \"838\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"monica.rodrigues@husqvarnagroup.com\",\n \"CardForeignName\" : \"HUSQVARNA GROUP\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 15,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"84\",\n \"CardName\" : \"CINE PAPAYA BOLIVIA S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"3419565\",\n \"FederalTaxID\" : \"300136026\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"mfranco@fandango.com\",\n \"CardForeignName\" : \"CINE PAPAYA BOLIVIA S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"840\",\n \"CardName\" : \"IFU - INVESTMENT FUND FOR DEVELOPING COUNTRIES\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"Dir: +45 33 44 12 1\",\n \"FederalTaxID\" : \"840\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"jtv@ifu.dk\",\n \"CardForeignName\" : \"IFU - INVESTMENT FUND FOR DEVELOPING COUNTRIES\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"845\",\n \"CardName\" : \"SKADDEN, ARPS, SLATE, MEAGHER \u0026 FLOM LLP\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"12127352912\",\n \"FederalTaxID\" : \"845\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"cecelia.macdonald@skadden.com\",\n \"CardForeignName\" : \"SKADDEN, ARPS, SLATE, MEAGHER \u0026 FLOM LLP\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 18,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"848\",\n \"CardName\" : \"ERNST \u0026 YOUNG SOCIETE D' AVOCATS\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"3,31E+11\",\n \"FederalTaxID\" : \"848\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"patrice.mottier@ey-avocats.com\",\n \"CardForeignName\" : \"ERNST \u0026 YOUNG SOCIETE D' AVOCATS\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 18,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"849\",\n \"CardName\" : \"GLOBAL PARTNERSHIPS SOCIAL INVESTMENT FUND 5.0, LLC.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"O: +12064567861 |\",\n \"FederalTaxID\" : \"849\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"aalor@globalpartnerships.org\",\n \"CardForeignName\" : \"GLOBAL PARTNERSHIPS SOCIAL INVESTMENT FUND 5.0, LLC.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"85\",\n \"CardName\" : \"CINECENTER BOLIVIA SRL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"3112528\",\n \"FederalTaxID\" : \"356582025\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"scardenas@caribbeancinemas.com\",\n \"CardForeignName\" : \"CINECENTER BOLIVIA SRL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"850\",\n \"CardName\" : \"GOJA POWERING ECOMMERCE - GOJA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"4 4506250\",\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"danielm@goja.com\",\n \"CardForeignName\" : \"GOJA POWERING ECOMMERCE - GOJA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"851\",\n \"CardName\" : \"MAERSK LINE PERU S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"20451770099\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"claudia.ausejo@maersk.com\",\n \"CardForeignName\" : \"MAERSK LINE PERU S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 12,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"852\",\n \"CardName\" : \"CRÉDITO CON EDUCACIÓN RURAL INSTITUCIÓN FINANCIERA DE DESARROLLO - CRECER IFD\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"72031701\",\n \"FederalTaxID\" : \"1017083029\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"mguzman@crecerifd.bo\",\n \"CardForeignName\" : \"CRÉDITO CON EDUCACIÓN RURAL INSTITUCIÓN FINANCIERA DE DESARROLLO - CRECER IFD\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"178\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"859\",\n \"CardName\" : \"BDO BARCELONA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"2917424\",\n \"FederalTaxID\" : \"859\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"cmercado@bdobolivia.com\",\n \"CardForeignName\" : \"BDO BARCELONA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 18,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"86\",\n \"CardName\" : \"CMI BOLIVIA S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"3471799\",\n \"FederalTaxID\" : \"356578027\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"scardenas@caribbeancinemas.com\",\n \"CardForeignName\" : \"CMI BOLIVIA S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"860\",\n \"CardName\" : \"EXTERRAN ENERGY SOLUTIONS L.P.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"3630200\",\n \"FederalTaxID\" : \"99011\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"javier.carrazco@exterram.com\",\n \"CardForeignName\" : \"EXTERRAN ENERGY SOLUTIONS L.P.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 9,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"87\",\n \"CardName\" : \"CONDOMINIO ZERO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"admcondominiozero@hotmail.com\",\n \"CardForeignName\" : \"CONDOMINIO ZERO\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 13,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"145\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"871\",\n \"CardName\" : \"IRB BRASIL RE\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"55 11 3147 7789\",\n \"FederalTaxID\" : \"871\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"rafael.nepomuceno@mattosfilho.com.br\",\n \"CardForeignName\" : \"IRB BRASIL RE\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 23,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:30-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:30-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners?%24select=CardCode%2CCardName%2CCardForeignName%2CFederalTaxID%2CCurrency%2CCardType%2CGroupCode%2CPhone1%2CCellular%2CEmailAddress%2CIndustry%2CDebitorAccount%2CProperties1%2CProperties2%2CProperties3%2CU_ClienPadre%2CU_EMBAIDTM%2CValid%2CFrozen\u0026%24skip=740\u0026%24top=20 | Status: 200 | Duration: 114.7497ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:30 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#BusinessPartners\",\n \"value\" : [\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"873\",\n \"CardName\" : \"Ipsos Group\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"Renalda.Harfouche@ipsos.com\",\n \"CardForeignName\" : \"Ipsos Group\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"369\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"879\",\n \"CardName\" : \"SOCIETE DE PROMOTION ET DE PARTICIPATION POUR LA COOPERATION ECONOMIQUE S.A. (PROPARCO)\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"+ 33 1 53 44 87 13\",\n \"FederalTaxID\" : \"879\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"greindelsantorob@proparco.fr\",\n \"CardForeignName\" : \"SOCIETE DE PROMOTION ET DE PARTICIPATION POUR LA COOPERATION ECONOMIQUE S.A. (PROPARCO)\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"88\",\n \"CardName\" : \"CONESA KIEFFER \u0026 ASOCIADOS CORREDORES DE REASEGURO S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2773444\",\n \"FederalTaxID\" : \"1000871023\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"cquispe@cka.bo\",\n \"CardForeignName\" : \"CONESA KIEFFER \u0026 ASOCIADOS CORREDORES DE REASEGURO S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"880\",\n \"CardName\" : \"CNHI INDUSTRIAL CAPITAL SOUTH AMERICA SPA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"880\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"mariavictoria.pintos@cnhind.com\",\n \"CardForeignName\" : \"CNHI INDUSTRIAL CAPITAL SOUTH AMERICA SPA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"882\",\n \"CardName\" : \"Google LLC (Google)\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"882\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"belenarana@google.com\",\n \"CardForeignName\" : \"Google LLC\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 46,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"296\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"884\",\n \"CardName\" : \"TMF GROUP\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"(+569) 95396169\",\n \"FederalTaxID\" : \"884\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"angelica.arteta@tmf-group.com; brenda.iggstrom@tmf-group.com\",\n \"CardForeignName\" : \"TMF GROUP\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"598\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"886\",\n \"CardName\" : \"EXPORT DEVELOPMENT CANADA (EDC)\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"+44 20 7444 2019\",\n \"FederalTaxID\" : \"886\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"cs-@nortonrosefulbright.com\",\n \"CardForeignName\" : \"EXPORT DEVELOPMENT CANADA (EDC)\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"89\",\n \"CardName\" : \"CONSTRUCTORA SAN JOSE S.A. - SUCURSAL BOLIVIA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2441600\",\n \"FederalTaxID\" : \"314056026\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"jorge.gallego@gruposanjose.biz\",\n \"CardForeignName\" : \"CONSTRUCTORA SAN JOSE S.A. - SUCURSAL BOLIVIA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"155\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"892\",\n \"CardName\" : \"BKM INTERNACIONAL SOCIEDAD SIMPLE\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"59521 446706\",\n \"FederalTaxID\" : \"80098135-9\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"leyla.apud@berke.com.py\",\n \"CardForeignName\" : \"BKM INTERNACIONAL SOCIEDAD SIMPLE\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 18,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"893\",\n \"CardName\" : \"ADMINISTRACIÓN \u0026 ESTRUCTURAS PHOENIXTORRES II S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"72688198\",\n \"FederalTaxID\" : \"376007028\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"oolmos@phoenixintnl.com; apinvoicesbo@phoenixintnl.com\",\n \"CardForeignName\" : \"ADMINISTRACIÓN \u0026 ESTRUCTURAS PHOENIXTORRES II S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 13,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"9\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"894\",\n \"CardName\" : \"SERVICIOS DE ALQUILERES PHOENIXTOWER S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"70518989\",\n \"FederalTaxID\" : \"375279029\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"apinvoicesbo@phoenixintnl.com;\",\n \"CardForeignName\" : \"SERVICIOS DE ALQUILERES PHOENIXTOWER S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 10,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"554\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"897\",\n \"CardName\" : \"IPSOS APOYO OPINION Y MERCADO S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2167676\",\n \"FederalTaxID\" : \"1016423027\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"eric.escobar@ipso.com\",\n \"CardForeignName\" : \"IPSOS APOYO OPINION Y MERCADO S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 18,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"899\",\n \"CardName\" : \"VECINOS DE LA URBANIZACION BOSQUES DE LA COLINA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"e_ingvar@hotmail.com\",\n \"CardForeignName\" : \"VECINOS DE LA URBANIZACION BOSQUES DE LA COLINA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 25,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"90\",\n \"CardName\" : \"CORPORACION ANDINA DE FOMENTO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"2648120\",\n \"FederalTaxID\" : \"000-9900100\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"facturascj@caf.com; SBLACUTT@caf.com; GANSELMI@caf.com\",\n \"CardForeignName\" : \"CORPORACION ANDINA DE FOMENTO\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 31,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"168\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"900\",\n \"CardName\" : \"MARIA DEL CARMEN MASANES\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"3902935012\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"mcmasanes@hotmail.com\",\n \"CardForeignName\" : \"MARIA DEL CARMEN MASANES\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 36,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"429\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"901\",\n \"CardName\" : \"Mercedes La zarte\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"2089161171\",\n \"FederalTaxID\" : \"901\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"natsy81@gmail.com\",\n \"CardForeignName\" : \"Mercedes La zarte\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 36,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"446\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"902\",\n \"CardName\" : \"INTPROLAW\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"(511) 222-5503\",\n \"FederalTaxID\" : \"902\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"eberckholtz@intpro.com.pe\",\n \"CardForeignName\" : \"INTPROLAW\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 30,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"904\",\n \"CardName\" : \"SCALAOPM BOLIVIA S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"51933030888\",\n \"FederalTaxID\" : \"400931023\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"kony.arpe@s4alearning.com; ricardo.unyen@s4learning.com\",\n \"CardForeignName\" : \"SCALAOPM BOLIVIA S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 27,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"549\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"906\",\n \"CardName\" : \"PROMOCIONES ESTRATÉGICAS S.R.L. (GRUPO LUCKY)\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"+51 943 791 834\",\n \"FederalTaxID\" : \"402254026\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"amontesinos@grupolucky.com; saguilera@grupolucky.com; mgutierrez@grupolucky.com\",\n \"CardForeignName\" : \"PROMOCIONES ESTRATEGICAS S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 18,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"517\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"908\",\n \"CardName\" : \"CAMBRIDGE COLLEGE S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"77603003\",\n \"FederalTaxID\" : \"1014349020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"karlah@cambridge.edu.bo; antonioh@cambridge.edu.bo; lilianar@cambridge.edu.bo\",\n \"CardForeignName\" : \"CAMBRIDGE COLLEGE S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 27,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"115\"\n }\n ]\n}\n","time":"2025-07-30T10:48:30-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:30-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners?%24select=CardCode%2CCardName%2CCardForeignName%2CFederalTaxID%2CCurrency%2CCardType%2CGroupCode%2CPhone1%2CCellular%2CEmailAddress%2CIndustry%2CDebitorAccount%2CProperties1%2CProperties2%2CProperties3%2CU_ClienPadre%2CU_EMBAIDTM%2CValid%2CFrozen\u0026%24skip=760\u0026%24top=20 | Status: 200 | Duration: 99.1077ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:30 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#BusinessPartners\",\n \"value\" : [\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"909\",\n \"CardName\" : \"IDB Invest\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"909\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"eferraro@bancosol.com.bo\",\n \"CardForeignName\" : \"IDB Invest\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"335\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"910\",\n \"CardName\" : \"ACCENTURE S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"78809770-0\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"vflores@emba.com.bo; diego.f.lopez@accenture.com\",\n \"CardForeignName\" : \"ACCENTURE CHILE ASESORIAS Y SERVICIOS LTDA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 18,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"4\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"911\",\n \"CardName\" : \"RADIO FIDES SANTA CRUZ SRL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"3337 2424\",\n \"FederalTaxID\" : \"1012669020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"charo@radiofides.com\",\n \"CardForeignName\" : \"RADIO FIDES SANTA CRUZ SRL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 10,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"522\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"912\",\n \"CardName\" : \"CARLA PATRICIA CHAVEZ VALENCIA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"2283608\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"CARLA PATRICIA CHAVEZ VALENCIA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 36,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"816\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"913\",\n \"CardName\" : \"AGENCIA DE MARKETING LUCKY BOLIVIA S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"51 997552146\",\n \"FederalTaxID\" : \"123456789\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"cdavila@grupolucky.com\",\n \"CardForeignName\" : \"AGENCIA DE MARKETING LUCKY BOLIVIA S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tNO\",\n \"Frozen\" : \"tYES\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 18,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"817\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"914\",\n \"CardName\" : \"GABRIEL PATENT AND TRADEMARK OFFICE S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"328926026\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"GABRIEL PATENT AND TRADEMARK OFFICE S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"818\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"915\",\n \"CardName\" : \"AGROINDUSTRIAS BUNGE BOLIVIA S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"3450172\",\n \"FederalTaxID\" : \"176198029\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"paola.silva@bunge.com\",\n \"CardForeignName\" : \"AGROINDUSTRIAS BUNGE BOLIVIA S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"820\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"916\",\n \"CardName\" : \"INVERSIONES INMOBILIARIAS INIMBOL SA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"099001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"INVERSIONES INMOBILIARIAS INIMBOL SA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"821\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"917\",\n \"CardName\" : \"EDUCTRADE S.A. - SUCURSAL BOLIVIA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"382411021\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"mario.previtera@eductrade.es\",\n \"CardForeignName\" : \"EDUCTRADE S.A. - SUCURSAL BOLIVIA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"822\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"918\",\n \"CardName\" : \"AON CONSULTING BOLIVIA S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"122711027\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"eder.vazquez@aon.com; kgutierrez@emba.com.bo; karla.fernanda.velazquez.zuniga@aon.com\",\n \"CardForeignName\" : \"AON CONSULTING BOLIVIA S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 23,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"823\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"919\",\n \"CardName\" : \"TECNOFARMA SA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1020627026\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"sebastian.carratala@tecnofarma.com.bo\",\n \"CardForeignName\" : \"TECNOFARMA SA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 40,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"824\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"92\",\n \"CardName\" : \"DISTRIFILMS SRL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"78444519\",\n \"FederalTaxID\" : \"215430021\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"scardenas@caribbeancinemas.com\",\n \"CardForeignName\" : \"DISTRIFILMS SRL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"200\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"920\",\n \"CardName\" : \"Gastón Parra\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"4887003\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"Gastón Parra\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"833\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"925\",\n \"CardName\" : \"SAWA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"376382025\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"SAWA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tNO\",\n \"Frozen\" : \"tYES\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : -1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"827\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"926\",\n \"CardName\" : \"JARDECOM S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"288728029\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"cjordan@ultragrupo.com; ceid@ultragrupo.com\",\n \"CardForeignName\" : \"SERVICIOS JARDECOM S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 30,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"828\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"928\",\n \"CardName\" : \"BBA BARZALLO ABOGADOS\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1792250994001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"joseluis@barzallo.com\",\n \"CardForeignName\" : \"BBA BARZALLO ABOGADOS\",\n \"DebitorAccount\" : \"112200001\",\n \"Valid\" : \"tNO\",\n \"Frozen\" : \"tYES\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 18,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"830\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"929\",\n \"CardName\" : \"Asociación de Líderes Haggai Bolivia\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"0123\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"dir.entrenamiento@haggaibolivia.org\",\n \"CardForeignName\" : \"Asociación de Líderes Haggai Bolivia\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 31,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"831\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"93\",\n \"CardName\" : \"DSE INGENIERIA SAC - DECHINI\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : \"(511) 630 - 6464\",\n \"FederalTaxID\" : \"20510997370\",\n \"Currency\" : \"USD\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"jcaurich@dechini.com.pe\",\n \"CardForeignName\" : \"DSE INGENIERIA SAC - DECHINI\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tYES\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"932\",\n \"CardName\" : \"Industrias Saladillo S.A. (Argentina)\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"Industrias Saladillo S.A. (Argentina)\",\n \"DebitorAccount\" : \"112200001\",\n \"Valid\" : \"tNO\",\n \"Frozen\" : \"tYES\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"356\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"933\",\n \"CardName\" : \"SIERRA TRADING COMPANY S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"277848022\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"yassis.rivero@sierratrading.com.bo; contabilidad@sierratrading.com.bo;\",\n \"CardForeignName\" : \"SIERRA TRADING COMPANY S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 41,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"836\"\n }\n ]\n}\n","time":"2025-07-30T10:48:30-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:30-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners?%24select=CardCode%2CCardName%2CCardForeignName%2CFederalTaxID%2CCurrency%2CCardType%2CGroupCode%2CPhone1%2CCellular%2CEmailAddress%2CIndustry%2CDebitorAccount%2CProperties1%2CProperties2%2CProperties3%2CU_ClienPadre%2CU_EMBAIDTM%2CValid%2CFrozen\u0026%24skip=780\u0026%24top=20 | Status: 200 | Duration: 105.0055ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:30 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#BusinessPartners\",\n \"value\" : [\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"934\",\n \"CardName\" : \"Servicio de Intermediación Comercial Loyalty Club S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"183682020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"contabilidad@loyaltyclubs.net\",\n \"CardForeignName\" : \"Servicio de Intermediación Comercial Loyalty Club S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"837\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"935\",\n \"CardName\" : \"La Asociación de Productores de Oleaginosas y Trigo- ANAPO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1027319027\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"La Asociación de Productores de Oleaginosas y Trigo- ANAPO\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"838\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"936\",\n \"CardName\" : \"Clínica Angel Foianini S.R.L\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1028455022\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"carola.justiniano@clinicafoianini.com\",\n \"CardForeignName\" : \"Clínica Angel Foianini S.R.L\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 26,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"839\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"939\",\n \"CardName\" : \"CREA BOLIVIA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"201534025\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"CREA BOLIVIA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tNO\",\n \"Frozen\" : \"tYES\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 31,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"842\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"940\",\n \"CardName\" : \"Ardonagh Specialty\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"990012\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"Ardonagh Specialty\",\n \"DebitorAccount\" : \"112200001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"843\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"941\",\n \"CardName\" : \"COSAPI S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"328736029\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"pmora@cosapi.com.pe; sfernandez@cosapi.com.pe\",\n \"CardForeignName\" : \"COSAPI S.A. - SUCURSAL BOLIVIA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"844\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"949\",\n \"CardName\" : \"RENACER BOLIVIA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"6328411\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"rox.delriog@gmail.com\",\n \"CardForeignName\" : \"RENACER BOLIVIA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 31,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"847\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"950\",\n \"CardName\" : \"AB CREA BOLIVIA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"201534025\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"AB CREA BOLIVIA\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"848\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"952\",\n \"CardName\" : \"María Inmaculada Pintos Vázquez Figueroa\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"191140027\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"sainrona@hotmail.com\",\n \"CardForeignName\" : \"María Inmaculada Pintos Vázquez Figueroa\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 36,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"850\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"953\",\n \"CardName\" : \"Orquesta Filarmónica de Santa Cruz de la Sierra\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"359681028\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"Orquesta Filarmónica de Santa Cruz de la Sierra\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 38,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"851\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"954\",\n \"CardName\" : \"Yuchan Agropecuaria S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"159910023\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"humberto.melo@brasil-agro.com; gvargas@acresdelsud.com.bo\",\n \"CardForeignName\" : \"Yuchan Agropecuaria S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"852\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"956\",\n \"CardName\" : \"OLC Ingenieros EIRL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"20254356051\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"OLC Ingenieros EIRL\",\n \"DebitorAccount\" : \"112200001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 46,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"854\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"957\",\n \"CardName\" : \"Industrias Alimenticias Colombina de Bolivia S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"527790029\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"jsvalencia@colombina.com; jsvalencia@colombina.com; ljurado@colombina.com\",\n \"CardForeignName\" : \"Industrias Alimenticias Colombina de Bolivia S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : -1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"855\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"958\",\n \"CardName\" : \"CERVECERÍA BOLIVIANA NACIONAL S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1020229024\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"roavalda@cbn.com.bo; rcuellar@emba.com.bo\",\n \"CardForeignName\" : \"CERVECERÍA BOLIVIANA NACIONAL S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : -1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"856\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"959\",\n \"CardName\" : \"TECNOLOGIA EN PREFABRICADOS PARA LA CONSTRUCCION TECNOPRECO S.R.L\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1003245025\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"contabilidad@emba.com.bo; giselle21rodriguezf@gmail.com; gayatri.tecnopreco@gmail.com\",\n \"CardForeignName\" : \"TECNOLOGIA EN PREFABRICADOS PARA LA CONSTRUCCION TECNOPRECO S.R.L\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"857\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"96\",\n \"CardName\" : \"EXTERRAN BOLIVIA SRL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"3630200\",\n \"FederalTaxID\" : \"1028331027\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"recepcionfacturasbolivia@enerflex.com; Romy.Franco@Exterran.com\",\n \"CardForeignName\" : \"EXTERRAN BOLIVIA SRL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 7,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"243\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"960\",\n \"CardName\" : \"CÁMARA DE INDUSTRIA, COMERCIO, SERVICIOS Y TURISMO -CAINCO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1028437029\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"CÁMARA DE INDUSTRIA, COMERCIO, SERVICIOS Y TURISMO -CAINCO\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 31,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"858\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"963\",\n \"CardName\" : \"RPC PAR\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"RPC PAR\",\n \"DebitorAccount\" : \"112200001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 22,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"861\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"964\",\n \"CardName\" : \"Alejandro Yaffar - La Francesa\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"179550\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"Alejandro Yaffar\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : -1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"862\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"966\",\n \"CardName\" : \"EXPOCEAVET S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"529173022\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"EXPOCEAVET S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 13,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"864\"\n }\n ]\n}\n","time":"2025-07-30T10:48:30-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:30-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners?%24select=CardCode%2CCardName%2CCardForeignName%2CFederalTaxID%2CCurrency%2CCardType%2CGroupCode%2CPhone1%2CCellular%2CEmailAddress%2CIndustry%2CDebitorAccount%2CProperties1%2CProperties2%2CProperties3%2CU_ClienPadre%2CU_EMBAIDTM%2CValid%2CFrozen\u0026%24skip=800\u0026%24top=20 | Status: 200 | Duration: 93.6058ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:30 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#BusinessPartners\",\n \"value\" : [\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"967\",\n \"CardName\" : \"SIMPSON GUMPERTZ \u0026 HEGER\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"990001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"SIMPSON GUMPERTZ \u0026 HEGER\",\n \"DebitorAccount\" : \"112200001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"865\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"968\",\n \"CardName\" : \"RADIO FIDES TARIJA S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1024051026\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"charo@radiofides.com\",\n \"CardForeignName\" : \"RADIO FIDES TARIJA S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 10,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"866\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"969\",\n \"CardName\" : \"KARIN MARIA EUGENIA EULERT VON NAGY\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"2284041\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"KARIN MARIA EUGENIA EULERT VON NAGY\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tNO\",\n \"Frozen\" : \"tYES\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 36,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"867\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"970\",\n \"CardName\" : \"MARCELINO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1114881\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"MARCELINO\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tNO\",\n \"Frozen\" : \"tYES\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 36,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"868\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"970-null\",\n \"CardName\" : \"MARCELINO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1114881\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"MARCELINO\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 36,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"868\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"971\",\n \"CardName\" : \"ROGHUR S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1028445023\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"angela.montano@roghur.com; daniela.cabrera@roghur.com; Farhad.Mohebbi@roghur.com\",\n \"CardForeignName\" : \"ROGHUR S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 13,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"869\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"971-null\",\n \"CardName\" : \"ROGHUR S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1028445023\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"ROGHUR S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 13,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"869\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"972\",\n \"CardName\" : \"GRAMAR S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"vflores@emba.com.bo\",\n \"CardForeignName\" : \"GRAMAR S.A.\",\n \"DebitorAccount\" : \"112200001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"870\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"972-null\",\n \"CardName\" : \"GRAMAR S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"GRAMAR S.A.\",\n \"DebitorAccount\" : \"112200001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"870\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"973\",\n \"CardName\" : \"MISTURA S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"227206024\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"lcampero@misturabolivia.com\",\n \"CardForeignName\" : \"MISTURA S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 6,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"871\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"973-null\",\n \"CardName\" : \"MISTURA S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"227206024\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"MISTURA S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tNO\",\n \"Frozen\" : \"tYES\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 6,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"871\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"975\",\n \"CardName\" : \"Prefabricados y Montajes del Noroeste S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"Prefabricados y Montajes del Noroeste S.A.\",\n \"DebitorAccount\" : \"112200001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"873\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"976\",\n \"CardName\" : \"DESARROLLADORA INMOBILIARIA MITRA S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"506265028\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"darly.leon74@gmail.com; victor.portugal@icloud.com\",\n \"CardForeignName\" : \"DESARROLLADORA INMOBILIARIA MITRA S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 30,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"874\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"978\",\n \"CardName\" : \"INCONTACT BOLIVIA S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"00233818025\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"daniela.sandoval@nice.com; Fernando.Lopez1@nice.com\",\n \"CardForeignName\" : \"INCONTACT BOLIVIA S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 46,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"876\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"979\",\n \"CardName\" : \"LG Electronics lnc..Chile Ltda.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"760146102\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"LG Electronics lnc..Chile Ltda.\",\n \"DebitorAccount\" : \"112200001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 13,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"877\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"98\",\n \"CardName\" : \"GOJA BOLIVIA SRL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"4 4506250\",\n \"FederalTaxID\" : \"195990023\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"danielm@goja.com\",\n \"CardForeignName\" : \"GOJA BOLIVIA SRL\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 10,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"294\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"980\",\n \"CardName\" : \"NUVOLIS BOLIVIA S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"477269026\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"angela.meza@nuvolis.solutions; juanpablo.carvajal@nuvolis.solutions; karlobritop@yahoo.com\",\n \"CardForeignName\" : \"NUVOLIS BOLIVIA S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 27,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"878\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"981\",\n \"CardName\" : \"Vouga Abogados S.S.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"80087310-6\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"tesoreria@vouga.com.py; rsuss@vouga.com.py; lgonzalez@vouga.com.py\",\n \"CardForeignName\" : \"Vouga Abogados S.S.\",\n \"DebitorAccount\" : \"112200001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 18,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"888\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"982\",\n \"CardName\" : \"Inquidor S.R.L. Químicos Industriales\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"134889020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"Inquidor S.R.L. Químicos Industriales\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 41,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"879\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"983\",\n \"CardName\" : \"DONGHWAN KO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 103,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"M11346726\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"DONGHWAN KO\",\n \"DebitorAccount\" : \"112200001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 36,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"880\"\n }\n ]\n}\n","time":"2025-07-30T10:48:30-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:30-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners?%24select=CardCode%2CCardName%2CCardForeignName%2CFederalTaxID%2CCurrency%2CCardType%2CGroupCode%2CPhone1%2CCellular%2CEmailAddress%2CIndustry%2CDebitorAccount%2CProperties1%2CProperties2%2CProperties3%2CU_ClienPadre%2CU_EMBAIDTM%2CValid%2CFrozen\u0026%24skip=820\u0026%24top=20 | Status: 200 | Duration: 99.3875ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:31 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#BusinessPartners\",\n \"value\" : [\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"984\",\n \"CardName\" : \"Juan Carlos Rivero Jordán\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"2974766\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"jc.rivero@grupoeldeber.com\",\n \"CardForeignName\" : \"Juan Carlos Rivero Jordán\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 36,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"881\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"985\",\n \"CardName\" : \"JCI Bolivia\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"JCI Bolivia\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 31,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"882\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"986\",\n \"CardName\" : \"Clínica Metropolitana de las Américas S.A.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"316258024\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"dchavez@clinicadelasamericas.com.bo; tnavia@clinicadelasamericas.com.bo\",\n \"CardForeignName\" : \"Clínica Metropolitana de las Américas S.A.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 26,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"883\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"988\",\n \"CardName\" : \"Viajes Espacial\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"399815020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"anacarola@viajesespacial.com; susana@viajesespacial.com\",\n \"CardForeignName\" : \"Viajespacial S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 17,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"885\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"989\",\n \"CardName\" : \"Grupo DEANE\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"Grupo DEANE\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 1,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"886\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"99\",\n \"CardName\" : \"IMASA BOLIVIA S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : \"3367788\",\n \"FederalTaxID\" : \"293500021\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"javier.rios@sacyrbolivia.com; arnold.ticona@sacyrbolivia.com; carla.flores@sacyrbolivia.com\",\n \"CardForeignName\" : \"IMASA BOLIVIA S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 21,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"339\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"990\",\n \"CardName\" : \"Fundación Cristiana de Ayuda Mutua\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1017687027\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"Fundación Cristiana de Ayuda Mutua\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 31,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"887\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"991\",\n \"CardName\" : \"Embajada de la República de Corea en Bolivia\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"Embajada de la República de Corea en Bolivia\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 34,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"889\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"992\",\n \"CardName\" : \"MASTER MOTORS S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1022319021\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"MASTER MOTORS S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 14,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"890\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"996\",\n \"CardName\" : \"Asociación de Copropietarios Torre Empresarial CAINCO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"133981028\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"adm-torrescainco@outlook.com\",\n \"CardForeignName\" : \"Asoc. de Copropietarios de la Torre Empresarial\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 31,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"894\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"998\",\n \"CardName\" : \"ALMA S.R.L.\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"337068021\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"ALMA S.R.L.\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 13,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"896\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"999\",\n \"CardName\" : \"IMEMED IMPORTACIONES EXPORTACIONES\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 100,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"4522121012\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"asobrinho@imemed.com.bo; importaciones@imemed.com.bo; klopez@imemed.com.bo\",\n \"CardForeignName\" : \"CATLEN ALESSANDRA SOBRINHO DE TARDIO\",\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 26,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : \"897\"\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"ALAE07274745\",\n \"CardName\" : \"ALAE ALIANCA DE ADVOCACIA EMPRESARIAL\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"0\",\n \"Currency\" : \"USD\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"ALAE ALIANCA DE ADVOCACIA EMPRESARIAL\",\n \"DebitorAccount\" : \"211200002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"CEIA-G84309608\",\n \"CardName\" : \"CLUB ESPAÑOL E IBEROAMERICANO DEL ARBITRAJE - CEIA\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"G84309608\",\n \"Currency\" : \"USD\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"CLUB ESPAÑOL E IBEROAMERICANO DEL ARBITRAJE - CEIA\",\n \"DebitorAccount\" : \"211200002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E10060152\",\n \"CardName\" : \"RONALD ELVIS MARQUEZ APAZA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"10060152\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"RONALD ELVIS MARQUEZ APAZA\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E10913825\",\n \"CardName\" : \"RIVAS ZENTENO LAURA MARIEL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"10913825\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"lrivas@emba.com.bo\",\n \"CardForeignName\" : null,\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E11305134\",\n \"CardName\" : \"CANAZA GUARACHI RUTH ESTHER\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"11305134\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"rcanaza@emba.com.bo\",\n \"CardForeignName\" : \"CANAZA GUARACHI RUTH ESTHER\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E12436830\",\n \"CardName\" : \"LOAYZA ROMAY ANA LUZ\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"12436830\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"aloayza@emba.com.bo\",\n \"CardForeignName\" : \"LOAYZA ROMAY ANA LUZ\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E13053300\",\n \"CardName\" : \"JAVIER ADOLFO CARDENAS GORRITI\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"13053300\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"JAVIER ADOLFO CARDENAS GORRITI\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E13307273\",\n \"CardName\" : \"VIVIANA ROCA VACA DIEZ\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"13307273\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"VIVIANA ROCA VACA DIEZ\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:31-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:31-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners?%24select=CardCode%2CCardName%2CCardForeignName%2CFederalTaxID%2CCurrency%2CCardType%2CGroupCode%2CPhone1%2CCellular%2CEmailAddress%2CIndustry%2CDebitorAccount%2CProperties1%2CProperties2%2CProperties3%2CU_ClienPadre%2CU_EMBAIDTM%2CValid%2CFrozen\u0026%24skip=840\u0026%24top=20 | Status: 200 | Duration: 119.0411ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:31 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#BusinessPartners\",\n \"value\" : [\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E15505350\",\n \"CardName\" : \"CAROL PORCELL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"15505350\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"cporcel@emba.com.bo\",\n \"CardForeignName\" : \"CAROL PORCELL\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E2342343\",\n \"CardName\" : \"MENDOZA GARCIA MARIA SARAH\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"2342343\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"smendoza@emba.com.bo\",\n \"CardForeignName\" : \"MENDOZA GARCIA MARIA SARAH\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E2421639\",\n \"CardName\" : \"COLQUE CARRASCO BENJAMIN\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"2421639\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"benjocolque@gmail.com\",\n \"CardForeignName\" : \"COLQUE CARRASCO BENJAMIN\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E2637502\",\n \"CardName\" : \"CACHAMBI VELARDE RODOLFO MARTIN\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"2367502\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"rcachambi@emba.com.bo\",\n \"CardForeignName\" : null,\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E2703496\",\n \"CardName\" : \"ZAPATA AVENDAÑO DELFOR\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"2703496\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"dzapata@emba.com.bo\",\n \"CardForeignName\" : \"ZAPATA AVENDAÑO DELFOR\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E3140982018\",\n \"CardName\" : \"ARAOZ ARDAYA ALVARO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"3140982018\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"aaraoz@emba.com.bo\",\n \"CardForeignName\" : \"ARAOZ ARDAYA ALVARO\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E3280877\",\n \"CardName\" : \"ESCOBAR FUENTES CARMEN JULIA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"3280877\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"cescobar@emba.com.bo\",\n \"CardForeignName\" : \"ESCOBAR FUENTES CARMEN JULIA\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E3323319\",\n \"CardName\" : \"MARQUEZ GUTIERREZ HUBERT PABLO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"3323319\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"hmarquez@emba.com.bo\",\n \"CardForeignName\" : \"MARQUEZ GUTIERREZ HUBERT PABLO\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E3334444\",\n \"CardName\" : \"MIGUEL ANGEL LIMA VELASQUEZ\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"3334444\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"MIGUEL ANGEL LIMA VELASQUEZ\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E3336491\",\n \"CardName\" : \"MIRANDA APAZA FELIX GENARO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"3336491\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"gmiranda@emba.com.bo\",\n \"CardForeignName\" : \"MIRANDA APAZA FELIX GENARO\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E3354258\",\n \"CardName\" : \"BURGOS FERNANDEZ EDWIN RODRIGO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"3354258\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"rburgos@emba.com.bo\",\n \"CardForeignName\" : \"BURGOS FERNANDEZ EDWIN RODRIGO\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E3360143\",\n \"CardName\" : \"MORENO GUTIERREZ LUIS FERNANDO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"3360143\",\n \"Currency\" : \"##\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"lmorenog@emba.com.bo\",\n \"CardForeignName\" : \"MORENO GUTIERREZ LUIS FERNANDO\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E3360145\",\n \"CardName\" : \"MORENO GUTIERREZ ORIEL ANDRES\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"3360145\",\n \"Currency\" : \"##\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"amorenog@emba.com.bo\",\n \"CardForeignName\" : \"MORENO GUTIERREZ ORIEL ANDRES\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E337536022\",\n \"CardName\" : \"CHRISTIAN CHECA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"0\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"CHRISTIAN CHECA\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E3376691\",\n \"CardName\" : \"DAVILA ORIHUELA JUAN MARCELO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"3376691\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"mdavila@emba.com.bo\",\n \"CardForeignName\" : \"DAVILA ORIHUELA JUAN MARCELO\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E3390066\",\n \"CardName\" : \"JOSE PAUL ARAMAYO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"3390066\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"paramayo@emba.com.bo\",\n \"CardForeignName\" : \"JOSE PAUL ARAMAYO\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E3429685017\",\n \"CardName\" : \"CRISTHIAN DELGADO RAMIREZ\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"3429685017\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"cdelgado@emba.com.bo\",\n \"CardForeignName\" : \"CRISTHIAN DELGADO RAMIREZ\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E3476187\",\n \"CardName\" : \"MERCADO CARRION TEDDY ALBERTO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"3476187\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"tmercado@emba.com.bo\",\n \"CardForeignName\" : \"MERCADO CARRION TEDDY ALBERTO\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E3485460\",\n \"CardName\" : \"TEJERINA QUEIROZ ANDRE LUIS\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"3485460\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"atejerina@emba.com.bo\",\n \"CardForeignName\" : \"TEJERINA QUEIROZ ANDRE LUIS\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E3592891\",\n \"CardName\" : \"DANIEL ARREDONDO ZELADA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"3592891\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"darredondo@emba.com.bo\",\n \"CardForeignName\" : \"DANIEL ARREDONDO ZELADA\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:31-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:31-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners?%24select=CardCode%2CCardName%2CCardForeignName%2CFederalTaxID%2CCurrency%2CCardType%2CGroupCode%2CPhone1%2CCellular%2CEmailAddress%2CIndustry%2CDebitorAccount%2CProperties1%2CProperties2%2CProperties3%2CU_ClienPadre%2CU_EMBAIDTM%2CValid%2CFrozen\u0026%24skip=860\u0026%24top=20 | Status: 200 | Duration: 121.6101ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:31 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#BusinessPartners\",\n \"value\" : [\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E3844516\",\n \"CardName\" : \"GUTIERREZ ANTELO LUIS ERNESTO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"3844516\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"lgutierrez@emba.com.bo\",\n \"CardForeignName\" : \"GUTIERREZ ANTELO LUIS ERNESTO\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E3917714\",\n \"CardName\" : \"CUELLAR FRANCO JHONNY DAVID\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"3917714\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"dcuellarf@emba.com.bo\",\n \"CardForeignName\" : \"CUELLAR FRANCO JHONNY DAVID\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E4007196\",\n \"CardName\" : \"ROCABADO RESAMANO PAULA DANIELA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"4007196\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"procabado@emba.com.bo\",\n \"CardForeignName\" : \"ROCABADO RESAMANO PAULA DANIELA\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E4071740799\",\n \"CardName\" : \"ERICK FUENTES QUIROGA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"0\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"efuentes@emba.com.bo\",\n \"CardForeignName\" : \"ERICK FUENTES QUIROGA\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E4072483788\",\n \"CardName\" : \"CAMILA FRANCOISE KAEGUI SILVA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"0\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"ckaegui@emba.com.bo\",\n \"CardForeignName\" : \"CAMILA FRANCOISE KAEGUI SILVA\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tNO\",\n \"Frozen\" : \"tYES\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E4074642171\",\n \"CardName\" : \"DAVID ANTELO ARIAS\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"4074642171\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"dantelo@emba.com.bo\",\n \"CardForeignName\" : \"DAVID ANTELO ARIAS\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E4074857\",\n \"CardName\" : \"SHEILA JUANA PATZI GUARACHI\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"4074857\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"SHEILA JUANA PATZI GUARACHI\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E40755811\",\n \"CardName\" : \"Maria Fernanda Cuellar Salvatierra\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"40755811\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"María Fernanda Cuellar Salvatierra\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E4105903\",\n \"CardName\" : \"MARCO ANTONIO SUAREZ CABELLO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"4105903\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"MARCO ANTONIO SUAREZ CABELLO\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E4262078\",\n \"CardName\" : \"ZEGARRA RIBERA NATALIO EDUARDO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"4262078\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"nezegarra@emba.com.bo\",\n \"CardForeignName\" : \"ZEGARRA RIBERA NATALIO EDUARDO\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E4275059\",\n \"CardName\" : \"CHALCO HERRERA LIMBERT ALFREDO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"4275059\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"lchalco@emba.com.bo\",\n \"CardForeignName\" : \"CHALCO HERRERA LIMBERT ALFREDO\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E4330518\",\n \"CardName\" : \"SANCHEZ PEÑA VON NAGY FERNANDO JOSE\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"4330518\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"fsanchez@emba.com.bo\",\n \"CardForeignName\" : \"SANCHEZ PEÑA VON NAGY FERNANDO JOSE\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E4380863\",\n \"CardName\" : \"TRIVEÑO COSSIO CHRISTIAN ARIEL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"4380863\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"arielt@emba.com.bo\",\n \"CardForeignName\" : \"TRIVEÑO COSSIO CHRISTIAN ARIEL\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E4581099\",\n \"CardName\" : \"DONOSO RIVERO DOLLY ANDREA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"4581099\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"adonoso@emba.com.bo\",\n \"CardForeignName\" : \"DONOSO RIVERO DOLLY ANDREA\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E4612957\",\n \"CardName\" : \"CORDERO BAZAN SUSANA DELCY\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"4612957\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"scordero@emba.com.bo\",\n \"CardForeignName\" : \"CORDERO BAZAN SUSANA DELCY\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E469854\",\n \"CardName\" : \"MORENO BALDIVIESO RAMIRO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"469854\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"rmorenob@emba.com.bo\",\n \"CardForeignName\" : null,\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E4740487\",\n \"CardName\" : \"MANCILLA LUNA GABRIELA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"4740487\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"gmancilla@emba.com.bo\",\n \"CardForeignName\" : null,\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E4826438\",\n \"CardName\" : \"HUARANCA MAMANI GREGORIO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"4826438\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"ghuaranca@emba.com.bo\",\n \"CardForeignName\" : \"HUARANCA MAMANI GREGORIO\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E4855294\",\n \"CardName\" : \"CORNEJO ESPEJO VALERIE EILEN\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"4855294\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"vcornejo@emba.com.bo\",\n \"CardForeignName\" : \"CORNEJO ESPEJO VALERIE EILEN\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E4863074\",\n \"CardName\" : \"SANJINES BADANI NOELIA PATRICIA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"4863074\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"nsanjines@emba.com.bo\",\n \"CardForeignName\" : \"SANJINES BADANI NOELIA PATRICIA\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:31-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:31-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners?%24select=CardCode%2CCardName%2CCardForeignName%2CFederalTaxID%2CCurrency%2CCardType%2CGroupCode%2CPhone1%2CCellular%2CEmailAddress%2CIndustry%2CDebitorAccount%2CProperties1%2CProperties2%2CProperties3%2CU_ClienPadre%2CU_EMBAIDTM%2CValid%2CFrozen\u0026%24skip=880\u0026%24top=20 | Status: 200 | Duration: 108.9825ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:31 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#BusinessPartners\",\n \"value\" : [\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E4904032\",\n \"CardName\" : \"QUEZADA IRUSTA MIGUEL ALEJANDRO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"4904032\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"mquezada@emba.com.bo\",\n \"CardForeignName\" : \"QUEZADA IRUSTA MIGUEL ALEJANDRO\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E4911489\",\n \"CardName\" : \"CHOQUE AJNO ADOLFO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"4911489\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"achoque@gabrielip.com.bo\",\n \"CardForeignName\" : \"CHOQUE AJNO ADOLFO\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E4913734\",\n \"CardName\" : \"ARIEL ARANCIBIA MEDRANO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"4913734\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"ARIEL ARANCIBIA MEDRANO\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E4919896\",\n \"CardName\" : \"ARGOTE ORIHUELA GRISSEL ARACELLY\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"4919896\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"gargote@emba.com.bo\",\n \"CardForeignName\" : \"ARGOTE ORIHUELA GRISSEL ARACELLY\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E4946083\",\n \"CardName\" : \"MAMANI VINO JAVIER VALENTIN\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"4946083\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"jmamani@emba.com.bo\",\n \"CardForeignName\" : \"MAMANI VINO JAVIER VALENTIN\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E5281635\",\n \"CardName\" : \"MONTENEGRO ROCHA ARIEL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"5281635\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"amontenegro@emba.com.bo\",\n \"CardForeignName\" : \"MONTENEGRO ROCHA ARIEL\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E5349565\",\n \"CardName\" : \"GANTIER MULLER SANTIAGO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"5349565\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"sgantier@emba.com.bo\",\n \"CardForeignName\" : \"GANTIER MULLER SANTIAGO\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E5391310\",\n \"CardName\" : \"ROCA JARAMILLO MARIA VALERIA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"5391310\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"vroca@emba.com.bo\",\n \"CardForeignName\" : null,\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E5402238\",\n \"CardName\" : \"ROJAS MONTERO INGRID TERESA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"5402238\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"irojas@emba.com.bo\",\n \"CardForeignName\" : null,\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E5722065\",\n \"CardName\" : \"CUELLAR URQUIETA JUAN DIEGO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"5722065\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"dcuellar@emba.com.bo\",\n \"CardForeignName\" : \"CUELLAR URQUIETA JUAN DIEGO\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E5785689\",\n \"CardName\" : \"CRUZ BARRIOS JUAN PABLO JOACIR\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"5785689\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"jcruz@emba.com.bo\",\n \"CardForeignName\" : \"CRUZ BARRIOS JUAN PABLO JOACIR\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E5813375\",\n \"CardName\" : \"ALTAMIRANO MOJICA MARCO JAVIER\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"5813375\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"maltamirano@emba.com.bo\",\n \"CardForeignName\" : null,\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E5846325\",\n \"CardName\" : \"CUELLAR MIRANDA RENE\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"5846325\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"rcuellar@emba.com.bo\",\n \"CardForeignName\" : \"CUELLAR MIRANDA RENE\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E5852643\",\n \"CardName\" : \"MARIA FERNANDA VEREMEENCO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"5852643\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"fveremeenco@emba.com.bo\",\n \"CardForeignName\" : \"MARIA FERNANDA VEREMEENCO\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E5954171\",\n \"CardName\" : \"NADJA SALAME VILLAFANI\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"5954171\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"nsalame@emba.com.bo\",\n \"CardForeignName\" : \"NADJA SALAME VILLAFANI\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E5967902\",\n \"CardName\" : \"CLARA BELEN SANCHEZ\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"5967902\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"csanchez@emba.com.bo\",\n \"CardForeignName\" : \"CLARA BELEN SANCHEZ\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E5969208\",\n \"CardName\" : \"BLANCO ITURRI MOISES MARCO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"5969208\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"mblanco@emba.com.bo\",\n \"CardForeignName\" : \"BLANCO ITURRI MOISES MARCO\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E5971343\",\n \"CardName\" : \"MONDACCA MUÑOZ RAFAELA ÁNGELA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"5971343\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"rmondacca@emba.com.bo\",\n \"CardForeignName\" : \"MONDACCA MUÑOZ RAFAELA ÁNGELA\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E5972405\",\n \"CardName\" : \"CALLISAYA CUTILE JUAN JOSE\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"5972405\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"CALLISAYA CUTILE JUAN JOSE\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E6004007\",\n \"CardName\" : \"VIDEZ VASQUEZ MARIA EUGENIA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"6004007\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"mvidez@emba.com.bo\",\n \"CardForeignName\" : \"VIDEZ VASQUEZ MARIA EUGENIA\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:31-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:31-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners?%24select=CardCode%2CCardName%2CCardForeignName%2CFederalTaxID%2CCurrency%2CCardType%2CGroupCode%2CPhone1%2CCellular%2CEmailAddress%2CIndustry%2CDebitorAccount%2CProperties1%2CProperties2%2CProperties3%2CU_ClienPadre%2CU_EMBAIDTM%2CValid%2CFrozen\u0026%24skip=900\u0026%24top=20 | Status: 200 | Duration: 110.9569ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:31 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#BusinessPartners\",\n \"value\" : [\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E6077188\",\n \"CardName\" : \"FERNANDEZ TARQUI LUIS DIEGO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"6077188\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"info@emba.com.bo\",\n \"CardForeignName\" : \"FERNANDEZ TARQUI LUIS DIEGO\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E6095811\",\n \"CardName\" : \"CARRASCO SUAREZ MARIA TERESA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"6095811\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"tcarrasco@emba.com.bo\",\n \"CardForeignName\" : \"CARRASCO SUAREZ MARIA TERESA\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E6097969\",\n \"CardName\" : \"RENE CLAURE VEIZAGA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"6097969\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"rclaure@emba.com.bo\",\n \"CardForeignName\" : \"RENE CLAURE VEIZAGA\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E6103057\",\n \"CardName\" : \"RODRIGUEZ PEREZ LILIAN VARINIA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"6103057\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"lrodriguez@emba.com.bo\",\n \"CardForeignName\" : \"RODRIGUEZ PEREZ LILIAN VARINIA\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E6114869\",\n \"CardName\" : \"ANDREA TERESA QUINTEROS SAAVEDRA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"6114869\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"ANDREA TERESA QUINTEROS SAAVEDRA\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E6146790\",\n \"CardName\" : \"CATACORA DURAN KEIKO ANDREA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"6146790\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"kcatacora@emba.com.bo\",\n \"CardForeignName\" : \"CATACORA DURAN KEIKO ANDREA\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E6151070\",\n \"CardName\" : \"CHALAR ELIAS PATRICIA GABRIELA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"6151070\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"CHALAR ELIAS PATRICIA GABRIELA\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E6169707\",\n \"CardName\" : \"MUÑOZ ALIPAZ PAMELA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"6169707\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"pmunoz@emba.com.bo\",\n \"CardForeignName\" : \"MUÑOZ ALIPAZ PAMELA\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E6189016\",\n \"CardName\" : \"KENTA CADENA KIDIAN GABRIELA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"6189016\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"gkenta@emba.com.bo\",\n \"CardForeignName\" : \"KENTA CADENA KIDIAN GABRIELA\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E6191498\",\n \"CardName\" : \"LANDA ALEJANDRO CARLOS FERNANDO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"6191498\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"flanda@emba.com.bo\",\n \"CardForeignName\" : \"LANDA ALEJANDRO CARLOS FERNANDO\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E6199919\",\n \"CardName\" : \"ARDUZ CALDERON ERICK DANIEL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"6199919\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"darduz@emba.com.bo\",\n \"CardForeignName\" : null,\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E6226510\",\n \"CardName\" : \"MELGAR PADILLA PAMELA CIRA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"6226510\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"pmelgar.emba@gmail.com\",\n \"CardForeignName\" : \"MELGAR PADILLA PAMELA CIRA\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E6295370\",\n \"CardName\" : \"JUAN PABLO TARRADELLES\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"6295370\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"jtarradelles@emba.com.bo\",\n \"CardForeignName\" : \"JUAN PABLO TARRADELLES\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E6314432013\",\n \"CardName\" : \"INES ARELY AYALA ROCA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"6314432013\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"INES ARELY AYALA ROCA\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E6355936\",\n \"CardName\" : \"CUELLAR RAMBALDE MARIA FERNANDA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"6355936\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"CUELLAR RAMBALDE MARIA FERNANDA\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E6390916\",\n \"CardName\" : \"MARIA SOFIA SUAREZ ARANA MERCADO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"6390916\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"MARIA SOFIA SUAREZ ARANA MERCADO\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E6424451\",\n \"CardName\" : \"CARLOS ANDRES PARDO ENCINAS\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"6424451\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"apardo@emba.com.bo\",\n \"CardForeignName\" : \"CARLOS ANDRES PARDO ENCINAS\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E6488841\",\n \"CardName\" : \"Diana Lucia Villarroel Ramirez\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"6488841\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"dvillarroel@emba.com.bo\",\n \"CardForeignName\" : \"Diana Lucia Villarroel Ramirez\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E6489747\",\n \"CardName\" : \"ADRIAZOLA BAYA SANTIAGO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"6489747\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"sadriazola@emba.com.bo\",\n \"CardForeignName\" : \"ADRIAZOLA BAYA SANTIAGO\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E6709036\",\n \"CardName\" : \"SOLIZ SOTO ROSALIA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"6709036\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"rsoliz@emba.com.bo\",\n \"CardForeignName\" : \"SOLIZ SOTO ROSALIA\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:31-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:31-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners?%24select=CardCode%2CCardName%2CCardForeignName%2CFederalTaxID%2CCurrency%2CCardType%2CGroupCode%2CPhone1%2CCellular%2CEmailAddress%2CIndustry%2CDebitorAccount%2CProperties1%2CProperties2%2CProperties3%2CU_ClienPadre%2CU_EMBAIDTM%2CValid%2CFrozen\u0026%24skip=920\u0026%24top=20 | Status: 200 | Duration: 103.1092ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:31 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#BusinessPartners\",\n \"value\" : [\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E6728107\",\n \"CardName\" : \"NAVARRO VELASQUEZ JOSE MARIA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"6728107\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"jnavarro@emba.com.bo\",\n \"CardForeignName\" : \"NAVARRO VELASQUEZ JOSE MARIA\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E6778280\",\n \"CardName\" : \"KAEGUI SILVA CAMILA FRANCOISE\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"6778280\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"ckaegui@emba.com.bo\",\n \"CardForeignName\" : null,\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E6836658\",\n \"CardName\" : \"CARDOZO SEGOVIA RODOLFO RAUL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"6836658\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"rcardozo@emba.com.bo\",\n \"CardForeignName\" : \"CARDOZO SEGOVIA RODOLFO RAUL\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E6841811\",\n \"CardName\" : \"LUCIA LAZARTE\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"8128669\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"llazarte@emba.com.bo\",\n \"CardForeignName\" : \"LUCIA LAZARTE\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E6961729\",\n \"CardName\" : \"ZEBALLOS ALABY ARIEL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"6961729\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"azeballos@emba.com.bo\",\n \"CardForeignName\" : \"ZEBALLOS ALABY ARIEL\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E7292247\",\n \"CardName\" : \"CHECA RIVEROS CHRISTIAN PEDRO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"7292247\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"ccheca@emba.com.bo\",\n \"CardForeignName\" : null,\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E7537051\",\n \"CardName\" : \"FLORES ROSA VALERIA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"7537051\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"vflores@emba.com.bo\",\n \"CardForeignName\" : \"FLORES ROSA VALERIA\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E7682452\",\n \"CardName\" : \"QUISBERT LEE MELVIN MISAEL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"7682452\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"mquisbert@emba.com.bo\",\n \"CardForeignName\" : \"QUISBERT LEE MELVIN MISAEL\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E7753772\",\n \"CardName\" : \"Maria Alejandra Lopez Villamil Talamas\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"7753772\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"alopez@emba.com.bo\",\n \"CardForeignName\" : \"Maria Alejandra Lopez Villamil Talamas\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E7852467\",\n \"CardName\" : \"BONILLA SOSA LILIANA NINETH\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"7852467\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"lbonilla@emba.com.bo\",\n \"CardForeignName\" : \"BONILLA SOSA LILIANA NINETH\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E7857462\",\n \"CardName\" : \"PADILLA ESCUDERO EUNICE\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"7857462\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"epadilla@emba.com.bo\",\n \"CardForeignName\" : null,\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E7921453\",\n \"CardName\" : \"MORALES CLAROS GABRIELA MELISSA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"7921453\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"gmorales@emba.com.bo\",\n \"CardForeignName\" : \"MORALES CLAROS GABRIELA MELISSA\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E8068705\",\n \"CardName\" : \"TAMARA MENDEZ CASTEDO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"8068705\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"TAMARA MENDEZ CASTEDO\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E8128669\",\n \"CardName\" : \"FABIAN ROCA PEÑA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"8128669\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"froca@emba.com.bo\",\n \"CardForeignName\" : \"FABIAN ROCA PEÑA\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E8185364\",\n \"CardName\" : \"AYE ROCA ARNES\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"8185364\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"AYE ROCA ARNES\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E8191437\",\n \"CardName\" : \"PEÑARRIETA FLORES JAVIER JEAN PAUL\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"8191437\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"jpenarrieta@emba.com.bo\",\n \"CardForeignName\" : null,\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E8197182\",\n \"CardName\" : \"MARIA VICTORIA MORENO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"8197182\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"vmoreno@emba.com.bo\",\n \"CardForeignName\" : \"MARIA VICTORIA MORENO\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E8212813\",\n \"CardName\" : \"CASTRO ROJAS JORGE HUMBERTO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"8212813\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"jcastro.emba@gmail.com\",\n \"CardForeignName\" : \"CASTRO ROJAS JORGE HUMBERTO\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E8247356\",\n \"CardName\" : \"CONDORI CEREZO MAGALY SULEYBI\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"8247356\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"mcondori@emba.com.bo\",\n \"CardForeignName\" : \"CONDORI CEREZO MAGALY SULEYBI\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E8278069\",\n \"CardName\" : \"RODRIGUEZ MAMANI MILANDIA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"8278069\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"mrodriguez@emba.com.bo\",\n \"CardForeignName\" : \"RODRIGUEZ MAMANI MILANDIA\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:31-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:32-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners?%24select=CardCode%2CCardName%2CCardForeignName%2CFederalTaxID%2CCurrency%2CCardType%2CGroupCode%2CPhone1%2CCellular%2CEmailAddress%2CIndustry%2CDebitorAccount%2CProperties1%2CProperties2%2CProperties3%2CU_ClienPadre%2CU_EMBAIDTM%2CValid%2CFrozen\u0026%24skip=940\u0026%24top=20 | Status: 200 | Duration: 127.1376ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:32 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#BusinessPartners\",\n \"value\" : [\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E8288447\",\n \"CardName\" : \"MINAYA JALLASI PAMELA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"8288447\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"pminaya@emba.com.bo\",\n \"CardForeignName\" : \"MINAYA JALLASI PAMELA\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E8333661\",\n \"CardName\" : \"CALATAYUD VENEROS MIKAEL KEVIN\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"8333661\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"mcalatayud@emba.com.bo\",\n \"CardForeignName\" : null,\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E8364311\",\n \"CardName\" : \"GUTIERREZ MAMANI KATHERINE ALEJANDRA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"8364311\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"kgutierrez@emba.com.bo\",\n \"CardForeignName\" : \"GUTIERREZ MAMANI KATHERINE ALEJANDRA\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E8510077\",\n \"CardName\" : \"LAZARTE CABRERO LUCIA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"8510077\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"llazarte@emba.com.bo\",\n \"CardForeignName\" : null,\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E8822982\",\n \"CardName\" : \"JORGE GUILLERMO ALBA MIRANDA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"8822982\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"galba@emba.com.bo\",\n \"CardForeignName\" : \"JORGE GUILLERMO ALBA MIRANDA\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E8905823\",\n \"CardName\" : \"Jorge Andres Peredo\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"8905823\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"aperedo@emba.com.bo\",\n \"CardForeignName\" : \"Jorge Andres Peredo\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E8910618\",\n \"CardName\" : \"Juan José Siñani Vera\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"8910618\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"jsinani@emba.com.bo\",\n \"CardForeignName\" : \"Juan José Siñani Vera\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E8954227\",\n \"CardName\" : \"ANTELO ARIAS DAVID\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"8954227\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"dantelo@emba.com.bo\",\n \"CardForeignName\" : null,\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E9032202\",\n \"CardName\" : \"AGUILERA SOLIZ SEBASTIAN\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"9032202\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"saguilera@emba.com.bo\",\n \"CardForeignName\" : \"AGUILERA SOLIZ SEBASTIAN\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E9164983\",\n \"CardName\" : \"VALDIVIA YANA CARLA KAREM\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"9164983\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"cvaldivia@emba.com.bo\",\n \"CardForeignName\" : null,\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E9172890\",\n \"CardName\" : \"QUISPE CORONEL CARLOS ALBERTO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"9172890\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"cquispe@emba.com.bo\",\n \"CardForeignName\" : null,\n \"DebitorAccount\" : \"112100001\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E9323464\",\n \"CardName\" : \"SARAVIA ORTIZ MELVY ANDREA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"9323464\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"SARAVIA ORTIZ MELVY ANDREA\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E9581747\",\n \"CardName\" : \"MOSCOSO BARRON ALEXANDRA ELIZABETH\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"9581747\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"amoscoso@emba.com.bo\",\n \"CardForeignName\" : \"MOSCOSO BARRON ALEXANDRA ELIZABETH\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E958825\",\n \"CardName\" : \"MERINO TROCHE CARLOS\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"958825\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"cmerino@emba.com.bo\",\n \"CardForeignName\" : \"MERINO TROCHE CARLOS\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E9664256\",\n \"CardName\" : \"CARLA LORENA PAZ LARA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"9664256\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"cpaz@emba.com.bo\",\n \"CardForeignName\" : \"CARLA LORENA PAZ LARA\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E9819112\",\n \"CardName\" : \"ASTURIZAGA GUTIERREZ MARCO\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"9819112\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"masturizaga.emba@gmail.com\",\n \"CardForeignName\" : \"ASTURIZAGA GUTIERREZ MARCO\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E9853541\",\n \"CardName\" : \"Gabriel Claros Nogales\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"9853541\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"gclaros@emba.com.bo\",\n \"CardForeignName\" : \"Gabriel Claros Nogales\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E9878362\",\n \"CardName\" : \"GONZALES MAYDANA CAROLINA SALOME\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"9878362\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"cgonzales@emba.com.bo\",\n \"CardForeignName\" : \"GONZALES MAYDANA CAROLINA SALOME\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"E9898028\",\n \"CardName\" : \"DANIELA MARIA JOSE BARRIOS ACUÑA\",\n \"CardType\" : \"cCustomer\",\n \"GroupCode\" : 104,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"9898028\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"dbarrios@emba.com.bo\",\n \"CardForeignName\" : \"DANIELA MARIA JOSE BARRIOS ACUÑA\",\n \"DebitorAccount\" : \"112400004\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"FR45784357337\",\n \"CardName\" : \"INTERNACIONAL CHAMBER OF COMMERCE - ICC\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"45784357337\",\n \"Currency\" : \"USD\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"INTERNACIONAL CHAMBER OF COMMERCE - ICC\",\n \"DebitorAccount\" : \"211200002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:32-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:32-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners?%24select=CardCode%2CCardName%2CCardForeignName%2CFederalTaxID%2CCurrency%2CCardType%2CGroupCode%2CPhone1%2CCellular%2CEmailAddress%2CIndustry%2CDebitorAccount%2CProperties1%2CProperties2%2CProperties3%2CU_ClienPadre%2CU_EMBAIDTM%2CValid%2CFrozen\u0026%24skip=960\u0026%24top=20 | Status: 200 | Duration: 113.0126ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:32 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#BusinessPartners\",\n \"value\" : [\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"INSURALEX24\",\n \"CardName\" : \"INSURALEX - GLOBAL INSURANCE LAWYERSS GROUP\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"0\",\n \"Currency\" : \"USD\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"INSURALEX - GLOBAL INSURANCE LAWYERSS GROUP\",\n \"DebitorAccount\" : \"211200002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P0000001\",\n \"CardName\" : \"PROVEEDORES DE SERVICIOS\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"PROVEEDORES DE SERVICIOS\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P1001899021\",\n \"CardName\" : \"EMPRESA EDITORIAL AURIOS S.R.L.\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1001899021\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"EMPRESA EDITORIAL AURIOS S.R.L.\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P1002145026\",\n \"CardName\" : \"CAMARA NACIONAL DE COMERCIO BOLIVIANO BRASILEÑA\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1002145026\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"CAMARA NACIONAL DE COMERCIO BOLIVIANO BRASILEÑA\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P1003219023\",\n \"CardName\" : \"CASA GRANDE APART HOTEL SRL\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1003219023\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"CASA GRANDE APART HOTEL SRL\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P1004721021\",\n \"CardName\" : \"ADDVISORY GROUP S.R.L.\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"(591-2) 2796368\",\n \"FederalTaxID\" : \"1004721021\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"ADDVISORY GROUP S.R.L.\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P1006393026\",\n \"CardName\" : \"GRUPO NUEVA ECONOMIA\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1006393026\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"rcondori@nuevaeconomia.com.bo\",\n \"CardForeignName\" : \"GRUPO NUEVA ECONOMIA\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P1006613023\",\n \"CardName\" : \"CAMARA DE COMERCIO E INDUSTRIA BOLIVIANO ALEMANA\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 102,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1006613023\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"CAMARA DE COMERCIO E INDUSTRIA BOLIVIANO ALEMANA\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P1007139028\",\n \"CardName\" : \"COMTEC S.R.L.\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"2441330\",\n \"FederalTaxID\" : \"1007139028\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"COMTEC S.R.L.\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P1007173022\",\n \"CardName\" : \"NUEVATEL PCS DE BOLIVIA SA\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1007173022\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"NUEVATEL PCS DE BOLIVIA SA\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P1007915023\",\n \"CardName\" : \"SUD AMERICANA RENT A CAR CBBA S.R.L.\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1007915023\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"SUD AMERICANA RENT A CAR CBBA S.R.L.\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P1009385025\",\n \"CardName\" : \"CAMARA DE COMERCIO Y SERVICIOS COCHABAMBA\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1009385025\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"CAMARA DE COMERCIO Y SERVICIOS COCHABAMBA\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P1012697025\",\n \"CardName\" : \"COMPUJET LTDA.\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"3337840\",\n \"FederalTaxID\" : \"1012697025\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"COMPUJET LTDA.\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P1014631027\",\n \"CardName\" : \"CAMARA BOLIVIANA DE HIDROCARBUROS\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"3538799\",\n \"FederalTaxID\" : \"1014631027\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"CAMARA BOLIVIANA DE HIDROCARBUROS\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P1015199023\",\n \"CardName\" : \"TOTES LTDA\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1015199023\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"TOTES LTDA\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P1015461020\",\n \"CardName\" : \"INBOLPACK S.R.L.\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1015461020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"INBOLPACK S.R.L.\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P1015531026\",\n \"CardName\" : \"SOCIEDAD HOTELERA LOS TAJIBOS S.A.\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1015531026\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"SOCIEDAD HOTELERA LOS TAJIBOS S.A.\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P1016367026\",\n \"CardName\" : \"CAMARA AMERICANA DE COMERCIO DE BOLIVIA AMCHAM - BOLIVIA\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1016367026\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"CAMARA AMERICANA DE COMERCIO DE BOLIVIA AMCHAM - BOLIVIA\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P1016477028\",\n \"CardName\" : \"AON BOLIVIA S.A. CORREDORES DE SEGUROS\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"2790955\",\n \"FederalTaxID\" : \"1016477028\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"AON BOLIVIA S.A. CORREDORES DE SEGUROS\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P1017703021\",\n \"CardName\" : \"SINFRONTERAS SRL\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"2772888\",\n \"FederalTaxID\" : \"1017703021\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"SINFRONTERAS SRL\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:32-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:32-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners?%24select=CardCode%2CCardName%2CCardForeignName%2CFederalTaxID%2CCurrency%2CCardType%2CGroupCode%2CPhone1%2CCellular%2CEmailAddress%2CIndustry%2CDebitorAccount%2CProperties1%2CProperties2%2CProperties3%2CU_ClienPadre%2CU_EMBAIDTM%2CValid%2CFrozen\u0026%24skip=980\u0026%24top=20 | Status: 200 | Duration: 109.5926ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:32 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#BusinessPartners\",\n \"value\" : [\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P1018195029\",\n \"CardName\" : \"CAMARA DE COMERCIO ESPAÑOLA EN BOLIVIA\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"2440505\",\n \"FederalTaxID\" : \"1018195029\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"CAMARA DE COMERCIO ESPAÑOLA EN BOLIVIA\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P1019139029\",\n \"CardName\" : \"COMOL IMP. EXP. S.R.L.\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"2316731\",\n \"FederalTaxID\" : \"1019139029\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"COMOL IMP. EXP. S.R.L.\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P1019333021\",\n \"CardName\" : \"FILE ARCHIVOS S.A.\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"2-114125\",\n \"FederalTaxID\" : \"1019333021\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"FILE ARCHIVOS S.A.\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P1020149020\",\n \"CardName\" : \"BANCO BISA S.A.\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"2359471\",\n \"FederalTaxID\" : \"1020149020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"BANCO BISA S.A.\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P1020193020\",\n \"CardName\" : \"PRU - ROBIN S.R.L.\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1020193020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"PRU - ROBIN S.R.L.\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P1020255020\",\n \"CardName\" : \"TELEFONIA CEULAR DE BOLIVIA S.A.\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1020255020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"TELEFONIA CEULAR DE BOLIVIA S.A.\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P1020267022\",\n \"CardName\" : \"LIBRERIA Y PAPELERIA OLIMPIA S.R.L.\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"2204091\",\n \"FederalTaxID\" : \"1020267022\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"LIBRERIA Y PAPELERIA OLIMPIA S.R.L.\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P1020289021\",\n \"CardName\" : \"COTEL SRL\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1020289021\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"COTEL SRL\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P1020351029\",\n \"CardName\" : \"ALIANZA CIA DE SEGUROS Y REASEGUROS S.A.\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1020351029\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"ALIANZA CIA DE SEGUROS Y REASEGUROS S.A.\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P1020389023\",\n \"CardName\" : \"AXS BOLIVIA SA\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1020389023\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"AXS BOLIVIA SA\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P1020435022\",\n \"CardName\" : \"BANCO DE CREDITO DE BOLIVIA S.A,\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1020435022\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"BANCO DE CREDITO DE BOLIVIA S.A,\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P1020557029\",\n \"CardName\" : \"BANCO MERCANTIL SANTA CRUZ S.A.\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"2409040\",\n \"FederalTaxID\" : \"1020557029\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"BANCO MERCANTIL SANTA CRUZ S.A.\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P1020613020\",\n \"CardName\" : \"DISTRIBUIDORA DE ELECTRICIDAD LA PAZ S.A. DELAPAZ\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"2222200\",\n \"FederalTaxID\" : \"1020613020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"DISTRIBUIDORA DE ELECTRICIDAD LA PAZ S.A. DELAPAZ\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P1020655027\",\n \"CardName\" : \"BISA SEGUROS Y REASEGUROS S.A.\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1020655027\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"BISA SEGUROS Y REASEGUROS S.A.\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P1020687029\",\n \"CardName\" : \"LA VITALICIA SEGUROS Y REASEGUROS DE VIDA S.A.\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1020687029\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"LA VITALICIA SEGUROS Y REASEGUROS DE VIDA S.A.\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P1020703023\",\n \"CardName\" : \"EMPRESA NACIONAL DE TELECOMUNICACIONES S.A\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1020703023\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"EMPRESA NACIONAL DE TELECOMUNICACIONES S.A\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P1020727020\",\n \"CardName\" : \"TAIYO MOTORS S.A.\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"(591-2) 2795000\",\n \"FederalTaxID\" : \"1020727020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"TAIYO MOTORS S.A.\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P1020743029\",\n \"CardName\" : \"CAMARA NACIONAL DE COMERCIO\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1020743029\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"CAMARA NACIONAL DE COMERCIO\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P1028283021\",\n \"CardName\" : \"EL DEBER S.A\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1028283021\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"EL DEBER S.A\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P1028291028\",\n \"CardName\" : \"SOCIEDAD SYNERGY LTDA\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"3420345\",\n \"FederalTaxID\" : \"1028291028\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"SOCIEDAD SYNERGY LTDA\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:32-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:32-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners?%24select=CardCode%2CCardName%2CCardForeignName%2CFederalTaxID%2CCurrency%2CCardType%2CGroupCode%2CPhone1%2CCellular%2CEmailAddress%2CIndustry%2CDebitorAccount%2CProperties1%2CProperties2%2CProperties3%2CU_ClienPadre%2CU_EMBAIDTM%2CValid%2CFrozen\u0026%24skip=1000\u0026%24top=20 | Status: 200 | Duration: 96.5757ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:32 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#BusinessPartners\",\n \"value\" : [\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P1028367023\",\n \"CardName\" : \"COOPERATIVA DE TELECOMUNICACIONES SANTA CRUZ RL\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1028367023\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"COOPERATIVA DE TELECOMUNICACIONES SANTA CRUZ RL\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P1028399028\",\n \"CardName\" : \"COOPERATIVA RURAL DE ELECTRIFICACIÓN R.L.\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1028399028\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"COOPERATIVA RURAL DE ELECTRIFICACIÓN R.L.\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P1028415020\",\n \"CardName\" : \"BANCO UNION S.A.\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1028415020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"BANCO UNION S.A.\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P1028437029\",\n \"CardName\" : \"CAMARA DE INDUSTRIA COMERCIO SERVICIOS Y TURISMO SANTA CRUZ CAINCO\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"3383210\",\n \"FederalTaxID\" : \"1028437029\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"CAMARA DE INDUSTRIA COMERCIO SERVICIOS Y TURISMO SANTA CRUZ CAINCO\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P1028769023\",\n \"CardName\" : \"ELECTRO HOGAR S.R.L.\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"3365500\",\n \"FederalTaxID\" : \"1028769023\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"ELECTRO HOGAR S.R.L.\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P1029191028\",\n \"CardName\" : \"SPC IMPRESORES S.A.\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"2111121\",\n \"FederalTaxID\" : \"1029191028\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"SPC IMPRESORES S.A.\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P1030991027\",\n \"CardName\" : \"MARELLI BOLIVIA S.R.L.\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"2114358\",\n \"FederalTaxID\" : \"1030991027\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"MARELLI BOLIVIA S.R.L.\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P1070525016\",\n \"CardName\" : \"JET CARGO SERVICES DE JOSE ALBIS ECHALAR LPZ\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"2445044\",\n \"FederalTaxID\" : \"1070525016\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"JET CARGO SERVICES DE JOSE ALBIS ECHALAR LPZ\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P10918663\",\n \"CardName\" : \"JHONATAN FARID CATARI LIMACHI\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"P10918663\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"JHONATAN FARID CATARI LIMACHI\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P1114881\",\n \"CardName\" : \"HURTADO DAVALOS INGRID\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 102,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1114881\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"ihurtado@emba.com.bo\",\n \"CardForeignName\" : \"HURTADO DAVALOS INGRID\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P1140212018\",\n \"CardName\" : \"CARLOS ANDRES DELGADILLO ALDAYUS\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1140212018\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"CARLOS ANDRES DELGADILLO ALDAYUS\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P120995021\",\n \"CardName\" : \"AGRICOLA CAFETALERA BUENA VISTA S.A.\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"34444633\",\n \"FederalTaxID\" : \"120995021\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"AGRICOLA CAFETALERA BUENA VISTA S.A.\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P121325027\",\n \"CardName\" : \"H\u0026E INTERNACIONAL S.R.L.\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"121325027\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"H\u0026E INTERNACIONAL S.R.L.\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P12436830\",\n \"CardName\" : \"ANA LUZ LOAYZA ROMAY\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"12436830\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"aloayza@emba.com.bo\",\n \"CardForeignName\" : \"ANA LUZ LOAYZA ROMAY\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P12565411\",\n \"CardName\" : \"HEYDY ARIAS ROJAS\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"12565411\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"HEYDY ARIAS ROJAS\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P13129612\",\n \"CardName\" : \"ERICK FUENTES QUIROGA\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"13129612\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"efuentes@emba.com.bo\",\n \"CardForeignName\" : \"ERICK FUENTES QUIROGA\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P1335364\",\n \"CardName\" : \"ROJAS NAVARRO LUZ ANAHY\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1335364\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"ROJAS NAVARRO LUZ ANAHY\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P133981028\",\n \"CardName\" : \"ASOC. DE COPROPIETARIOS DE LA TORRE EMPRESARIAL\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"133981028\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : null,\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P142109022\",\n \"CardName\" : \"INTERNACIONAL TARIJA SRL\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"2792026\",\n \"FederalTaxID\" : \"142109022\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"INTERNACIONAL TARIJA SRL\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P145010021\",\n \"CardName\" : \"SCHARFF BOLIVIA S.R.L.\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"2-2120000\",\n \"FederalTaxID\" : \"145010021\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"SCHARFF BOLIVIA S.R.L.\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:32-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:32-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners?%24select=CardCode%2CCardName%2CCardForeignName%2CFederalTaxID%2CCurrency%2CCardType%2CGroupCode%2CPhone1%2CCellular%2CEmailAddress%2CIndustry%2CDebitorAccount%2CProperties1%2CProperties2%2CProperties3%2CU_ClienPadre%2CU_EMBAIDTM%2CValid%2CFrozen\u0026%24skip=1020\u0026%24top=20 | Status: 200 | Duration: 108.9775ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:32 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#BusinessPartners\",\n \"value\" : [\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P154018028\",\n \"CardName\" : \"INFOACTIVA S.R.L.\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"2971660\",\n \"FederalTaxID\" : \"154018028\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"INFOACTIVA S.R.L.\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P15505350\",\n \"CardName\" : \"CAROLL PORCEL\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"15505350\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"cporcel@emba.com.bo\",\n \"CardForeignName\" : \"CAROLL PORCEL\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P155550022\",\n \"CardName\" : \"ESTUDIO MORENO BALDIVIESO ABOGADOS SOC.CIV.\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"2441600\",\n \"FederalTaxID\" : \"155550022\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"ESTUDIO MORENO BALDIVIESO ABOGADOS SOC.CIV.\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P155640029\",\n \"CardName\" : \"CONSULTORA EXECUTIVE FORUMS S.R.L.\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"3343287\",\n \"FederalTaxID\" : \"155640029\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"CONSULTORA EXECUTIVE FORUMS S.R.L.\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P163486021\",\n \"CardName\" : \"HUMAN VALUE SRL\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"3371210\",\n \"FederalTaxID\" : \"163486021\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"HUMAN VALUE SRL\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P166064023\",\n \"CardName\" : \"EQUIPLUS IMPORTACIONES Y SERVICIOS S.R.L.\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"166064023\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"EQUIPLUS IMPORTACIONES Y SERVICIOS S.R.L.\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P168206024\",\n \"CardName\" : \"SEDEM\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"176688020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"SEDEM\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P176408026\",\n \"CardName\" : \"CONSTRUCTORA E INMOBILIARIA PACIFICO S.A.\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"176408026\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"CONSTRUCTORA E INMOBILIARIA PACIFICO S.A.\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P178780028\",\n \"CardName\" : \"BZ GROUP S.R.L.\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"178780028\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"BZ GROUP S.R.L.\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P1790774627001\",\n \"CardName\" : \"ACTUARIA CONSULTORES S.A.\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"1790774627001\",\n \"Currency\" : \"USD\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"ACTUARIA CONSULTORES S.A.\",\n \"DebitorAccount\" : \"211200002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P179576028\",\n \"CardName\" : \"BUENAS PRACTICAS SRL\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"2770707\",\n \"FederalTaxID\" : \"179576028\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"BUENAS PRACTICAS SRL\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P180530026\",\n \"CardName\" : \"F.B.G. \u0026 V. IMPORTACIONES LTDA\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"2790438\",\n \"FederalTaxID\" : \"180530026\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"F.B.G. \u0026 V. IMPORTACIONES LTDA\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P183546024\",\n \"CardName\" : \"PRODUCTORA Y COMERCIALIZADORA DE CAFÉ AGRICAFE S.A.\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"183546024\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"PRODUCTORA Y COMERCIALIZADORA DE CAFÉ AGRICAFE S.A.\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P186850026\",\n \"CardName\" : \"ORGANIZACION VIRREIRA S.R.L. - HOTEL VICTORIA PLAZA\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"6642600\",\n \"FederalTaxID\" : \"186850026\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"ORGANIZACION VIRREIRA S.R.L. - HOTEL VICTORIA PLAZA\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P188FLEET STREE\",\n \"CardName\" : \"LEGALEASE\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 102,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"0\",\n \"Currency\" : \"USD\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"LEGALEASE\",\n \"DebitorAccount\" : \"211200002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P189052020\",\n \"CardName\" : \"ACTUALISAP CONSULTORES BOLIVIA S.A.\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"+591 (2) 2147859\",\n \"FederalTaxID\" : \"189052020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"ACTUALISAP CONSULTORES BOLIVIA S.A.\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P192934022\",\n \"CardName\" : \"EMPRESA HOTELERA DE SU MERCED SRL\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"192934022\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"EMPRESA HOTELERA DE SU MERCED SRL\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P193436022\",\n \"CardName\" : \"NETZEIT S.R.L.\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"3406937\",\n \"FederalTaxID\" : \"193436022\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"NETZEIT S.R.L.\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P198752024\",\n \"CardName\" : \"GHM SRL\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"198752024\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"GHM SRL\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P2015127638\",\n \"CardName\" : \"Gonzalo Javier Crespo Urquizu\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"0\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"Gonzalo Javier Crespo Urquizu\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:32-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:32-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners?%24select=CardCode%2CCardName%2CCardForeignName%2CFederalTaxID%2CCurrency%2CCardType%2CGroupCode%2CPhone1%2CCellular%2CEmailAddress%2CIndustry%2CDebitorAccount%2CProperties1%2CProperties2%2CProperties3%2CU_ClienPadre%2CU_EMBAIDTM%2CValid%2CFrozen\u0026%24skip=1040\u0026%24top=20 | Status: 200 | Duration: 95.7138ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:32 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#BusinessPartners\",\n \"value\" : [\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P2215700011\",\n \"CardName\" : \"EDDY PEÑALOZA TAPIA\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"2201307\",\n \"FederalTaxID\" : \"2215700011\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"EDDY PEÑALOZA TAPIA\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P222036025\",\n \"CardName\" : \"MARGARITA DE MEGUI SRL\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"222036025\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"MARGARITA DE MEGUI SRL\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P2229080013\",\n \"CardName\" : \"JOSE ENRIQUE URQUIETA OCAMPO\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"2796188\",\n \"FederalTaxID\" : \"2229080013\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"JOSE ENRIQUE URQUIETA OCAMPO\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P2362546015\",\n \"CardName\" : \"NOTARIA 96 SILVIA NOYA LAGUNA\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"2362546015\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"NOTARIA 96 SILVIA NOYA LAGUNA\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P2362713011\",\n \"CardName\" : \"NOTARIA Nº 07 MARGARITA CALVO CALVO\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"2900354\",\n \"FederalTaxID\" : \"2362713011\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"NOTARIA Nº 07 MARGARITA CALVO CALVO\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P2373637011\",\n \"CardName\" : \"WEINBERG JAUREGUI JORGE\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"2373637011\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"WEINBERG JAUREGUI JORGE\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P2463000015\",\n \"CardName\" : \"NOTARIA DE FE PUBLICA 003 DE PATRICIA RIVERA SEMPERTEGUI\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"2406677\",\n \"FederalTaxID\" : \"2463000015\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"NOTARIA DE FE PUBLICA 003 DE PATRICIA RIVERA SEMPERTEGUI\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P2474070011\",\n \"CardName\" : \"LUIS FRANCISCO VALLE VELASCO\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"2424886\",\n \"FederalTaxID\" : \"2474070011\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"LUIS FRANCISCO VALLE VELASCO\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P253540022\",\n \"CardName\" : \"EDITORIAL OBJETIVO 1 S.R.L.\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"253540022\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"EDITORIAL OBJETIVO 1 S.R.L.\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P2696856013\",\n \"CardName\" : \"AQUA LIMPIA - RAUL PUÑA ELENA\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"3605942\",\n \"FederalTaxID\" : \"2696856013\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"AQUA LIMPIA - RAUL PUÑA ELENA\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P2721097012\",\n \"CardName\" : \"JET EXPRESS COURIER DE EDUARDO SANDI OVANDO\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"3582233\",\n \"FederalTaxID\" : \"2721097012\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"JET EXPRESS COURIER DE EDUARDO SANDI OVANDO\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P2838058019\",\n \"CardName\" : \"SARITA CUELLAR ROCA - NOTARIA Nº 13\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"2838058019\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"SARITA CUELLAR ROCA - NOTARIA Nº 13\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P290736974\",\n \"CardName\" : \"CHAMBERS AND PARTNERS\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"290736974\",\n \"Currency\" : \"USD\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"CHAMBERS AND PARTNERS\",\n \"DebitorAccount\" : \"211200002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P2920199\",\n \"CardName\" : \"JOSE LUIS SANTISTEVAN JUSTINIANO\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"2920199\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"JOSE LUIS SANTISTEVAN JUSTINIANO\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P292738028\",\n \"CardName\" : \"COMPAÑIA DE INVERSIONES COMVERSA S.A.\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"292738028\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"COMPAÑIA DE INVERSIONES COMVERSA S.A.\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P297688022\",\n \"CardName\" : \"FILE ALMACENAJE Y ARCHIVOS DIGITALES S.A.\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"2-150492\",\n \"FederalTaxID\" : \"297688022\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"FILE ARDISA\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P300778029\",\n \"CardName\" : \"EXXIS BOLIVIA SRL\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"300778029\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"EXXIS BOLIVIA SRL\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P301044020\",\n \"CardName\" : \"ROAD MOBILIARIO S.R.L.\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"2788676\",\n \"FederalTaxID\" : \"301044020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"ROAD MOBILIARIO S.R.L.\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P303884023\",\n \"CardName\" : \"FAST SOFT SRL\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"21419898\",\n \"FederalTaxID\" : \"303884023\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"FAST SOFT SRL\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P304510022\",\n \"CardName\" : \"JOINT PLUS S.R.L.\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"2157909\",\n \"FederalTaxID\" : \"304510022\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"JOINT PLUS S.R.L.\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:33-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:33-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners?%24select=CardCode%2CCardName%2CCardForeignName%2CFederalTaxID%2CCurrency%2CCardType%2CGroupCode%2CPhone1%2CCellular%2CEmailAddress%2CIndustry%2CDebitorAccount%2CProperties1%2CProperties2%2CProperties3%2CU_ClienPadre%2CU_EMBAIDTM%2CValid%2CFrozen\u0026%24skip=1060\u0026%24top=20 | Status: 200 | Duration: 90.614ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:33 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#BusinessPartners\",\n \"value\" : [\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P309872025\",\n \"CardName\" : \"MISO DESIGN - ABORA INVESTMENTS S.R.L.\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"2128986\",\n \"FederalTaxID\" : \"309872025\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"MISO DESIGN - ABORA INVESTMENTS S.R.L.\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P3113700012\",\n \"CardName\" : \"RAUL HORACIO ARAUJO GOMEZ\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"3113700012\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"RAUL HORACIO ARAUJO GOMEZ\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P3140982018\",\n \"CardName\" : \"ARAOZ ARDAYA ALVARO\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"4481490\",\n \"FederalTaxID\" : \"3140982018\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"aaraoz@emba.com.bo\",\n \"CardForeignName\" : \"ARAOZ ARDAYA ALVARO\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P3144342013\",\n \"CardName\" : \"IMPRENTA BEY DE MARIA SILVIA TORRICO ZAMBRANA\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"2203297\",\n \"FederalTaxID\" : \"3144342013\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"IMPRENTA BEY DE MARIA SILVIA TORRICO ZAMBRANA\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P3178961019\",\n \"CardName\" : \"STUDIO ENRIQUE MENACHO de Gonzalo Enrique Menacho Vargas\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"3555521\",\n \"FederalTaxID\" : \"3178961019\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"STUDIO ENRIQUE MENACHO de Gonzalo Enrique Menacho Vargas\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P318816022\",\n \"CardName\" : \"LATAM TEAM AUDIT AND CONSULTING S.R.L.\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"76796778\",\n \"FederalTaxID\" : \"318816022\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"LATAM TEAM AUDIT AND CONSULTING S.R.L.\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P321388025\",\n \"CardName\" : \"FIRMA S.R.L. PROPIEDADES\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"321388025\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"FIRMA S.R.L. PROPIEDADES\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P3294470\",\n \"CardName\" : \"MARTIN ALBERT RAPP NN\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"3294470\",\n \"Currency\" : \"USD\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"MARTIN ALBERT RAPP NN\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P329532020\",\n \"CardName\" : \"INVERSIONES VITIVINICOLAS TARIJA SRL\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"329532020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"INVERSIONES VITIVINICOLAS TARIJA SRL\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P332002027\",\n \"CardName\" : \"SELLO POSTAL SRL\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"332002027\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"SELLO POSTAL SRL\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P332902025\",\n \"CardName\" : \"OICO SUPREME TECHNOLOGY SRL\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"332902025\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"OICO SUPREME TECHNOLOGY SRL\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P3334444010\",\n \"CardName\" : \"LIMA VELASQUEZ MIGUEL ANGEL\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"3334444010\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"LIMA VELASQUEZ MIGUEL ANGEL\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P3342820017\",\n \"CardName\" : \"RODOLFO VARGAS BERRIOS - VSG\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"2247994\",\n \"FederalTaxID\" : \"3342820017\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"RODOLFO VARGAS BERRIOS - VSG\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P3354258019\",\n \"CardName\" : \"EDWIN RODRIGO BURGOS FERNANDEZ\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"69722706\",\n \"FederalTaxID\" : \"3354258019\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"EDWIN RODRIGO BURGOS FERNANDEZ\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P336802029\",\n \"CardName\" : \"TECHNET BOLIVIA S.R.L.\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"2486820\",\n \"FederalTaxID\" : \"336802029\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"TECHNET BOLIVIA S.R.L.\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P3369053017\",\n \"CardName\" : \"NOTARIA Nº 69 - FELIX OBLITAS GARCIA\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"2311128\",\n \"FederalTaxID\" : \"3369053017\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"NOTARIA Nº 69 - FELIX OBLITAS GARCIA\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P337536022\",\n \"CardName\" : \"CLUB ESPAÑOL E IBEROAMERICANO DEL ARBITRAJE\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"0\",\n \"Currency\" : \"USD\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"CLUB ESPAÑOL E IBEROAMERICANO DEL ARBITRAJE\",\n \"DebitorAccount\" : \"211200002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P3429685017\",\n \"CardName\" : \"DELGADO RAMIREZ CRISTHIAN LEANDRO\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"3429685017\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"cdelgado@emba.com.bo\",\n \"CardForeignName\" : \"DELGADO RAMIREZ CRISTHIAN LEANDRO\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P3431908\",\n \"CardName\" : \"ANTONIO PORTUGAL\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"3431908\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"ANTONIO PORTUGAL\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P3433336\",\n \"CardName\" : \"CARLOS FERNANDO LOPEZ ARANA\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"3433336\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"CARLOS FERNANDO LOPEZ ARANA\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:33-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:33-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners?%24select=CardCode%2CCardName%2CCardForeignName%2CFederalTaxID%2CCurrency%2CCardType%2CGroupCode%2CPhone1%2CCellular%2CEmailAddress%2CIndustry%2CDebitorAccount%2CProperties1%2CProperties2%2CProperties3%2CU_ClienPadre%2CU_EMBAIDTM%2CValid%2CFrozen\u0026%24skip=1080\u0026%24top=20 | Status: 200 | Duration: 97.1292ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:33 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#BusinessPartners\",\n \"value\" : [\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P3438075016\",\n \"CardName\" : \"PRUDENCIO VALLEJOS LAYME\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"3438075016\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"PRUDENCIO VALLEJOS LAYME\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P344402021\",\n \"CardName\" : \"AGROLIMPIO SERVICE SRL\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"3297705\",\n \"FederalTaxID\" : \"344402021\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"AGROLIMPIO SERVICE SRL\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P3449531015\",\n \"CardName\" : \"MEJIA CANEDO CARLOS JAVIER\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"3449531015\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"GREENCLOUD - Carlos Javier Mejia Canedo\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P3468857\",\n \"CardName\" : \"GREEN TOWER\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"3468857\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"GREEN TOWER\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P3481004012\",\n \"CardName\" : \"VALDA YANGUAS LUIS ANDRES\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"3481004012\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"lvalda@emba.com.bo\",\n \"CardForeignName\" : \"VALDA YANGUAS LUIS ANDRES\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P3481969019\",\n \"CardName\" : \"BENJAMIN ALEJANDRO CALLISAYA PATTI\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"3481969019\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"BENJAMIN ALEJANDRO CALLISAYA PATTI\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P3496851011\",\n \"CardName\" : \"CARBOL\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"3496851011\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"CARBOL\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P350695020\",\n \"CardName\" : \"AMEB EDITORES SRL\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"2751397\",\n \"FederalTaxID\" : \"350695020\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"AMEB EDITORES SRL\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P369148026\",\n \"CardName\" : \"BULLA CREATIVA S.R.L.\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"76207972\",\n \"FederalTaxID\" : \"369148026\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"BULLA CREATIVA S.R.L.\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P373375024\",\n \"CardName\" : \"UNICOSTO S.R.L.\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"373375024\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"UNICOSTO S.R.L.\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P3820143\",\n \"CardName\" : \"JAVIER ALEJANDRO FUENTE REVOLLO\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 102,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"3820143\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"JAVIER ALEJANDRO FUENTE REVOLLO\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P3836301019\",\n \"CardName\" : \"EMPRESA EXOTERMICA de German Urandura Lurice\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"3836301019\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"EMPRESA EXOTERMICA de German Urandura Lurice\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P3919189019\",\n \"CardName\" : \"PATRICIA SUSANA SALVADOR MENDEZ\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"77788437\",\n \"FederalTaxID\" : \"3919189019\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"PATRICIA SUSANA SALVADOR MENDEZ\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P393505026\",\n \"CardName\" : \"BANTICSOFTWARE SRL\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 102,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"393505026\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"BANTICSOFTWARE SRL\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P394368023\",\n \"CardName\" : \"REDTISEG S.R.L.\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"394368023\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"REDTISEG S.R.L.\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P398678014\",\n \"CardName\" : \"NOTARIA 50 - MARIA EUGENIA QUIROGA DE NAVARRO\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"2409596\",\n \"FederalTaxID\" : \"398678014\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"NOTARIA 50 - MARIA EUGENIA QUIROGA DE NAVARRO\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P400834025\",\n \"CardName\" : \"FOROEMP S.R.L.\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"400834025\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"FOROEMP S.R.L.\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P407360022\",\n \"CardName\" : \"PROCAB S.R.L.\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 102,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"407360022\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"PROCAB S.R.L.\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P4105903\",\n \"CardName\" : \"MARCO ANTONIO SUAREZ CABELLO\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"4105903\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"msuarez@emba.com.bo\",\n \"CardForeignName\" : \"MARCO ANTONIO SUAREZ CABELLO\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P418668027\",\n \"CardName\" : \"SOCIEDAD INVERSIONES INMOBILIARIAS SOUTH VALLEYS\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"418668027\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"SOCIEDAD INVERSIONES INMOBILIARIAS SOUTH VALLEYS\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:33-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:33-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners?%24select=CardCode%2CCardName%2CCardForeignName%2CFederalTaxID%2CCurrency%2CCardType%2CGroupCode%2CPhone1%2CCellular%2CEmailAddress%2CIndustry%2CDebitorAccount%2CProperties1%2CProperties2%2CProperties3%2CU_ClienPadre%2CU_EMBAIDTM%2CValid%2CFrozen\u0026%24skip=1100\u0026%24top=20 | Status: 200 | Duration: 113.1672ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:33 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#BusinessPartners\",\n \"value\" : [\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P4261926013\",\n \"CardName\" : \"FLORENCIO SARZURI CABALLERO\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"71583225\",\n \"FederalTaxID\" : \"4261926013\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"FLORENCIO SARZURI CABALLERO\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P4282410013\",\n \"CardName\" : \"RODRIGO JAVIER GARRÓN BOZO\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"2798195\",\n \"FederalTaxID\" : \"4282410013\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"RODRIGO JAVIER GARRÓN BOZO\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P4288248011\",\n \"CardName\" : \"SARDON NEME ALCIDES\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"4288248011\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"SARDON NEME ALCIDES\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P4297933011\",\n \"CardName\" : \"MICHAEL O CONNOR PALZA MC BRIDE\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"2745993\",\n \"FederalTaxID\" : \"4297933011\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"MICHAEL O CONNOR PALZA MC BRIDE\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P4332658010\",\n \"CardName\" : \"QUISPE COPETICON RONALD\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"2455467\",\n \"FederalTaxID\" : \"4332658010\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"QUISPE COPETICON RONALD\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P4378989011\",\n \"CardName\" : \"SEGETEL DE LUIS ENRRIQUE LAURA MAMANI\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"71504909\",\n \"FederalTaxID\" : \"4378989011\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"SEGETEL DE LUIS ENRRIQUE LAURA MAMANI\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P4597256019\",\n \"CardName\" : \"MATURANA FLORES VARGAS CLAUIDA MARIA\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"4597256019\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"cmaturana@emba.com.bo\",\n \"CardForeignName\" : \"MATURANA FLORES VARGAS CLAUIDA MARIA\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P4704329\",\n \"CardName\" : \"ROJO ARDAYA WILFREDO\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"4704329\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"wrojo@emba.com.bo\",\n \"CardForeignName\" : \"ROJO ARDAYA WILFREDO\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P4729465014\",\n \"CardName\" : \"MOTO MOVIL METEORO - Rolando Montenegro Bruno\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"4729465014\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"MOTO MOVIL METEORO - Rolando Montenegro Bruno\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P4761123013\",\n \"CardName\" : \"LUZ MARIA WAGNER VARGAS\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"2795610\",\n \"FederalTaxID\" : \"4761123013\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"LUZ MARIA WAGNER VARGAS\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P4813210015\",\n \"CardName\" : \"PANTONE GRAFIC - CAROLINA ELIZABETH BUSTILLOS GONZALES\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"4813210015\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"PANTONE GRAFIC - CAROLINA ELIZABETH BUSTILLOS GONZALES\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P4837163014\",\n \"CardName\" : \"NOTARIA Nº 69 - MARITZA CASTRO GARNICA\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"2311128\",\n \"FederalTaxID\" : \"4837163014\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"NOTARIA Nº 69 - MARITZA CASTRO GARNICA\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P4838198010\",\n \"CardName\" : \"SPA CLEAN DE KATTY SHIRLEY LINARES SALAS\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"2248888\",\n \"FederalTaxID\" : \"4838198010\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"SPA CLEAN DE KATTY SHIRLEY LINARES SALAS\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P4875943014\",\n \"CardName\" : \"HOTEL AVIADOR DE MAGDALENA SANDRA MORALES MIRANDA\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"3536040\",\n \"FederalTaxID\" : \"4875943014\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"HOTEL AVIADOR DE MAGDALENA SANDRA MORALES MIRANDA\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P4913262019\",\n \"CardName\" : \"NOTARIA 71 - SILVIA VALERIA CARO CLAURE\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"2312074\",\n \"FederalTaxID\" : \"4913262019\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"NOTARIA 71 - SILVIA VALERIA CARO CLAURE\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P4933964018\",\n \"CardName\" : \"BASSTECHNOLOGY - SALVADOR FREDDY BASCOPE HUAYLLAS\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"4933964018\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"BASSTECHNOLOGY - SALVADOR FREDDY BASCOPE HUAYLLAS\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P5331698017\",\n \"CardName\" : \"VANGER CONSULTORA SERVICIOS INTEGRALES de Vania Yubinca Torrico Vargas\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"5331698017\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"VANGER CONSULTORA SERVICIOS INTEGRALES de Vania Yubinca Torrico Vargas\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P5787015017\",\n \"CardName\" : \"AGUIRRE MELGAR MANUEL MAURICIO\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"5787015017\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"maguirre@emba.com.bo\",\n \"CardForeignName\" : \"AGUIRRE MELGAR MANUEL MAURICIO\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P5852643\",\n \"CardName\" : \"MARIA FERNANDA VEREMEENCO BLANCO\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"5852643\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"fveremeenco@emba.com.bo\",\n \"CardForeignName\" : \"MARIA FERNANDA VEREMEENCO BLANCO\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P5942742015\",\n \"CardName\" : \"SOLINVI DE DANIEL TITO LAURA ANCALLI\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"5942742015\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"SOLINVI DE DANIEL TITO LAURA ANCALLI\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:33-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:33-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners?%24select=CardCode%2CCardName%2CCardForeignName%2CFederalTaxID%2CCurrency%2CCardType%2CGroupCode%2CPhone1%2CCellular%2CEmailAddress%2CIndustry%2CDebitorAccount%2CProperties1%2CProperties2%2CProperties3%2CU_ClienPadre%2CU_EMBAIDTM%2CValid%2CFrozen\u0026%24skip=1120\u0026%24top=20 | Status: 200 | Duration: 93.8339ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:33 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#BusinessPartners\",\n \"value\" : [\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P5953577019\",\n \"CardName\" : \"AQ DISEÑO DE VERONICA ADRIANA CALDERON JUSTINIANO\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"2771505\",\n \"FederalTaxID\" : \"5953577019\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"AQ DISEÑO DE VERONICA ADRIANA CALDERON JUSTINIANO\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P5954171\",\n \"CardName\" : \"NADJA SALAME VILLAFANI\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"5954171\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"NADJA SALAME VILLAFANI\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P5967902\",\n \"CardName\" : \"CLARA BELEN SANCHEZ MIGUEL\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"5967902\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"CLARA BELEN SANCHEZ MIGUEL\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P6067038011\",\n \"CardName\" : \"PARI MAMANI MONICA INES\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"6067038011\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"PARI MAMANI MONICA INES\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P6095811010\",\n \"CardName\" : \"MARIA TERESA CARRASCO SUAREZ\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"75269495\",\n \"FederalTaxID\" : \"6095811010\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"MARIA TERESA CARRASCO SUAREZ\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P6109574012\",\n \"CardName\" : \"LUIS FELIPE SEQUEIROS DEL CASTILLO\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"2114027\",\n \"FederalTaxID\" : \"6109574012\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"LUIS FELIPE SEQUEIROS DEL CASTILLO\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P6158175019\",\n \"CardName\" : \"JINDA DE JUAN PABLO INDA\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"2793969\",\n \"FederalTaxID\" : \"6158175019\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"JINDA DE JUAN PABLO INDA\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P6185890013\",\n \"CardName\" : \"MARCELO SARZURI CABALLERO\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 102,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"6185890013\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"MARCELO SARZURI CABALLERO\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P6221530\",\n \"CardName\" : \"ANTONIO JUNIOR CHAVEZ ZEBALLOS\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"6221530\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"ANTONIO JUNIOR CHAVEZ ZEBALLOS\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P6227715019\",\n \"CardName\" : \"EL NUEVO AMANECER De MORALES ZURITA JUAN CARLOS\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"6227715019\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"EL NUEVO AMANECER De MORALES ZURITA JUAN CARLOS\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P6250906018\",\n \"CardName\" : \"CARRILLO ROCHA VANESSA - EXPERTOSIS\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"6250906018\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"CARRILLO ROCHA VANESSA - EXPERTOSIS\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P6314432013\",\n \"CardName\" : \"INES ARELY AYALA ROCA\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"6314432013\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"iayala@emba.com.bo\",\n \"CardForeignName\" : \"INES ARELY AYALA ROCA\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P6474959010\",\n \"CardName\" : \"GUZMAN BILBAO LUIS FERNANDO\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"6474959010\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"GUZMAN BILBAO LUIS FERNANDO\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P6488841\",\n \"CardName\" : \"VILLARROEL RAMIREZ DIANA LUCIA\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"6488841\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"dvillarroel@emba.com.bo\",\n \"CardForeignName\" : \"VILLARROEL RAMIREZ DIANA LUCIA\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P6756926016\",\n \"CardName\" : \"IMPRENTA ARTE PAPEL - WALTER ERNESTO SANCHEZ QUISPE\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"2200107\",\n \"FederalTaxID\" : \"6756926016\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"IMPRENTA ARTE PAPEL - WALTER ERNESTO SANCHEZ QUISPE\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P7164891010\",\n \"CardName\" : \"INSUTECNO de Israel Jonathan Duran Veizaga\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"7164891010\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : null,\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P7686601015\",\n \"CardName\" : \"EL DIEZ - KAREN JORDAN RIVERA\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"7686601015\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"EL DIEZ - KAREN JORDAN RIVERA\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P7712886018\",\n \"CardName\" : \"MEGABRUSH de Natalie Simone Melgar Menezes\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"3463536\",\n \"FederalTaxID\" : \"7712886018\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"MEGABRUSH de Natalie Simone Melgar Menezes\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P7753772\",\n \"CardName\" : \"MARIA ALEJANDRA LOPEZ VILLAMIL TALAMAS\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"7753772\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"alopez@emba.com.bo\",\n \"CardForeignName\" : \"MARIA ALEJANDRA LOPEZ VILLAMIL TALAMAS\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P779305012\",\n \"CardName\" : \"HOTEL CONTINENTAL PARK\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"3347272\",\n \"FederalTaxID\" : \"779305012\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"HOTEL CONTINENTAL PARK\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:33-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:33-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners?%24select=CardCode%2CCardName%2CCardForeignName%2CFederalTaxID%2CCurrency%2CCardType%2CGroupCode%2CPhone1%2CCellular%2CEmailAddress%2CIndustry%2CDebitorAccount%2CProperties1%2CProperties2%2CProperties3%2CU_ClienPadre%2CU_EMBAIDTM%2CValid%2CFrozen\u0026%24skip=1140\u0026%24top=20 | Status: 200 | Duration: 98.8147ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:33 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#BusinessPartners\",\n \"value\" : [\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P820378018\",\n \"CardName\" : \"MAJOBOL DE JUAN RAFAEL JORDAN SANZETENEA\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"4243049\",\n \"FederalTaxID\" : \"820378018\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"MAJOBOL DE JUAN RAFAEL JORDAN SANZETENEA\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P8217764017\",\n \"CardName\" : \"LAURA ANDREA ZALAZAR MELGAR\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"8217764017\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"LAURA ANDREA ZALAZAR MELGAR\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P8426568\",\n \"CardName\" : \"DIAGONAL BOX SRL MENDOZA CALLISAYA CRISTIAN BRAYAN\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 102,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"318606027\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"DIAGONAL BOX SRL MENDOZA CALLISAYA CRISTIAN BRAYAN\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P8822982014\",\n \"CardName\" : \"ALBA MIRANDA JORGE GUILLERMO\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"8822982014\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"galba@emba.com.bo\",\n \"CardForeignName\" : \"ALBA MIRANDA JORGE GUILLERMO\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P9004657205\",\n \"CardName\" : \"OPENATLAS S.A.S\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"9004657205\",\n \"Currency\" : \"USD\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"OPENATLAS S.A.S\",\n \"DebitorAccount\" : \"211200002\",\n \"Valid\" : \"tNO\",\n \"Frozen\" : \"tYES\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P902201606\",\n \"CardName\" : \"YPO\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 102,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"902201606\",\n \"Currency\" : \"USD\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"YPO\",\n \"DebitorAccount\" : \"211200002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P9581747\",\n \"CardName\" : \"MOSCOSO BARRON ALEXANDRA ELIZABETH\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"9581747018\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : \"amoscoso@emba.com.bo\",\n \"CardForeignName\" : \"MOSCOSO BARRON ALEXANDRA ELIZABETH\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P9874391010\",\n \"CardName\" : \"CHOQUE FERNANDEZ RAIZA\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"9874391010\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"CHOQUE FERNANDEZ RAIZA\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P9939952018\",\n \"CardName\" : \"LEO BRAJAM HUARINA CHANA\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"9939952018\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"LEO BRAJAM HUARINA CHANA\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"P995116200\",\n \"CardName\" : \"LEMONTECH SPA\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : \"56 2 3223 9990\",\n \"FederalTaxID\" : \"995116200\",\n \"Currency\" : \"USD\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"LEMONTECH SPA\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"PBE337536022\",\n \"CardName\" : \"PROVEEDORES BENEFICIARIOS AL EXTERIOR\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"0\",\n \"Currency\" : \"USD\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"PROVEEDORES BENEFICIARIOS AL EXTERIOR\",\n \"DebitorAccount\" : \"211200002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"PCBDI\",\n \"CardName\" : \"CAMARA DE BIENES Y DESARROLLOS INMOBILIARIOS\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"0\",\n \"Currency\" : \"BS\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"CAMARA DE BIENES Y DESARROLLOS INMOBILIARIOS\",\n \"DebitorAccount\" : \"211100002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"PELAEMPLOYMENT\",\n \"CardName\" : \"EMPLOYMENT LAW ALLIANCE - ELA\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"0\",\n \"Currency\" : \"USD\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"EMPLOYMENT LAW ALLIANCE - ELA\",\n \"DebitorAccount\" : \"211200002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"PEXT0001\",\n \"CardName\" : \"RF CAPITAL S.R.L.\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"EXT0001\",\n \"Currency\" : \"USD\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"RF CAPITAL S.R.L.\",\n \"DebitorAccount\" : \"211200002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"PEXT0002\",\n \"CardName\" : \"INTERLAW\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"EXT0002\",\n \"Currency\" : \"USD\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"INTERLAW\",\n \"DebitorAccount\" : \"211200002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"PEXT0003\",\n \"CardName\" : \"DUN \u0026 BRADSTREET S.A.C.\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"EXT0003\",\n \"Currency\" : \"USD\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"DUN \u0026 BRADSTREET S.A.C.\",\n \"DebitorAccount\" : \"211200002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"PEXT0004\",\n \"CardName\" : \"MARTIN ALBERT RAPP NN\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"EXT0004\",\n \"Currency\" : \"USD\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"MARTIN ALBERT RAPP NN\",\n \"DebitorAccount\" : \"211200002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"PEXT0005\",\n \"CardName\" : \"LEADERS LEAGUE\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"EXT0005\",\n \"Currency\" : \"USD\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"LEADERS LEAGUE\",\n \"DebitorAccount\" : \"211200002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"PEXT0006\",\n \"CardName\" : \"UPWYSE SAS\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"EXT0006\",\n \"Currency\" : \"USD\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"UPWYSE SAS\",\n \"DebitorAccount\" : \"211200002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"PEXT0007\",\n \"CardName\" : \"LATAM LEGAL LTD\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"EXT0007\",\n \"Currency\" : \"USD\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"LATAM LEGAL LTD\",\n \"DebitorAccount\" : \"211200002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:33-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:33-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners?%24select=CardCode%2CCardName%2CCardForeignName%2CFederalTaxID%2CCurrency%2CCardType%2CGroupCode%2CPhone1%2CCellular%2CEmailAddress%2CIndustry%2CDebitorAccount%2CProperties1%2CProperties2%2CProperties3%2CU_ClienPadre%2CU_EMBAIDTM%2CValid%2CFrozen\u0026%24skip=1160\u0026%24top=20 | Status: 200 | Duration: 80.4398ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:33 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#BusinessPartners\",\n \"value\" : [\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"PEXT0008\",\n \"CardName\" : \"INTERNATIONAL BAR ASSOCIATION (IBA)\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"EXT0008\",\n \"Currency\" : \"USD\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"INTERNATIONAL BAR ASSOCIATION (IBA)\",\n \"DebitorAccount\" : \"211200002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"PEXT0009\",\n \"CardName\" : \"ICC BOLIVIA\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"EXT0009\",\n \"Currency\" : \"##\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"ICC BOLIVIA\",\n \"DebitorAccount\" : \"211200002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"PEXT0010\",\n \"CardName\" : \"TIME MAGAGER - OPENATLAS S.A.S\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"EXT0010\",\n \"Currency\" : \"USD\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"TIME MAGAGER - OPENATLAS S.A.S\",\n \"DebitorAccount\" : \"211200002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tYES\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : 20,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n },\n {\n \"odata.etag\" : \"W/\\\"356A192B7913B04C54574D18C28D46E6395428AB\\\"\",\n \"CardCode\" : \"PEXT0011\",\n \"CardName\" : \"LAW BUSINESS RESEARCH LLC\",\n \"CardType\" : \"cSupplier\",\n \"GroupCode\" : 101,\n \"Phone1\" : null,\n \"FederalTaxID\" : \"99001\",\n \"Currency\" : \"USD\",\n \"Cellular\" : null,\n \"EmailAddress\" : null,\n \"CardForeignName\" : \"LAW BUSINESS RESEARCH LLC\",\n \"DebitorAccount\" : \"211200002\",\n \"Valid\" : \"tYES\",\n \"Frozen\" : \"tNO\",\n \"Properties1\" : \"tNO\",\n \"Properties2\" : \"tNO\",\n \"Properties3\" : \"tNO\",\n \"Industry\" : null,\n \"U_ClienPadre\" : null,\n \"U_EMBAIDTM\" : null\n }\n ]\n}\n","time":"2025-07-30T10:48:33-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners\nHeaders: map[Content-Type:[application/json] Cookie:[B1SESSION=8379f52e-6d52-11f0-8000-00155d0ab91d]]\nBody: \u003cnil\u003e\n","time":"2025-07-30T10:48:33-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: GET https://200.105.166.26:50000/b1s/v1/BusinessPartners?%24select=CardCode%2CCardName%2CCardForeignName%2CFederalTaxID%2CCurrency%2CCardType%2CGroupCode%2CPhone1%2CCellular%2CEmailAddress%2CIndustry%2CDebitorAccount%2CProperties1%2CProperties2%2CProperties3%2CU_ClienPadre%2CU_EMBAIDTM%2CValid%2CFrozen\u0026%24skip=1180\u0026%24top=20 | Status: 200 | Duration: 76.6368ms\nHeaders: map[Content-Type:[application/json;odata=minimalmetadata;charset=utf-8] Dataserviceversion:[3.0] Date:[Wed, 30 Jul 2025 14:48:34 GMT] Server:[Apache] Vary:[Accept-Encoding]]\nBody: {\n \"odata.metadata\" : \"https://200.105.166.26:50000/b1s/v1/$metadata#BusinessPartners\",\n \"value\" : []\n}\n","time":"2025-07-30T10:48:34-04:00"} +{"file":"fetcher.go:121","func":"sync.FetchAllPaginatedManual[...]","level":"info","msg":" [🧩 Job: sync_business_partners] ❌ No hay más elementos","time":"2025-07-30T10:48:34-04:00"} +{"file":"fetcher.go:69","func":"sync.SyncData","level":"info","msg":"[🧩 Job: sync_business_partners] Cantidad de elementos: 1164","time":"2025-07-30T10:48:34-04:00"} +{"file":"operaciones.go:25","func":"db.(*GormDatabase).SyncRows","level":"info","msg":"[🧹 Tabla: public.sync_bp_customers] ✅ Inicializacion Syncing data...","time":"2025-07-30T10:48:34-04:00"} +{"file":"operaciones.go:51","func":"db.(*GormDatabase).SyncRows","level":"debug","msg":"[🧹 Tabla: public.sync_bp_customers] Procesando batch de 100 registros","time":"2025-07-30T10:48:34-04:00"} +{"file":"operaciones.go:51","func":"db.(*GormDatabase).SyncRows","level":"debug","msg":"[🧹 Tabla: public.sync_bp_customers] Procesando batch de 100 registros","time":"2025-07-30T10:48:34-04:00"} +{"file":"operaciones.go:51","func":"db.(*GormDatabase).SyncRows","level":"debug","msg":"[🧹 Tabla: public.sync_bp_customers] Procesando batch de 100 registros","time":"2025-07-30T10:48:34-04:00"} +{"file":"operaciones.go:51","func":"db.(*GormDatabase).SyncRows","level":"debug","msg":"[🧹 Tabla: public.sync_bp_customers] Procesando batch de 100 registros","time":"2025-07-30T10:48:34-04:00"} +{"file":"operaciones.go:51","func":"db.(*GormDatabase).SyncRows","level":"debug","msg":"[🧹 Tabla: public.sync_bp_customers] Procesando batch de 100 registros","time":"2025-07-30T10:48:34-04:00"} +{"file":"operaciones.go:51","func":"db.(*GormDatabase).SyncRows","level":"debug","msg":"[🧹 Tabla: public.sync_bp_customers] Procesando batch de 100 registros","time":"2025-07-30T10:48:35-04:00"} +{"file":"operaciones.go:51","func":"db.(*GormDatabase).SyncRows","level":"debug","msg":"[🧹 Tabla: public.sync_bp_customers] Procesando batch de 100 registros","time":"2025-07-30T10:48:35-04:00"} +{"file":"operaciones.go:51","func":"db.(*GormDatabase).SyncRows","level":"debug","msg":"[🧹 Tabla: public.sync_bp_customers] Procesando batch de 100 registros","time":"2025-07-30T10:48:35-04:00"} +{"file":"operaciones.go:51","func":"db.(*GormDatabase).SyncRows","level":"debug","msg":"[🧹 Tabla: public.sync_bp_customers] Procesando batch de 100 registros","time":"2025-07-30T10:48:35-04:00"} +{"file":"operaciones.go:51","func":"db.(*GormDatabase).SyncRows","level":"debug","msg":"[🧹 Tabla: public.sync_bp_customers] Procesando batch de 100 registros","time":"2025-07-30T10:48:35-04:00"} +{"file":"operaciones.go:51","func":"db.(*GormDatabase).SyncRows","level":"debug","msg":"[🧹 Tabla: public.sync_bp_customers] Procesando batch de 100 registros","time":"2025-07-30T10:48:35-04:00"} +{"file":"operaciones.go:51","func":"db.(*GormDatabase).SyncRows","level":"debug","msg":"[🧹 Tabla: public.sync_bp_customers] Procesando batch de 64 registros","time":"2025-07-30T10:48:36-04:00"} +{"file":"operaciones.go:133","func":"db.(*GormDatabase).SyncRows","level":"info","msg":"[🧹 Tabla: public.sync_bp_customers] ✅ Finalizacion Syncing data...","time":"2025-07-30T10:48:36-04:00"} +{"file":"fetcher.go:92","func":"sync.SyncData","level":"info","msg":"[🧩 Job: sync_business_partners] ⏱ Duración total: 36.25s","time":"2025-07-30T10:48:36-04:00"} +{"file":"manager.go:49","func":"scheduler.loadAndStartJobs.func1","level":"info","msg":"🚀 Ejecutando job: sync_graphql","time":"2025-07-30T10:49:00-04:00"} +{"file":"fetcher.go:22","func":"sync.SyncData","level":"info","msg":"[🧩 Job: sync_graphql] Iniciando sincronización...","time":"2025-07-30T10:49:00-04:00"} +{"file":"fetcher.go:35","func":"sync.SyncData","level":"info","msg":"[🧩 Job: sync_graphql] Iniciando proceso parametros:graphql_customer","time":"2025-07-30T10:49:00-04:00"} +{"file":"redis_loader.go:20","func":"utils.CargarDesdeRedis[...]","level":"debug","msg":"🔑 Clave [parametros:graphql_customer] obtenida de Redis: {\n\t\"auth\": {\n\t\t\"gql\": true,\n\t\t\"method\": \"POST\",\n\t\t\"path\": \"/api/auth/token\",\n\t\t\"headers\": {\n\t\t\t\"Content-Type\": \"application/json\",\n\t\t\t\"User-Agent\": \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36\",\n\t\t\t\"origin\": \"https://azure-function.timemanagerweb.com\",\n\t\t\t\"Accept\": \"application/json\",\n\t\t\t\"tenant-name\": \"pruebas-dos\"\n\t\t}\n\t},\n\t\"service\": {\n\t\t\"gql\": true,\n\t\t\"method\": \"POST\",\n\t\t\"path\": \"/graphql/\",\n\t\t\"headers\": {\n\t\t\t\"Content-Type\": \"application/json\",\n\t\t\t\"Accept\": \"application/json\",\n\t\t\t\"User-Agent\": \"Mozilla/5.0 (X11; Linux x86_64)...\",\n\t\t\t\"origin\": \"https://azure-function.timemanagerweb.com\",\n\t\t\t\"tenant-name\": \"pruebas-dos\"\n\t\t},\n\t\t\"graphql\": {\n\t\t\t\"query\": \"query ($limit: Int, $orderBy: String, $orderDesc: Boolean, $page: Int) {\\n CustomersMeta(limit: $limit, orderBy: $orderBy, orderDesc: $orderDesc, page: $page) {\\n meta {\\n hasNextPage\\n hasPreviousPage\\n limit\\n next\\n page\\n pages\\n previous\\n total\\n }\\n rows {\\n id\\n code\\n number\\n color\\n name\\n trade_name\\n displayName\\n email\\n phone\\n address\\n city\\n state\\n country\\n postal_code\\n nit\\n primary_external_code\\n status\\n statusMarking\\n billingLimitDate\\n recepctionLimitDate\\n dmsIntegration\\n cmrRequiredDocuments\\n cmrPayTms\\n enabled\\n created_at\\n updated_at\\n valueTax\\n withIva\\n paymentDays\\n national\\n enterpriseGroup\\n responsiblePartner {\\n id\\n username\\n email\\n fullName\\n shortName\\n locale\\n userType\\n superAdmin\\n enabled\\n created_at\\n updated_at\\n daysAllow\\n }\\n }\\n }\\n}\",\n\t\t\t\"root_field\": \"CustomersMeta\",\n\t\t\t\"row_field\": \"rows\",\n\t\t\t\"variables\": {\n\t\t\t\t\"limit\": 100,\n\t\t\t\t\"orderBy\": \"orderBy\",\n\t\t\t\t\"orderDesc\": true,\n\t\t\t\t\"page\": 1\n\t\t\t},\n\t\t\t\"pagination\": {\n\t\t\t\t\"enabled\": true,\n\t\t\t\t\"cursorField\": \"data.CustomersMeta.meta.next\",\n\t\t\t\t\"hasNextField\": \"data.CustomersMeta.meta.hasNextPage\",\n\t\t\t\t\"limitField\": \"limit\",\n\t\t\t\t\"cursorParam\": \"page\"\n\t\t\t}\n\t\t}\n\t},\n\t\"persistencia\": {\n\t\t\"table\": \"public.sync_bp_customers\",\n\t\t\"update_by\": {\n\t\t\t\"u_embaidtm\": \"id\",\n\t\t\t\"card_code\": \"primary_external_code\"\n\t\t},\n\t\t\"batch_size\": 100,\n\t\t\"campo_sync\": \"sync_updated_at\",\n\t\t\"primary_key\": \"id\",\n\t\t\"soft_delete\": {\n\t\t\t\"enabled\": false,\n\t\t\t\"field\": \"sync_updated_at\"\n\t\t},\n\"fields\": {\n \"id\": \"id\",\n \"code\": \"code\",\n \"number\": \"number\",\n \"color\": \"color\",\n \"card_name\": \"name\",\n \"trade_name\": \"trade_name\",\n \"display_name\": \"displayName\",\n \"email_address\": \"email\",\n \"phone\": \"phone\",\n \"address\": \"address\",\n \"city\": \"city\",\n \"state\": \"state\",\n \"country\": \"country\",\n \"postal_code\": \"postal_code\",\n \"tax_id\": \"nit\",\n \"primary_external_code\": \"primary_external_code\",\n \"status\": \"status\",\n \"status_marking\": \"statusMarking\",\n \"billing_limit_date\": \"billingLimitDate\",\n \"recepction_limit_date\": \"recepctionLimitDate\",\n \"dms_integration\": \"dmsIntegration\",\n \"cmr_required_documents\": \"cmrRequiredDocuments\",\n \"cmr_pay_tms\": \"cmrPayTms\",\n \"created_at\": \"created_at\",\n \"updated_at\": \"updated_at\",\n \"value_tax\": \"valueTax\",\n \"with_iva\": \"withIva\",\n \"payment_days\": \"paymentDays\",\n \"national\": \"national\",\n \"enterprise_group\": \"enterpriseGroup\",\n \"responsible_partner_id\": \"responsiblePartner.id\",\n \"responsible_partner_username\": \"responsiblePartner.username\",\n \"responsible_partner_email\": \"responsiblePartner.email\",\n \"responsible_partner_fullname\": \"responsiblePartner.fullName\",\n \"responsible_partner_shortname\": \"responsiblePartner.shortName\",\n \"responsible_partner_locale\": \"responsiblePartner.locale\",\n \"responsible_partner_user_type\": \"responsiblePartner.userType\",\n \"responsible_partner_created_at\": \"responsiblePartner.created_at\",\n \"responsible_partner_updated_at\": \"responsiblePartner.updated_at\",\n \"responsible_partner_days_allow\": \"responsiblePartner.daysAllow\"\n}\n\n\t}\n}","time":"2025-07-30T10:49:00-04:00"} +{"file":"session.go:27","func":"http.GetSession","level":"info","msg":"[🧩 Job: sync_graphql] 🔑 Sesión obtenida de Redis session:TM_PROD:TM","time":"2025-07-30T10:49:01-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: POST https://apinewtm.com/graphql/\nHeaders: map[Accept:[application/json] Authorization:[Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJpYXQiOjE3NTM4ODY1MjIsImV4cCI6MTc1Mzk2NjUyMiwiaWQiOjEwNSwidXNlcm5hbWUiOiJpbnRlZ3JhY2lvbmVzQGVtYmEuYm8iLCJhcGlrZXkiOiI5Yzg0ZjYzZTRlMzk2ZGZmOWU5ZjU3NDI5OGRmZWUzOSIsImFwaWtleUNyZWF0ZWRBdCI6eyJkYXRlIjoiMjAyNS0wNy0xNyAxMDo0MToyNS4wMDAwMDAiLCJ0aW1lem9uZV90eXBlIjozLCJ0aW1lem9uZSI6IkFtZXJpY2EvQm9nb3RhIn0sImZ1bGxOYW1lIjoiSW50ZWdyYWNpw7NuIEVNQkEiLCJlbWFpbCI6ImludGVncmFjaW9uZXNAZW1iYS5ibyIsImxvY2FsZSI6ImVzIiwiZGF5c0FsbG93ZWQiOjMwLCJpc0Nvb3JkaW5hdG9yIjpmYWxzZSwidHlwZVRhc2tWaWV3IjoibGlzdHMiLCJkYXlzYWxsb3ciOjMwLCJyb2xlcyI6e30sInNob3J0X25hbWUiOiJJTi5FTUJBIiwicGVybWlzc2lvbnMiOlsic3luY19leHRlcm5hbF9idXNpbmVzcyIsInN5bmNfZXh0ZXJuYWxfY3VzdG9tZXIiLCJzeW5jX2V4dGVybmFsX21pbGVzdG9uZSIsImFic2VuY2VfYXBwcm92ZSIsImFic2VuY2VfY3JlYXRlX2FsbCIsImFic2VuY2VfY3JlYXRlX293biIsImFic2VuY2VfbWVudSIsImFjY291bnRpbmdfYnVzaW5lc3NfbGlzdCIsImFjY291bnRpbmdfY3VzdG9tZXJfbGlzdCIsImJpbGxpbmdfcGVyaW9kX2RlbGV0ZV9hbGwiLCJiaWxsaW5nX3BlcmlvZF9lZGl0X2FsbCIsImJpbGxpbmdfcGVyaW9kX2xpc3QiLCJiaWxsaW5nX3BlcmlvZF9yZWFjdGl2YXRlIiwiYm9hcmRfcmF0ZV91c2VyX2NyZWF0ZSIsImJvYXJkX3JhdGVfdXNlcl9lZGl0IiwiYnVzaW5lc3NfY3JlYXRlIiwiYnVzaW5lc3NfZGVzY3JpcHRpb25fc2F2ZSIsImJ1c2luZXNzX2VkaXQiLCJidXNpbmVzc19saXN0X2FsbCIsImJ1c2luZXNzX21lbnUiLCJidXNpbmVzc19yZXNwb25zaWJsZV9saXN0X2FsbCIsImJ1c2luZXNzX3NlZV9iaWxsaW5nX2luZm8iLCJidXNpbmVzc2VzX2FsbG93ZWRfdXNlcl9jcmVhdGUiLCJidXNpbmVzc2VzX2FsbG93ZWRfdXNlcl9kZWxldGUiLCJjb21wYW55X2Rpc2FibGUiLCJjb21wYW55X2VkaXQiLCJjb21wYW55X2xpc3QiLCJjb25jZXB0X2NyZWF0ZSIsImNvbmNlcHRfZWRpdCIsImNvbmNlcHRfbWVudSIsImNvbnRhY3RfY3JlYXRlIiwiY29udGFjdF9jcmVhdGVfZmFzdCIsImNvbnRhY3RfZWRpdCIsImNvbnRhY3RfbGlzdCIsImNvbnRhY3RfbWVudSIsImN1c3RvbWVyX2NyZWF0ZSIsImN1c3RvbWVyX2NyZWF0ZV9mYXN0IiwiY3VzdG9tZXJfZWRpdCIsImN1c3RvbWVyX2xpc3QiLCJjdXN0b21lcl9saXN0X2FsbCIsImN1c3RvbWVyX21lbnUiLCJleHBlbnNlX2NyZWF0ZV9hbGwiLCJleHBlbnNlX2RlbGV0ZV9hbGwiLCJleHBlbnNlX2R1cGxpY2F0ZSIsImV4cGVuc2VfZWRpdF9hbGwiLCJleHBlbnNlX2xpc3RfYWxsIiwiZXhwZW5zZV9tZW51IiwiZXhwZW5zZV9yZWplY3RfYWxsIiwiZmFiX3Nob3ciLCJmaWxlX21lbnUiLCJnZW9yZWZlcmVuY2VfY3JlYXRlIiwiZ2VvcmVmZXJlbmNlX2VkaXQiLCJnZW9yZWZlcmVuY2VfbWVudSIsImdvX3RvX2xlZ2FjeSIsImluZGljYXRvcnNfbWVudSIsImludm9pY2VfY3JlYXRlIiwiaW52b2ljZV9kZXRhaWxfbGlzdF9hbGwiLCJpbnZvaWNlX2ZpeF90aW1lc19jdXN0b21fdmFsdWUiLCJpbnZvaWNlX2xpc3RfYWxsIiwiaW52b2ljZWFkdmFuY2VfY3JlYXRlIiwiaW52b2ljZWFkdmFuY2VfbGlzdCIsImludm9pY2VhZHZhbmNlX3VwZGF0ZSIsImxvZ19saXN0X2FsbCIsImxvZ19saXN0X293biIsIm1pbGVzdG9uZV9jcmVhdGUiLCJtaWxlc3RvbmVfZGVsZXRlIiwibWlsZXN0b25lX2VkaXQiLCJtb250aGx5X2ZpeF9yYXRlX2dyb3VwX2NyZWF0ZSIsIm1vbnRobHlfZml4X3JhdGVfZ3JvdXBfZWRpdCIsIm1vbnRobHlfdXNlcl9jb3N0X2NyZWF0ZSIsIm1vbnRobHlfdXNlcl9jb3N0X2VkaXQiLCJwYXltZW50X2NyZWF0ZSIsInBheW1lbnRfZGVsZXRlIiwicGF5bWVudF9lZGl0IiwicGF5bWVudF9tZW51IiwicHJvY2VkdXJlX21lbnUiLCJwcm9jZWR1cmVfcmF0ZV9jcmVhdGUiLCJwcm9jZWR1cmVfcmF0ZV9kZXRhaWxfY3JlYXRlIiwicHJvY2VkdXJlX3JhdGVfZGV0YWlsX2VkaXQiLCJwcm9jZWR1cmVfcmF0ZV9kZXRhaWxfbGlzdCIsInByb2NlZHVyZV9yYXRlX2VkaXQiLCJwcm9jZWR1cmVfcmF0ZV9saXN0IiwicHJvY2VkdXJlX3JhdGVfbWVudSIsInByb2NlZHVyZV90cmFuc2FjdGlvbl9saXN0IiwicHJvamVjdF9hcmNoaXZlX2Nhc2NhZGVfYWxsIiwicHJvamVjdF9kZWxldGVfY2FzY2FkZV9hbGwiLCJwcm9qZWN0X3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInJhdGVfYnVzaW5lc3NfY2F0ZWdvcnlfY3JlYXRlIiwicmF0ZV9idXNpbmVzc19jYXRlZ29yeV9lZGl0IiwicmF0ZV9idXNpbmVzc191c2VyX2NyZWF0ZSIsInJhdGVfYnVzaW5lc3NfdXNlcl9lZGl0IiwicmF0ZV9leGNoYW5nZV9jcmVhdGUiLCJyYXRlX2V4Y2hhbmdlX2VkaXQiLCJyYXRlX2V4Y2hhbmdlX2xpc3QiLCJyYXRlX3VzZXJfY3JlYXRlIiwicmF0ZV91c2VyX2VkaXQiLCJyb2xlX2NyZWF0ZSIsInJvbGVfZWRpdF9hbGwiLCJyb2xlX2xpc3RfYWxsIiwic2VjdGlvbl9hcmNoaXZlX2Nhc2NhZGVfYWxsIiwic2VjdGlvbl9kZWxldGVfY2FzY2FkZV9hbGwiLCJzZWN0aW9uX3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInNlZV9tZW51X3JhdGVfZXhjaGFuZ2UiLCJzZXJpZV9jcmVhdGUiLCJzZXJpZV9lZGl0Iiwic2VyaWVfbWVudSIsInNldHRpbmdzX3ZpZXciLCJzdXBwbGllcl9jcmVhdGUiLCJ0YXNrX2FkZF90aW1lX2FsbCIsInRhc2tfYWRkX3RpbWVfb3duIiwidGFza19hc3NpZ25lZF91c2VyX2VtYWlsIiwidGFza19jbG9zZWRfZW1haWwiLCJ0YXNrX2NyZWF0ZV9hbGwiLCJ0YXNrX2NyZWF0ZV9jb21tZW50X2VtYWlsIiwidGFza19jcmVhdGVfc2VsZiIsInRhc2tfY3JlYXRlX3RlYW0iLCJ0YXNrX2RlbGV0ZV9hbGwiLCJ0YXNrX2RlbGV0ZV9vd24iLCJ0YXNrX2RlbGV0ZV90ZWFtIiwidGFza19lZGl0X2FsbCIsInRhc2tfZWRpdF9kdWVfZGF0ZSIsInRhc2tfZWRpdF9vd24iLCJ0YXNrX2VkaXRfdGVhbSIsInRhc2tfbGlzdF9hbGwiLCJ0YXNrX2xpc3Rfb3duIiwidGFza19saXN0X3RlYW0iLCJ0YXNrX21hc3NpdmVpbXBvcnQiLCJ0YXNrX21lbnUiLCJ0YXNrX21pZ3JhdGlvbiIsInRhc2tfc2V0X2FkZGl0aW9uYWxfYXNzaWduZWVzIiwidGFza19zZXRfZHVlX2RhdGUiLCJ0YXNrX3NldF9lc3RpbWF0ZWRfdGltZSIsInRhc2tfc2V0X3ByaW9yaXR5IiwidGFza19zZXRfcHJvZ3Jlc3MiLCJ0YXhfZWRpdF9hbGwiLCJ0YXhfbGlzdF9hbGwiLCJ0ZWFtX2FyY2hpdmVfY2FzY2FkZV9hbGwiLCJ0ZWFtX2NyZWF0ZV9hbGwiLCJ0ZWFtX2RlbGV0ZV9hbGwiLCJ0ZWFtX2VkaXRfYWxsIiwidGVhbV9saXN0X2FsbCIsInRlYW1fbGlzdF9vd24iLCJ0ZWFtX3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInRpbWVfYWNjZXB0X2FsbCIsInRpbWVfYWNjZXB0X293biIsInRpbWVfYXBwcm92ZV9hbGwiLCJ0aW1lX2FwcHJvdmVfb3duIiwidGltZV9jcmVhdGVfYWxsIiwidGltZV9jcmVhdGVfb3duIiwidGltZV9kZWxldGVfYWxsIiwidGltZV9kZWxldGVfb3duIiwidGltZV9kZW55X2FsbCIsInRpbWVfZGVueV9vd24iLCJ0aW1lX2Rvd25sb2FkZmlsZV9hbGwiLCJ0aW1lX2Rvd25sb2FkZmlsZV9vd24iLCJ0aW1lX2VkaXRfYWxsIiwidGltZV9lZGl0X2Nsb3NlX3BlcmlvZF9hbGwiLCJ0aW1lX2VkaXRfY2xvc2VfcGVyaW9kX293biIsInRpbWVfZWRpdF9vd24iLCJ0aW1lX2xpc3RfYWxsIiwidGltZV9saXN0X293biIsInRpbWVfbWVudSIsInRpbWVfbWludXRlc196ZXJvIiwidGltZV9yZWplY3RfYWxsIiwidGltZV9yZXN0cmljdGVkX3BlcmlvZF9jcmVhdGUiLCJ0aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX2VkaXQiLCJ0aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX21lbnUiLCJ0aW1lX3NoYXJlX2FsbCIsInRpbWVfc2hhcmVfb3duIiwidGltZV9zaG93X2NhbGVuZGFyX3ZpZXciLCJ0aW1lX3VwbG9hZGZpbGVfYWxsIiwidGltZV91cGxvYWRmaWxlX293biIsInRyYW5zYWN0aW9uX2FkYXB0ZXJfbGlzdCIsInRyYW5zYWN0aW9uX2xpc3QiLCJ1c2VyX2Fic2VuY2VzX3Nob3ciLCJ1c2VyX2Nvc3RfY3JlYXRlIiwidXNlcl9jb3N0X2VkaXQiLCJ1c2VyX2Nvc3RfbGlzdCIsInVzZXJfY29zdF9tZW51IiwidXNlcl9jb3N0X3JhdGVfY3JlYXRlIiwidXNlcl9jb3N0X3JhdGVfZWRpdCIsInVzZXJfY29zdF9yYXRlX2xpc3QiLCJ1c2VyX2NyZWF0ZSIsInVzZXJfZGlzYWJsZSIsInVzZXJfZWRpdCIsInVzZXJfZWRpdF9kYXlzX2FsbG93X29ubHkiLCJ1c2VyX2dyb3VwX3JvbGVfY3JlYXRlX2FsbCIsInVzZXJfZ3JvdXBfcm9sZV9kZWxldGVfYWxsIiwidXNlcl9ncm91cF9yb2xlX2VkaXRfYWxsIiwidXNlcl9ncm91cF9yb2xlc19saXN0X2FsbCIsInVzZXJfbGlzdCIsInVzZXJfbGlzdF9hbGwiLCJ1c2VyX21hc3NfYWN0aXZhdGlvbiIsInVzZXJfcHJvZHVjdGl2aXR5X2NyZWF0ZSIsInVzZXJfcHJvZHVjdGl2aXR5X2Rpc2FibGUiLCJ1c2VyX3Byb2R1Y3Rpdml0eV9lZGl0IiwidXNlcl9wcm9kdWN0aXZpdHlfZW5hYmxlIiwidXNlcl9wcm9kdWN0aXZpdHlfbWVudSIsInVzZXJfdGltZV9yZXN0cmljdGVkX3BlcmlvZF9jcmVhdGUiLCJ1c2VyX3RpbWVfcmVzdHJpY3RlZF9wZXJpb2RfZGVsZXRlIiwidXNlcl90aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX2VkaXQiLCJ1c2VyZ3JvdXBfY3JlYXRlX2FsbCIsInVzZXJncm91cF9kZWxldGVfYWxsIiwidXNlcmdyb3VwX2VkaXRfYWxsIiwidXNlcmdyb3VwX2xpc3RfYWxsIiwidXNlcmdyb3VwX21lbnUiLCJ1c2Vyc191c2VyX2dyb3VwX2NyZWF0ZV9hbGwiLCJ1c2Vyc191c2VyX2dyb3VwX2RlbGV0ZV9hbGwiLCJ1c2Vyc191c2VyX2dyb3VwX2VkaXRfYWxsIiwidXNlcnNfdXNlcl9ncm91cHNfbGlzdF9hbGwiXSwiaG9tZXBhZ2UiOm51bGx9.kShN7NXGoaz1oFro-yYNyIpIEcnNpo1GiB8SFGKFUJtDQoqyp1I1w-CMA8Kta3vWXnUZwx-y2z1yVSJaMpZbqQgKFlakpcf6351bZSL8IAUPExSfLz0HYYCWFx-Usx94BBTqosKsRhnT8PkPN3dGxs8-XTIEDi9gN-Pk9OSHmM5mPkTsaaxTY40M-F7Y0Up2y6s_lwFaX13CmstiYZSXzyKL9SUBBx-E6-8qQAfuKPIoZ_50jSGPW98-IkAcWwqO6yGf-M07dSfFZ2vLfwc3ulHm2p8jVSmRxJ_O43BEWQD5cvqGbVIvSMXkS4y98DL4Vencjjg27iu3CUJsDNBBTg] Content-Type:[application/json] Origin:[https://azure-function.timemanagerweb.com] Tenant-Name:[pruebas-dos] User-Agent:[Mozilla/5.0 (X11; Linux x86_64)...]]\nBody: map[query:query ($limit: Int, $orderBy: String, $orderDesc: Boolean, $page: Int) {\n CustomersMeta(limit: $limit, orderBy: $orderBy, orderDesc: $orderDesc, page: $page) {\n meta {\n hasNextPage\n hasPreviousPage\n limit\n next\n page\n pages\n previous\n total\n }\n rows {\n id\n code\n number\n color\n name\n trade_name\n displayName\n email\n phone\n address\n city\n state\n country\n postal_code\n nit\n primary_external_code\n status\n statusMarking\n billingLimitDate\n recepctionLimitDate\n dmsIntegration\n cmrRequiredDocuments\n cmrPayTms\n enabled\n created_at\n updated_at\n valueTax\n withIva\n paymentDays\n national\n enterpriseGroup\n responsiblePartner {\n id\n username\n email\n fullName\n shortName\n locale\n userType\n superAdmin\n enabled\n created_at\n updated_at\n daysAllow\n }\n }\n }\n} variables:map[limit:100 orderBy:orderBy orderDesc:true page:1]]\n","time":"2025-07-30T10:49:02-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: POST https://apinewtm.com/graphql/ | Status: 200 | Duration: 2.835186s\nHeaders: map[Access-Control-Allow-Credentials:[true] Access-Control-Allow-Origin:[https://azure-function.timemanagerweb.com] Access-Control-Expose-Headers:[link, access-control-allow-credentials] Cache-Control:[no-cache, private] Content-Type:[application/json] Date:[Wed, 30 Jul 2025 14:49:05 GMT] Server:[] Vary:[Authorization]]\nBody: {\"errors\":[{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":47,\"column\":9}],\"path\":[\"CustomersMeta\",\"rows\",35,\"responsiblePartner\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":48,\"column\":9}],\"path\":[\"CustomersMeta\",\"rows\",35,\"responsiblePartner\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":49,\"column\":9}],\"path\":[\"CustomersMeta\",\"rows\",35,\"responsiblePartner\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":50,\"column\":9}],\"path\":[\"CustomersMeta\",\"rows\",35,\"responsiblePartner\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":51,\"column\":9}],\"path\":[\"CustomersMeta\",\"rows\",35,\"responsiblePartner\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":52,\"column\":9}],\"path\":[\"CustomersMeta\",\"rows\",35,\"responsiblePartner\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":53,\"column\":9}],\"path\":[\"CustomersMeta\",\"rows\",35,\"responsiblePartner\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":54,\"column\":9}],\"path\":[\"CustomersMeta\",\"rows\",35,\"responsiblePartner\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":55,\"column\":9}],\"path\":[\"CustomersMeta\",\"rows\",35,\"responsiblePartner\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":56,\"column\":9}],\"path\":[\"CustomersMeta\",\"rows\",35,\"responsiblePartner\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":57,\"column\":9}],\"path\":[\"CustomersMeta\",\"rows\",35,\"responsiblePartner\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":47,\"column\":9}],\"path\":[\"CustomersMeta\",\"rows\",36,\"responsiblePartner\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":48,\"column\":9}],\"path\":[\"CustomersMeta\",\"rows\",36,\"responsiblePartner\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":49,\"column\":9}],\"path\":[\"CustomersMeta\",\"rows\",36,\"responsiblePartner\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":50,\"column\":9}],\"path\":[\"CustomersMeta\",\"rows\",36,\"responsiblePartner\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":51,\"column\":9}],\"path\":[\"CustomersMeta\",\"rows\",36,\"responsiblePartner\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":52,\"column\":9}],\"path\":[\"CustomersMeta\",\"rows\",36,\"responsiblePartner\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":53,\"column\":9}],\"path\":[\"CustomersMeta\",\"rows\",36,\"responsiblePartner\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":54,\"column\":9}],\"path\":[\"CustomersMeta\",\"rows\",36,\"responsiblePartner\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":55,\"column\":9}],\"path\":[\"CustomersMeta\",\"rows\",36,\"responsiblePartner\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":56,\"column\":9}],\"path\":[\"CustomersMeta\",\"rows\",36,\"responsiblePartner\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":57,\"column\":9}],\"path\":[\"CustomersMeta\",\"rows\",36,\"responsiblePartner\",\"daysAllow\"]}],\"data\":{\"CustomersMeta\":{\"meta\":{\"hasNextPage\":true,\"hasPreviousPage\":false,\"limit\":100,\"next\":2,\"page\":1,\"pages\":10,\"previous\":-1,\"total\":919},\"rows\":[{\"id\":\"2\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"3M COMPANY\",\"trade_name\":\"3M COMPANY\",\"displayName\":\"599 - 3M COMPANY\",\"email\":\"eagonzalez@mmm.com\",\"phone\":\"6 719 8332\",\"address\":\"3M Center, St. Paul, MN 55144\",\"city\":\"Paul\",\"state\":\"Florida\",\"country\":\"USA\",\"postal_code\":\"0\",\"nit\":\"12345\",\"primary_external_code\":\"599\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:18\",\"updated_at\":\"2025-02-17 18:42:03\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"7\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"ACTIVZBOLIVIA SRL\",\"trade_name\":\"ACTIVZBOLIVIA SRL\",\"displayName\":\"406 - ACTIVZBOLIVIA SRL\",\"email\":\"jnavarro@emba.com.bo\",\"phone\":\"69832546\",\"address\":\"AV SANCHES BUSTAMANTE CALLE 16 CALACOTO\",\"city\":\"La Paz\",\"state\":\"La Paz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"402408021\",\"primary_external_code\":\"406\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:18\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"8\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"ADM Archer Daniels Midland Company\",\"trade_name\":\"ADM Archer Daniels Midland Company\",\"displayName\":\"501 - ADM Archer Daniels Midland Company\",\"email\":\"Lilian.Silva1@adm.com\",\"phone\":\"+55 19 3884-9844\",\"address\":\"Av. Prof. Benedito Montenegro, s\\/n\\u00ba Paul\\u00ednia - SP\",\"city\":\"Estado\",\"state\":\"Estado\",\"country\":\"Andorra\",\"postal_code\":\"0000\",\"nit\":\"501\",\"primary_external_code\":\"501\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:18\",\"updated_at\":\"2025-02-18 15:18:30\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"94\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"BLENASTOR BOLIVIA\",\"trade_name\":\"BLENASTOR BOLIVIA\",\"displayName\":\"549 - BLENASTOR BOLIVIA\",\"email\":\"nrosas@blenastor.com\",\"phone\":\"59323949880\",\"address\":\"Quito\",\"city\":\"Quito\",\"state\":\"Ecuador\",\"country\":\"Ecuador\",\"postal_code\":\"170102\",\"nit\":\"99001\",\"primary_external_code\":\"549\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":23,\"username\":\"fsanchez@emba.com\",\"email\":\"fsanchez@emba.com\",\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"shortName\":\"fsanchez\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"103\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"BRIGARD CASTRO S.A.S.\",\"trade_name\":\"BRIGARD CASTRO S.A.S.\",\"displayName\":\"522 - BRIGARD CASTRO S.A.S.\",\"email\":\"clatorre@bc.com.co\",\"phone\":\"5717442200\",\"address\":\"Calle 70 Bis No. 4-41\",\"city\":\"Bogot\\u00e1\",\"state\":\"Bogot\\u00e1\",\"country\":\"Colombia\",\"postal_code\":\"110110\",\"nit\":\"860.047.372-\",\"primary_external_code\":\"522\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":23,\"username\":\"fsanchez@emba.com\",\"email\":\"fsanchez@emba.com\",\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"shortName\":\"fsanchez\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"140\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"COMERCIALIZADORA IMMUNOTEC BOLIVIA S.A.\",\"trade_name\":\"COMERCIALIZADORA IMMUNOTEC BOLIVIA S.A.\",\"displayName\":\"398 - COMERCIALIZADORA IMMUNOTEC BOLIVIA S.A.\",\"email\":\"caceresjg@gmail.com\",\"phone\":\"77499598\",\"address\":\"PARQUE DEMETRIO CANEDO CALLE VALENCIA\",\"city\":\"La PAz\",\"state\":\"La Paz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"399509027\",\"primary_external_code\":\"398\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"202\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Diversey de Argentina S.A.\",\"trade_name\":\"Diversey de Argentina S.A.\",\"displayName\":\"481 - Diversey de Argentina S.A.\",\"email\":\"carolina.mayer@Diversey.com\",\"phone\":\"54117100000000000\",\"address\":\"Av. Bernab\\u00e9 M\\u00e1rquez 990, Villa Bosch, Buenos Aires\",\"city\":\"Buenos Aires\",\"state\":\"Buenos Aires\",\"country\":\"Argentina\",\"postal_code\":\"B1228\",\"nit\":\"481\",\"primary_external_code\":\"481\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"444\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"trade_name\":\"MEDTRONIC LOGISTICS LLC\",\"displayName\":\"341 - MEDTRONIC LOGISTICS LLC\",\"email\":\"cindy.vasquez@medtronic.com\",\"phone\":\"51161118748\",\"address\":\"Av. Javier Prado Este 492, Ub. Jardin Lima 24, Per\",\"city\":\"Lima\",\"state\":\"Lima\",\"country\":\"Peru\",\"postal_code\":\"051\",\"nit\":\"341\",\"primary_external_code\":\"341\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"456\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"MMGC SRL\",\"trade_name\":\"MMGC SRL\",\"displayName\":\"403 - MMGC SRL\",\"email\":\"vania.montero@mmgc.com.ar\",\"phone\":\"54112100000000000\",\"address\":\"Tucum\\u00e1n 1946 piso 7 oficina 701 Buenos Aires\",\"city\":\"Buenos Aires\",\"state\":\"Buenos Aires\",\"country\":\"Argentina\",\"postal_code\":\"0\",\"nit\":\"30711878579\",\"primary_external_code\":\"403\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":23,\"username\":\"fsanchez@emba.com\",\"email\":\"fsanchez@emba.com\",\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"shortName\":\"fsanchez\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"483\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"OXYMAT\",\"trade_name\":\"OXYMAT\",\"displayName\":\"509 - OXYMAT\",\"email\":\"ahe@oxymat.com\",\"phone\":\"+45 2475 8168\",\"address\":\"Fasanvej 18-20, 3200 Helsinge, Denmark\",\"city\":\"Helsinge\",\"state\":\"Helsinge\",\"country\":\"Denmark\",\"postal_code\":\"2300\",\"nit\":\"509\",\"primary_external_code\":\"509\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":23,\"username\":\"fsanchez@emba.com\",\"email\":\"fsanchez@emba.com\",\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"shortName\":\"fsanchez\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"495\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Perfumeria Francesa (Bolivia) SRL\",\"trade_name\":\"Perfumeria Francesa (Bolivia) SRL\",\"displayName\":\"452 - Perfumeria Francesa (Bolivia) SRL\",\"email\":\"rclaure@emba.com.bo\",\"phone\":\"2791554\",\"address\":\"Av, Sanchez Bustamante 977 calle 16 Calacoto\",\"city\":\"La Paz\",\"state\":\"La PAz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"182180020\",\"primary_external_code\":\"452\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"516\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"PRODUCTOS DE CUIDADO PERSONAL Y DE LA SALUD DE BOLIVIA S.R.L.\",\"trade_name\":\"PRODUCTOS DE CUIDADO PERSONAL Y DE LA SALUD DE BOLIVIA S.R.L.\",\"displayName\":\"451 - PRODUCTOS DE CUIDADO PERSONAL Y DE LA SALUD DE BOLIVIA S.R.L.\",\"email\":\"rclaure@emba.com.bo\",\"phone\":\"2791554\",\"address\":\"SANCHEZ BUSTAMANTE 977 CALACOTO\",\"city\":\"La PAz\",\"state\":\"La Paz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"185524029\",\"primary_external_code\":\"451\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"527\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"regulatory advisors S.A.S.\",\"trade_name\":\"regulatory advisors S.A.S.\",\"displayName\":\"361 - regulatory advisors S.A.S.\",\"email\":\"claragomez@regulatoryadvisors.com.co\",\"phone\":\"57310154876\",\"address\":\"Carrera 19 No. 118-96 Oficina 203\",\"city\":\"Bogota\",\"state\":\"Bogota\",\"country\":\"Colombia\",\"postal_code\":\"1011011\",\"nit\":\"9004091168\",\"primary_external_code\":\"361\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":23,\"username\":\"fsanchez@emba.com\",\"email\":\"fsanchez@emba.com\",\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"shortName\":\"fsanchez\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"764\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"NUTRICIA EXPORT B.V.\",\"trade_name\":\"NUTRICIA EXPORT B.V.\",\"displayName\":\"864 - NUTRICIA EXPORT B.V.\",\"email\":\"maria.ricardo@nortonrosefulbright.com\",\"phone\":\"31204629404\",\"address\":\"ALBERT EINSTEINLAAN 20 2719 EP ZOETEMEER\",\"city\":\"\",\"state\":\"\",\"country\":\"Pa\\u00edses Bajos\",\"postal_code\":\"\",\"nit\":\"864\",\"primary_external_code\":\"864\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":23,\"username\":\"fsanchez@emba.com\",\"email\":\"fsanchez@emba.com\",\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"shortName\":\"fsanchez\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"872\",\"code\":null,\"number\":null,\"color\":\"#40cdee\",\"name\":\"xcvfbf\",\"trade_name\":\"xcvfbf\",\"displayName\":\"974 - xcvfbf\",\"email\":null,\"phone\":\"0000000\",\"address\":\"sdfdsfsdfc\",\"city\":\"dsfdsf\",\"state\":\"szdsf\",\"country\":\"Andorra\",\"postal_code\":\"000000\",\"nit\":\"1020\",\"primary_external_code\":\"974\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":1,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"INSR\",\"enabled\":true,\"created_at\":\"2024-04-19 22:18:08\",\"updated_at\":\"2024-04-22 22:23:51\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":10,\"national\":1,\"enterpriseGroup\":1,\"responsiblePartner\":null},{\"id\":\"873\",\"code\":null,\"number\":null,\"color\":\"#00826D\",\"name\":\"Test Reg. Rapido\",\"trade_name\":\"Test Reg. Rapido\",\"displayName\":\"975 - Test Reg. Rapido\",\"email\":null,\"phone\":\"312354453\",\"address\":\"test 123\",\"city\":\"Morelia\",\"state\":\"Caquet\\u00e1\",\"country\":\"Colombia\",\"postal_code\":\"23456\",\"nit\":\"10010930028\",\"primary_external_code\":\"975\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":4,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"sdf\",\"enabled\":true,\"created_at\":\"2024-04-22 22:27:35\",\"updated_at\":\"2024-04-22 22:28:58\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":4,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"874\",\"code\":null,\"number\":null,\"color\":\"#00826D\",\"name\":\"asdasd\",\"trade_name\":\"asdasd\",\"displayName\":\"976 - asdasd\",\"email\":null,\"phone\":\"2323434\",\"address\":\"werwer\",\"city\":\"Corinto\",\"state\":\"Cauca\",\"country\":\"Colombia\",\"postal_code\":\"sd\",\"nit\":\"q2323\",\"primary_external_code\":\"976\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-04-22 22:32:25\",\"updated_at\":\"2025-01-10 19:38:54\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":null,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"875\",\"code\":null,\"number\":null,\"color\":\"#a66eae\",\"name\":\"PRUEBAS 2304\",\"trade_name\":\"PRUEBAS 2304\",\"displayName\":\"977 - PRUEBAS 2304\",\"email\":null,\"phone\":\"0000000\",\"address\":\"calle223\",\"city\":\"LA PAZ\",\"state\":\"LA PAZ\",\"country\":\"Bolivia\",\"postal_code\":\"000000\",\"nit\":\"10010101023\",\"primary_external_code\":\"977\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":0,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-04-23 14:52:14\",\"updated_at\":\"2024-04-23 16:15:46\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"876\",\"code\":null,\"number\":null,\"color\":\"#879409\",\"name\":\"TEST REGISTRO RAPIDO\",\"trade_name\":\"TEST REGISTRO RAPIDO\",\"displayName\":\"978 - TEST REGISTRO RAPIDO\",\"email\":null,\"phone\":\"0000000\",\"address\":\"CALLE123\",\"city\":\"Bogota\",\"state\":\"Bogot\\u00e1\",\"country\":\"Colombia\",\"postal_code\":\"000000\",\"nit\":\"10234522\",\"primary_external_code\":\"978\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":0,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-05-09 16:04:07\",\"updated_at\":\"2024-05-09 17:10:29\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"877\",\"code\":null,\"number\":null,\"color\":\"#823f27\",\"name\":\"test\",\"trade_name\":\"test\",\"displayName\":\"979 - test\",\"email\":null,\"phone\":\"0000000\",\"address\":\"324324\",\"city\":\"Bogota\",\"state\":\"Bogot\\u00e1\",\"country\":\"Colombia\",\"postal_code\":\"000000\",\"nit\":\"324325\",\"primary_external_code\":\"979\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":0,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-05-09 17:21:07\",\"updated_at\":\"2024-05-09 17:21:58\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"878\",\"code\":null,\"number\":null,\"color\":\"#357735\",\"name\":\"TEST REGISTRO\",\"trade_name\":\"TEST REGISTRO\",\"displayName\":\"980 - TEST REGISTRO\",\"email\":null,\"phone\":\"0000000\",\"address\":null,\"city\":\"Medellin\",\"state\":\"Antioquia\",\"country\":\"Colombia\",\"postal_code\":\"000000\",\"nit\":null,\"primary_external_code\":\"980\",\"status\":\"1\",\"statusMarking\":\"pending_completion\",\"billingLimitDate\":0,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-05-09 17:29:58\",\"updated_at\":\"2024-05-09 17:29:58\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"879\",\"code\":null,\"number\":null,\"color\":null,\"name\":\"cliente de prueba\",\"trade_name\":\"cliente de prueba\",\"displayName\":\"981 - cliente de prueba\",\"email\":null,\"phone\":\"9999\",\"address\":\"callw1232\",\"city\":\"Bogota\",\"state\":\"Bogot\\u00e1\",\"country\":\"Colombia\",\"postal_code\":\"9999\",\"nit\":\"1001023954\",\"primary_external_code\":\"981\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-05-09 21:28:55\",\"updated_at\":\"2024-05-09 21:28:55\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":null,\"national\":1,\"enterpriseGroup\":null,\"responsiblePartner\":null},{\"id\":\"880\",\"code\":null,\"number\":null,\"color\":\"#00826D\",\"name\":\"AM PCORREDOR\",\"trade_name\":\"AM PCORREDOR\",\"displayName\":\"982 - AM PCORREDOR\",\"email\":null,\"phone\":\"2332322\",\"address\":\"Kr 1\",\"city\":\"Sucre\",\"state\":\"Sucre\",\"country\":\"Bolivia\",\"postal_code\":null,\"nit\":\"1212121212\",\"primary_external_code\":\"982\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-05-10 15:30:25\",\"updated_at\":\"2024-05-10 15:30:25\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":null,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"881\",\"code\":null,\"number\":null,\"color\":\"#1d35fc\",\"name\":\"cyzone\",\"trade_name\":\"cyzone\",\"displayName\":\"983 - cyzone\",\"email\":null,\"phone\":\"0000000\",\"address\":\"Direcci\\u00f3n\",\"city\":\"LA PAZ\",\"state\":\"LA PAZ\",\"country\":\"Bolivia\",\"postal_code\":\"000000\",\"nit\":null,\"primary_external_code\":\"983\",\"status\":\"1\",\"statusMarking\":\"pending_completion\",\"billingLimitDate\":0,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-05-10 20:00:55\",\"updated_at\":\"2024-05-10 20:00:55\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"884\",\"code\":null,\"number\":null,\"color\":\"#c448d9\",\"name\":\"Cliente Openatlas.com\",\"trade_name\":\"Cliente Openatlas.com\",\"displayName\":\"986 - Cliente Openatlas.com\",\"email\":null,\"phone\":\"0000000\",\"address\":\"Cl 64 # 45-56\",\"city\":\"La Paz\",\"state\":\"La Paz\",\"country\":\"Bolivia\",\"postal_code\":\"000000\",\"nit\":null,\"primary_external_code\":\"986\",\"status\":\"1\",\"statusMarking\":\"pending_completion\",\"billingLimitDate\":0,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-05-17 21:13:24\",\"updated_at\":\"2024-05-17 21:13:24\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"886\",\"code\":null,\"number\":null,\"color\":\"#00826D\",\"name\":\"PRUEBA\",\"trade_name\":\"PRUEBA\",\"displayName\":\"988 - PRUEBA\",\"email\":null,\"phone\":\"343643\",\"address\":\"Calle 4 # 53 B 78\",\"city\":\"Bogota\",\"state\":\"Bogot\\u00e1\",\"country\":\"Colombia\",\"postal_code\":\"250010\",\"nit\":\"1032451489\",\"primary_external_code\":\"988\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-05-22 19:49:28\",\"updated_at\":\"2024-05-22 19:49:28\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":null,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"888\",\"code\":null,\"number\":null,\"color\":\"#00826D\",\"name\":\"CONGLOMERADO SERGIO\",\"trade_name\":\"CONGLOMERADO SERGIO\",\"displayName\":\"990 - CONGLOMERADO SERGIO\",\"email\":null,\"phone\":\"5457544\",\"address\":\"Calle 4 # 53 B 78\",\"city\":\"Bogota\",\"state\":\"Bogot\\u00e1\",\"country\":\"Colombia\",\"postal_code\":\"250010\",\"nit\":\"363464\",\"primary_external_code\":\"990\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-05-27 15:17:33\",\"updated_at\":\"2024-05-27 15:17:33\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":null,\"national\":1,\"enterpriseGroup\":1,\"responsiblePartner\":null},{\"id\":\"889\",\"code\":null,\"number\":null,\"color\":\"#00826D\",\"name\":\"EMPRESA SIMPLE\",\"trade_name\":\"EMPRESA SIMPLE\",\"displayName\":\"991 - EMPRESA SIMPLE\",\"email\":null,\"phone\":\"547754\",\"address\":\"Calle 4 # 53 B 78\",\"city\":\"Bogot\\u00e1\",\"state\":\"Cundinamarca\",\"country\":\"United Arab Emir.\",\"postal_code\":\"250010\",\"nit\":\"34646\",\"primary_external_code\":\"991\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-05-27 15:18:09\",\"updated_at\":\"2024-05-27 15:18:09\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":null,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"890\",\"code\":null,\"number\":null,\"color\":\"#00826D\",\"name\":\"CLIENTE NUEVO\",\"trade_name\":\"CLIENTE NUEVO\",\"displayName\":\"992 - CLIENTE NUEVO\",\"email\":null,\"phone\":\"574575\",\"address\":\"Calle 4 # 53 B 78\",\"city\":\"Bogota\",\"state\":\"Bogot\\u00e1\",\"country\":\"Colombia\",\"postal_code\":\"250010\",\"nit\":\"43464364\",\"primary_external_code\":\"992\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-05-29 21:43:20\",\"updated_at\":\"2024-05-29 21:43:20\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":null,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"891\",\"code\":null,\"number\":null,\"color\":\"#d2ee3d\",\"name\":\"cliente\",\"trade_name\":\"cliente\",\"displayName\":\"993 - cliente\",\"email\":null,\"phone\":\"213234\",\"address\":\"dsfddsf\",\"city\":\"szxdsf\",\"state\":\"sdfdsfsdfc\",\"country\":\"Andorra\",\"postal_code\":\"000000\",\"nit\":null,\"primary_external_code\":\"993\",\"status\":\"1\",\"statusMarking\":\"pending_completion\",\"billingLimitDate\":0,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-06-07 21:39:26\",\"updated_at\":\"2024-06-07 21:39:26\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"892\",\"code\":null,\"number\":null,\"color\":\"#b9809a\",\"name\":\"clientes dos\",\"trade_name\":\"clientes dos\",\"displayName\":\"994 - clientes dos\",\"email\":null,\"phone\":\"dsfdsf\",\"address\":\"szdsf\",\"city\":\"Medellin\",\"state\":\"Antioquia\",\"country\":\"Colombia\",\"postal_code\":\"000000\",\"nit\":null,\"primary_external_code\":\"994\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":0,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-06-07 21:41:08\",\"updated_at\":\"2024-06-07 21:42:24\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":6,\"username\":\"darredondo@emba.com.bo\",\"email\":\"nicoln042001@gmail.com\",\"fullName\":\"Daniel Marcelo Arredondo Zelada\",\"shortName\":\"darredon\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-03 11:43:07\",\"daysAllow\":302}},{\"id\":\"893\",\"code\":null,\"number\":null,\"color\":\"#00826D\",\"name\":\"tst\",\"trade_name\":\"tst\",\"displayName\":\"995 - tst\",\"email\":null,\"phone\":\"321434\",\"address\":\"calle1234\",\"city\":\"Baranoa\",\"state\":\"Atl\\u00e1ntico\",\"country\":\"Colombia\",\"postal_code\":null,\"nit\":\"21323123\",\"primary_external_code\":\"995\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-06-18 17:06:36\",\"updated_at\":\"2024-06-18 17:06:36\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":null,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"894\",\"code\":null,\"number\":null,\"color\":\"#00826D\",\"name\":\"Prueba distribucion\",\"trade_name\":\"Prueba distribucion\",\"displayName\":\"996 - Prueba distribucion\",\"email\":null,\"phone\":\"22343\",\"address\":\"calle123\",\"city\":\"Bogota\",\"state\":\"Bogot\\u00e1\",\"country\":\"Colombia\",\"postal_code\":null,\"nit\":\"1223402\",\"primary_external_code\":\"996\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":10,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-06-20 22:36:06\",\"updated_at\":\"2024-06-20 22:36:14\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":10,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"895\",\"code\":null,\"number\":null,\"color\":\"#00826D\",\"name\":\"pruebas de roles\",\"trade_name\":\"pruebas de roles\",\"displayName\":\"997 - pruebas de roles\",\"email\":null,\"phone\":\"233535\",\"address\":\"calleq124\",\"city\":\"El Copey\",\"state\":\"Cesar\",\"country\":\"Colombia\",\"postal_code\":null,\"nit\":\"1234235\",\"primary_external_code\":\"997\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":1,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-06-21 01:55:02\",\"updated_at\":\"2024-06-21 01:55:18\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":1,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"896\",\"code\":null,\"number\":null,\"color\":\"#00826D\",\"name\":\"TEST ROLES Y VALORES\",\"trade_name\":\"TEST ROLES Y VALORES\",\"displayName\":\"998 - TEST ROLES Y VALORES\",\"email\":null,\"phone\":\"2423\",\"address\":\"CALLE124\",\"city\":\"Barranquilla\",\"state\":\"Atl\\u00e1ntico\",\"country\":\"Colombia\",\"postal_code\":null,\"nit\":\"11232\",\"primary_external_code\":\"998\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":1,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-06-21 14:13:27\",\"updated_at\":\"2024-06-21 14:16:27\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":1,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"897\",\"code\":null,\"number\":null,\"color\":\"#00826D\",\"name\":\"prueba porcentaje\",\"trade_name\":\"prueba porcentaje\",\"displayName\":\"999 - prueba porcentaje\",\"email\":null,\"phone\":\"234342345\",\"address\":\"calle124\",\"city\":\"Bogota\",\"state\":\"Bogot\\u00e1\",\"country\":\"Colombia\",\"postal_code\":null,\"nit\":\"2435434\",\"primary_external_code\":\"999\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":2,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-06-21 14:27:20\",\"updated_at\":\"2024-06-21 14:42:09\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":2,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":79,\"username\":null,\"email\":null,\"fullName\":null,\"shortName\":null,\"locale\":null,\"userType\":null,\"superAdmin\":null,\"enabled\":null,\"created_at\":null,\"updated_at\":null,\"daysAllow\":null}},{\"id\":\"898\",\"code\":null,\"number\":null,\"color\":\"#00826D\",\"name\":\"PRUEBA BUG ROL\",\"trade_name\":\"PRUEBA BUG ROL\",\"displayName\":\"1000 - PRUEBA BUG ROL\",\"email\":null,\"phone\":\"Q2324234\",\"address\":\"CALLE 123\",\"city\":\"Bogota\",\"state\":\"Bogot\\u00e1\",\"country\":\"Colombia\",\"postal_code\":null,\"nit\":\"|123212\",\"primary_external_code\":\"1000\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":1,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-06-22 00:57:00\",\"updated_at\":\"2024-11-07 12:46:49\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":1,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":26,\"username\":null,\"email\":null,\"fullName\":null,\"shortName\":null,\"locale\":null,\"userType\":null,\"superAdmin\":null,\"enabled\":null,\"created_at\":null,\"updated_at\":null,\"daysAllow\":null}},{\"id\":\"900\",\"code\":null,\"number\":null,\"color\":\"#00826D\",\"name\":\"prueba roles y usuarios\",\"trade_name\":\"prueba roles y usuarios\",\"displayName\":\"1002 - prueba roles y usuarios\",\"email\":null,\"phone\":\"6545\",\"address\":\"calle123\",\"city\":\"Bogota\",\"state\":\"Bogot\\u00e1\",\"country\":\"Colombia\",\"postal_code\":null,\"nit\":\"100102032\",\"primary_external_code\":\"1002\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-07-18 11:55:34\",\"updated_at\":\"2024-11-06 10:11:02\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":null,\"national\":1,\"enterpriseGroup\":1,\"responsiblePartner\":{\"id\":17,\"username\":\"aaraoz@emba.com\",\"email\":\"aaraoz@emba.com\",\"fullName\":\"Alvaro Araoz Ardaya\",\"shortName\":\"aaraoz\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-12-04 15:29:19\",\"daysAllow\":302}},{\"id\":\"901\",\"code\":null,\"number\":null,\"color\":\"#00826D\",\"name\":\"prueba retenciones\",\"trade_name\":\"prueba retenciones\",\"displayName\":\"1003 - prueba retenciones\",\"email\":null,\"phone\":\"1223324\",\"address\":\"calle123\",\"city\":\"Bogota\",\"state\":\"Bogot\\u00e1\",\"country\":\"Colombia\",\"postal_code\":null,\"nit\":\"7655643\",\"primary_external_code\":\"1003\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-07-26 17:45:34\",\"updated_at\":\"2024-07-26 17:45:34\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":null,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"920\",\"code\":null,\"number\":null,\"color\":\"#00826D\",\"name\":\"PRUEBAFILTRO SIN ASUNTOS\",\"trade_name\":\"PRUEBAFILTRO SIN ASUNTOS\",\"displayName\":\"1022 - PRUEBAFILTRO SIN ASUNTOS\",\"email\":null,\"phone\":\"23214\",\"address\":\"CALLE123\",\"city\":\"Chiriguana\",\"state\":\"Cesar\",\"country\":\"Colombia\",\"postal_code\":null,\"nit\":\"100229201\",\"primary_external_code\":\"1022\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-09-13 08:46:24\",\"updated_at\":\"2024-09-13 08:46:24\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":null,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"921\",\"code\":null,\"number\":null,\"color\":\"#00826D\",\"name\":\"orueba de nuevos formularios\",\"trade_name\":\"orueba de nuevos formularios\",\"displayName\":\"1023 - orueba de nuevos formularios\",\"email\":null,\"phone\":\"32423434\",\"address\":\"121334calle\",\"city\":\"araba\",\"state\":\"arab\",\"country\":\"United Arab Emir.\",\"postal_code\":null,\"nit\":\"11213354\",\"primary_external_code\":\"1023\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-10-31 10:49:59\",\"updated_at\":\"2024-10-31 10:49:59\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":null,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"923\",\"code\":null,\"number\":null,\"color\":\"#41d169\",\"name\":\"NAVIDAD\",\"trade_name\":\"NAVIDAD\",\"displayName\":\"1025 - NAVIDAD\",\"email\":null,\"phone\":\"00002222\",\"address\":\"Direcci\\u00f3n\",\"city\":\"Estado\",\"state\":\"Estado\",\"country\":\"Bolivia\",\"postal_code\":\"000000\",\"nit\":null,\"primary_external_code\":\"1025\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":0,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-12-13 10:47:17\",\"updated_at\":\"2024-12-13 10:51:28\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":77,\"username\":\"pcorredor26@gmail.com\",\"email\":\"pcorredor26@gmail.com\",\"fullName\":\"AMTM Pruebas\",\"shortName\":\"AM\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":true,\"enabled\":true,\"created_at\":\"2021-05-11 23:40:08\",\"updated_at\":\"2025-07-21 10:12:54\",\"daysAllow\":302}},{\"id\":\"924\",\"code\":null,\"number\":null,\"color\":\"#eb4815\",\"name\":\"BILBAO\",\"trade_name\":\"BILBAO\",\"displayName\":\"1026 - BILBAO\",\"email\":null,\"phone\":\"000033333\",\"address\":\"Direcci\\u00f3n\",\"city\":\"Estado\",\"state\":\"Estado\",\"country\":\"Bolivia\",\"postal_code\":\"000000\",\"nit\":null,\"primary_external_code\":\"1026\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":0,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-12-13 11:23:07\",\"updated_at\":\"2024-12-13 11:27:25\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":77,\"username\":\"pcorredor26@gmail.com\",\"email\":\"pcorredor26@gmail.com\",\"fullName\":\"AMTM Pruebas\",\"shortName\":\"AM\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":true,\"enabled\":true,\"created_at\":\"2021-05-11 23:40:08\",\"updated_at\":\"2025-07-21 10:12:54\",\"daysAllow\":302}},{\"id\":\"925\",\"code\":null,\"number\":null,\"color\":\"#e23397\",\"name\":\"Capacitaci\\u00f3n\",\"trade_name\":\"Capacitaci\\u00f3n\",\"displayName\":\"1027 - Capacitaci\\u00f3n\",\"email\":null,\"phone\":\"222333\",\"address\":\"Calle 23 # 22\",\"city\":\"La Paz\",\"state\":\"La Paz\",\"country\":\"Bolivia\",\"postal_code\":\"000000\",\"nit\":null,\"primary_external_code\":\"1027\",\"status\":\"1\",\"statusMarking\":\"pending_completion\",\"billingLimitDate\":0,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2025-01-09 09:27:04\",\"updated_at\":\"2025-01-09 09:27:04\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":77,\"username\":\"pcorredor26@gmail.com\",\"email\":\"pcorredor26@gmail.com\",\"fullName\":\"AMTM Pruebas\",\"shortName\":\"AM\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":true,\"enabled\":true,\"created_at\":\"2021-05-11 23:40:08\",\"updated_at\":\"2025-07-21 10:12:54\",\"daysAllow\":302}},{\"id\":\"928\",\"code\":null,\"number\":null,\"color\":\"#775b5c\",\"name\":\"DUNKIN\",\"trade_name\":\"DUNKIN\",\"displayName\":\"1030 - DUNKIN\",\"email\":null,\"phone\":\"3447188\",\"address\":\"Condominio Santos Dumont A - 205,\\u00a0Santa Cruz, Boli\",\"city\":\"La Paz\",\"state\":\"La Paz\",\"country\":\"Bolivia\",\"postal_code\":\"000000\",\"nit\":null,\"primary_external_code\":\"1030\",\"status\":\"1\",\"statusMarking\":\"pending_completion\",\"billingLimitDate\":0,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2025-04-04 17:11:25\",\"updated_at\":\"2025-04-04 17:13:28\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":77,\"username\":\"pcorredor26@gmail.com\",\"email\":\"pcorredor26@gmail.com\",\"fullName\":\"AMTM Pruebas\",\"shortName\":\"AM\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":true,\"enabled\":true,\"created_at\":\"2021-05-11 23:40:08\",\"updated_at\":\"2025-07-21 10:12:54\",\"daysAllow\":302}},{\"id\":\"1\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"360 consulting group\",\"trade_name\":\"360 consulting group\",\"displayName\":\"240 - 360 consulting group\",\"email\":\"audit_nestor@outlook.com\",\"phone\":\"2912757\",\"address\":\"C\\/ Alberto Ostria. N\\u00ba 1555 edif S\\/N, piso 3. Zona\",\"city\":\"BOLIVIA\",\"state\":\"BOLIVIA\",\"country\":\"Bolivia\",\"postal_code\":\"12345\",\"nit\":\"352164024\",\"primary_external_code\":\"240\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:18\",\"updated_at\":\"2024-09-04 15:01:58\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"3\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"ACADEMIA NACIONAL DE CIENCIAS JURIDICAS DE BOLIVIA\",\"trade_name\":\"ACADEMIA NACIONAL DE CIENCIAS JURIDICAS DE BOLIVIA\",\"displayName\":\"164 - ACADEMIA NACIONAL DE CIENCIAS JURIDICAS DE BOLIVIA\",\"email\":\"academia@aciencias.org.bo\",\"phone\":\"2379681\",\"address\":\"AV. 16 DE JULIO EL PRADO NRO 1732\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1006509022\",\"primary_external_code\":\"164\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:18\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"4\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"ACCENTURE S.A.\",\"trade_name\":\"ACCENTURE S.A.\",\"displayName\":\"910 - ACCENTURE S.A.\",\"email\":\"juan.jose.algieri@accenture.com\",\"phone\":\"3353518\",\"address\":\"Av. San Mart\\u00edn 554, Zona Norte, Santa Cruz de la S\",\"city\":\"Santa Cruz\",\"state\":\"Santa Cruz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"1026439022\",\"primary_external_code\":\"910\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:18\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"5\",\"code\":\"\",\"number\":null,\"color\":\"#D38B51\",\"name\":\"Aceros Galvanizados S.R.L. Acergal\",\"trade_name\":\"Aceros Galvanizados S.R.L. Acergal\",\"displayName\":\"556 - Aceros Galvanizados S.R.L. Acergal\",\"email\":\"dmurillo@acergal.com\",\"phone\":\"76750725\",\"address\":\"Av. Ballivi\\u00e1n esquina Calle 11 de Calacoto\",\"city\":\"La Paz\",\"state\":\"La PAz\",\"country\":\"Bolivia\",\"postal_code\":\"000\",\"nit\":\"128711021\",\"primary_external_code\":\"556\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":0,\"recepctionLimitDate\":0,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:18\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"6\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"ACI Systems Alemania GmbH Sucursal Bolivia\",\"trade_name\":\"ACI Systems Alemania GmbH Sucursal Bolivia\",\"displayName\":\"306 - ACI Systems Alemania GmbH Sucursal Bolivia\",\"email\":\"jose.taborga@kaiserbo.com\",\"phone\":\"3224848\",\"address\":\"Av. Las Ramblas, Centro Empresarial Equipetrol Tor\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"373868027\",\"primary_external_code\":\"306\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:18\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":16,\"username\":\"rburgos@emba.com\",\"email\":\"rburgos@emba.com\",\"fullName\":\"Edwin Rodrigo Burgos Fernandez\",\"shortName\":\"rburgos\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"9\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"ADMINISTRACI\\u00d3N \\u0026 ESTRUCTURAS PHOENIXTORRES II S.A.\",\"trade_name\":\"ADMINISTRACI\\u00d3N \\u0026 ESTRUCTURAS PHOENIXTORRES II S.A.\",\"displayName\":\"893 - ADMINISTRACI\\u00d3N \\u0026 ESTRUCTURAS PHOENIXTORRES II S.A.\",\"email\":\"oolmos@phoenixintnl.com\",\"phone\":\"72688198\",\"address\":\"SANTA CRUZ\",\"city\":\"La paz\",\"state\":\"La paz\",\"country\":\"Bolivia\",\"postal_code\":\"55475\",\"nit\":\"376007028\",\"primary_external_code\":\"893\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:18\",\"updated_at\":\"2024-05-28 22:08:44\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"10\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Administradora de Camaras de Compensacion y Liquidacion S.A.\",\"trade_name\":\"Administradora de Camaras de Compensacion y Liquidacion S.A.\",\"displayName\":\"402 - Administradora de Camaras de Compensacion y Liquidacion S.A.\",\"email\":\"info@accl.bo\",\"phone\":\"77205580\",\"address\":\"Av. Mariscal de Santa Cruz 1392\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"121597027\",\"primary_external_code\":\"402\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:18\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"11\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"AESA RATINGS S.A.\",\"trade_name\":\"AESA RATINGS S.A.\",\"displayName\":\"372 - AESA RATINGS S.A.\",\"email\":\"irma.aduviri@aesa-ratings.bo\",\"phone\":\"2774470\",\"address\":\"CALLE 15 CALACOTO N\\u00b0 8054 EDIFICIO PLAZA PISO 15 O\",\"city\":\"La Paz\",\"state\":\"Bolivia\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"188120027\",\"primary_external_code\":\"372\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":30,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:18\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":14.94,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":16,\"username\":\"rburgos@emba.com\",\"email\":\"rburgos@emba.com\",\"fullName\":\"Edwin Rodrigo Burgos Fernandez\",\"shortName\":\"rburgos\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"12\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"AFFIFE CHAMAS DE SPRINGER\",\"trade_name\":\"AFFIFE CHAMAS DE SPRINGER\",\"displayName\":\"68 - AFFIFE CHAMAS DE SPRINGER\",\"email\":\"\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"68\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:18\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"13\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"AGCO America do Sul\",\"trade_name\":\"AGCO America do Sul\",\"displayName\":\"351 - AGCO America do Sul\",\"email\":\"ludmila.costa@agcocorp.com\",\"phone\":\"+55 (51) 3462.8408\",\"address\":\"Av. Guilherme Schell, 10260 92420-000 Canoas, RS\",\"city\":\"\",\"state\":\"\",\"country\":\"Brasil\",\"postal_code\":\"\",\"nit\":\"351\",\"primary_external_code\":\"351\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:18\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"14\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"AGEconsultores SRL\",\"trade_name\":\"AGEconsultores SRL\",\"displayName\":\"593 - AGEconsultores SRL\",\"email\":\"raul2502_a_p25@hotmail.com\",\"phone\":\"76497229\",\"address\":\"calle Hamiraya No. 0651 entre calle La Paz y calle\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"487507020\",\"primary_external_code\":\"593\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:18\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":17,\"username\":\"aaraoz@emba.com\",\"email\":\"aaraoz@emba.com\",\"fullName\":\"Alvaro Araoz Ardaya\",\"shortName\":\"aaraoz\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-12-04 15:29:19\",\"daysAllow\":302}},{\"id\":\"15\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"AGENCIA EFE S.A.U., S.M.E. SUCURSAL BOLIVIA\",\"trade_name\":\"AGENCIA EFE S.A.U., S.M.E. SUCURSAL BOLIVIA\",\"displayName\":\"615 - AGENCIA EFE S.A.U., S.M.E. SUCURSAL BOLIVIA\",\"email\":\"cquevedo@efe.com\",\"phone\":\"72504832\",\"address\":\"Avenida: AV. 6 DE AGOSTO, Nro. 2455, Edif.: HILDA\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1006575026\",\"primary_external_code\":\"615\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:18\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":15,\"username\":\"nezegarra@emba.com\",\"email\":\"nezegarra@emba.com\",\"fullName\":\"Natalio Eduardo Zegarra Ribera\",\"shortName\":\"nzegarra\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"16\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"AGIMEX SRL\",\"trade_name\":\"AGIMEX SRL\",\"displayName\":\"434 - AGIMEX SRL\",\"email\":\"mestrada@agimex.com.bo\",\"phone\":\"77401011\",\"address\":\"Av. Am\\u00e9rica No.427 Cochabamba\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1022573027\",\"primary_external_code\":\"434\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:18\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":17,\"username\":\"aaraoz@emba.com\",\"email\":\"aaraoz@emba.com\",\"fullName\":\"Alvaro Araoz Ardaya\",\"shortName\":\"aaraoz\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-12-04 15:29:19\",\"daysAllow\":302}},{\"id\":\"17\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"AGRICOLA CAFETALERA BUENA VISTA S.A. AGRICABV S.A.\",\"trade_name\":\"AGRICOLA CAFETALERA BUENA VISTA S.A. AGRICABV S.A.\",\"displayName\":\"140 - AGRICOLA CAFETALERA BUENA VISTA S.A. AGRICABV S.A.\",\"email\":\"pedrorodriguez@agritrade.com.bo\",\"phone\":\"591-3-9233258\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"120995021\",\"primary_external_code\":\"140\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:18\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"18\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"AGRO JAL S.R.L.\",\"trade_name\":\"AGRO JAL S.R.L.\",\"displayName\":\"290 - AGRO JAL S.R.L.\",\"email\":\"jllandivarb@gmail.com\",\"phone\":\"3450172-3437127\",\"address\":\"Calle La Riva entre Calles Ren\\u00e9 Moreno e Independe\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"290\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:18\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"19\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"AGROCERES MULTIMIX NUTRICAO ANIMAL LTDA.\",\"trade_name\":\"AGROCERES MULTIMIX NUTRICAO ANIMAL LTDA.\",\"displayName\":\"681 - AGROCERES MULTIMIX NUTRICAO ANIMAL LTDA.\",\"email\":\"ieda@agroceres.com\",\"phone\":\"55 19 3526-8670\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"681\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:18\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"20\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Agroceres Multimix Nutri\\u00e7ao Animal ltda.\",\"trade_name\":\"Agroceres Multimix Nutri\\u00e7ao Animal ltda.\",\"displayName\":\"230 - Agroceres Multimix Nutri\\u00e7ao Animal ltda.\",\"email\":\"guilherme.schrank@agroceres.com\",\"phone\":\"55 19 3526-8658\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Brasil\",\"postal_code\":\"\",\"nit\":\"230\",\"primary_external_code\":\"230\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:18\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"21\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"AGROGRAIN LIMITED SUCURSAL URUGUAY\",\"trade_name\":\"AGROGRAIN LIMITED SUCURSAL URUGUAY\",\"displayName\":\"239 - AGROGRAIN LIMITED SUCURSAL URUGUAY\",\"email\":\"Virginia.Antelo@adm.com\",\"phone\":\"598 99594322\",\"address\":\"Ruta 8 KM 17.500 Edif 3 Of. 114 Zonamerica\",\"city\":\"Montevideo\",\"state\":\"Montevideo\",\"country\":\"Uruguay\",\"postal_code\":\"0\",\"nit\":\"239\",\"primary_external_code\":\"239\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:18\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"22\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"AGRONEGOCIOS LASCOT S.R.L.\",\"trade_name\":\"AGRONEGOCIOS LASCOT S.R.L.\",\"displayName\":\"250 - AGRONEGOCIOS LASCOT S.R.L.\",\"email\":\"jllandivarb@gmail.com\",\"phone\":\"76001776\",\"address\":\"Calle Monse\\u00f1or Salvatierra No. 141 entre Calle Ind\",\"city\":\"Santa Cruz\",\"state\":\"Santa Cruz\",\"country\":\"Bolivia\",\"postal_code\":\"01111\",\"nit\":\"351734024\",\"primary_external_code\":\"250\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:18\",\"updated_at\":\"2024-06-22 03:42:50\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"23\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"AGROPARTNERS S.R.L.\",\"trade_name\":\"AGROPARTNERS S.R.L.\",\"displayName\":\"70 - AGROPARTNERS S.R.L.\",\"email\":\"jroca@agropartners.com.bo\",\"phone\":\"33490100\",\"address\":\"AV.MUTUALISTA Y PARAGUA CUARTO ANILLO LADO DE NIBO\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1013879029\",\"primary_external_code\":\"70\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:18\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"24\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Agropecuaria Acres del Sud S.A.\",\"trade_name\":\"Agropecuaria Acres del Sud S.A.\",\"displayName\":\"625 - Agropecuaria Acres del Sud S.A.\",\"email\":\"gvargas@acresdelsud.com.bo\",\"phone\":\"33419900\",\"address\":\"Agropecuaria Acres del Sud S.A.\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"157224020\",\"primary_external_code\":\"625\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:18\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"25\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"AGROREAL S.R.L.\",\"trade_name\":\"AGROREAL S.R.L.\",\"displayName\":\"193 - AGROREAL S.R.L.\",\"email\":\"agrorealgerencia@cotas.com.bo\",\"phone\":\"3454371\",\"address\":\"Barrio Equipetrol Avenida La Salle Canal Isuto Ent\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"188182022\",\"primary_external_code\":\"193\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:18\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"26\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Albagli Zaliasnik\",\"trade_name\":\"Albagli Zaliasnik\",\"displayName\":\"731 - Albagli Zaliasnik\",\"email\":\"\",\"phone\":\"77787910\",\"address\":\"Rue du Rhone 8, 1204\",\"city\":\"Santa Cruz de la Sierra\",\"state\":\"Santa Cruz\",\"country\":\"Bolivia\",\"postal_code\":null,\"nit\":\"99001\",\"primary_external_code\":\"731\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:18\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"27\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"ALBERTO RIVERA REARTE\",\"trade_name\":\"ALBERTO RIVERA REARTE\",\"displayName\":\"71 - ALBERTO RIVERA REARTE\",\"email\":\"\",\"phone\":\"77336957\",\"address\":\"Rue du Rhone 8, 1204\",\"city\":\"Santa Cruz de la Sierra\",\"state\":\"Santa Cruz\",\"country\":\"Bolivia\",\"postal_code\":null,\"nit\":\"99001\",\"primary_external_code\":\"71\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:18\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"28\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Alberto Vladimir Pacheco Mendoza\",\"trade_name\":\"Alberto Vladimir Pacheco Mendoza\",\"displayName\":\"601 - Alberto Vladimir Pacheco Mendoza\",\"email\":\"alpach100959@gmail.com\",\"phone\":\"77298296\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"189371016\",\"primary_external_code\":\"601\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:18\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"29\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"ALDEAS INFANTILES SOS INTERNACIONAL\",\"trade_name\":\"ALDEAS INFANTILES SOS INTERNACIONAL\",\"displayName\":\"368 - ALDEAS INFANTILES SOS INTERNACIONAL\",\"email\":\"Grace.Romero@sos-kd.org\",\"phone\":\"7657792-70659453\",\"address\":\"Achumani, Calle E esquina F, # 25 Sector Asilo San\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"368\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:18\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":15,\"username\":\"nezegarra@emba.com\",\"email\":\"nezegarra@emba.com\",\"fullName\":\"Natalio Eduardo Zegarra Ribera\",\"shortName\":\"nzegarra\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"30\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"ALDO VERGARA\",\"trade_name\":\"ALDO VERGARA\",\"displayName\":\"686 - ALDO VERGARA\",\"email\":\"avergara@convermaq.cl\",\"phone\":\"77787910\",\"address\":\"Rue du Rhone 8\",\"city\":\"Santa Cruz de la Sierra\",\"state\":\"Santa Cruz\",\"country\":\"Bolivia\",\"postal_code\":null,\"nit\":\"99001\",\"primary_external_code\":\"686\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:18\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"31\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"ALEJANDRO BETANCOURT\",\"trade_name\":\"ALEJANDRO BETANCOURT\",\"displayName\":\"279 - ALEJANDRO BETANCOURT\",\"email\":\"abetancourt@dispack.com.bo\",\"phone\":\"69053734\",\"address\":\"Parque Industrial, Manzana 14 Bloque B, al lado de\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"279\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:18\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"32\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Alfredo Fernandez Delfin\",\"trade_name\":\"Alfredo Fernandez Delfin\",\"displayName\":\"354 - Alfredo Fernandez Delfin\",\"email\":\"afernandezdelfin@yahoo.es\",\"phone\":\"71564522\",\"address\":\"La Paz\",\"city\":\"La Paz\",\"state\":\"La Paz\",\"country\":\"Bolivia\",\"postal_code\":null,\"nit\":\"99001\",\"primary_external_code\":\"354\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:18\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"33\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"AliemGlobal\",\"trade_name\":\"AliemGlobal\",\"displayName\":\"417 - AliemGlobal\",\"email\":\"enrique.moya@globaliem.com\",\"phone\":\"61533964\",\"address\":\"Cochabamba no.715\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"403424028\",\"primary_external_code\":\"417\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:18\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":13,\"username\":\"cdelgado@emba.com\",\"email\":\"cdelgado@emba.com\",\"fullName\":\"Cristhian Delgado Ramirez\",\"shortName\":\"cdelgado\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"34\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"ALIMENTO SOCIEDAD ANOMINA ALSA\",\"trade_name\":\"ALIMENTO SOCIEDAD ANOMINA ALSA\",\"displayName\":\"242 - ALIMENTO SOCIEDAD ANOMINA ALSA\",\"email\":\"earce@alsa-clarabella.com\",\"phone\":\"3477771\",\"address\":\"Parque Industrial M-20B Santa Cruz\",\"city\":\"Santa Cruz\",\"state\":\"Santa Cruz\",\"country\":\"Bolivia\",\"postal_code\":null,\"nit\":\"1027853022\",\"primary_external_code\":\"242\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:18\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"35\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"ALTIFIBERS S.A.\",\"trade_name\":\"ALTIFIBERS S.A.\",\"displayName\":\"373 - ALTIFIBERS S.A.\",\"email\":\"contabilidad@altifibers.com\",\"phone\":\"2441129\",\"address\":\"EL ALTO AV ILBO NRO 64 ZONA PUCARANI INDUSTRIAL\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1006901027\",\"primary_external_code\":\"373\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:18\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":16,\"username\":\"rburgos@emba.com\",\"email\":\"rburgos@emba.com\",\"fullName\":\"Edwin Rodrigo Burgos Fernandez\",\"shortName\":\"rburgos\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"36\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"ALTRAN\",\"trade_name\":\"ALTRAN\",\"displayName\":\"275 - ALTRAN\",\"email\":\"alberto.recoder@altran.com\",\"phone\":\"+34 93 272 3220 - ex\",\"address\":\"Barcelona, calle Llacuna N\\u00ba 56-70, Edificio A\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"B-80428972\",\"primary_external_code\":\"275\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:18\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"37\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Alvarez \\u0026 Marsal Holdings, LLC\",\"trade_name\":\"Alvarez \\u0026 Marsal Holdings, LLC\",\"displayName\":\"803 - Alvarez \\u0026 Marsal Holdings, LLC\",\"email\":\"omorgenstern@alvarezandmarsal.com\",\"phone\":\"2127639799\",\"address\":\"600 Madison Avenue \\u2013 8th Floor New York, NY 10022\",\"city\":\"\",\"state\":\"\",\"country\":\"Estados Unidos\",\"postal_code\":\"\",\"nit\":\"803\",\"primary_external_code\":\"803\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:18\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":6,\"username\":\"darredondo@emba.com.bo\",\"email\":\"nicoln042001@gmail.com\",\"fullName\":\"Daniel Marcelo Arredondo Zelada\",\"shortName\":\"darredon\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-03 11:43:07\",\"daysAllow\":302}},{\"id\":\"38\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"AMADEUS BOLIVIA SRL\",\"trade_name\":\"AMADEUS BOLIVIA SRL\",\"displayName\":\"138 - AMADEUS BOLIVIA SRL\",\"email\":\"diana.dibos@amadeus.com\",\"phone\":\"2434443\",\"address\":\"C. Pedro Salazar Esq. 6 de agosto N\\u00ba. 351 Ed. Illi\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"124113021\",\"primary_external_code\":\"138\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:18\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"39\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Amazon\",\"trade_name\":\"Amazon\",\"displayName\":\"225 - Amazon\",\"email\":\"maria.sowinska@hoganlovells.com\",\"phone\":\"+44 20 7296 2409\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Estados Unidos\",\"postal_code\":\"\",\"nit\":\"225\",\"primary_external_code\":\"225\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:18\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"40\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"AMERFACHADAS CONSTRUCCIONES\",\"trade_name\":\"AMERFACHADAS CONSTRUCCIONES\",\"displayName\":\"248 - AMERFACHADAS CONSTRUCCIONES\",\"email\":\"joseluismartin@despacho-de-abogados.com\",\"phone\":\"76012166\",\"address\":\"Av. de Espa\\u00f1a, N\\u00ba 11 4\\u00ba A 24400 Ponferrada (Le\\u00f3n)\",\"city\":\"\",\"state\":\"\",\"country\":\"Espa\\u00f1a\",\"postal_code\":\"\",\"nit\":\"248\",\"primary_external_code\":\"248\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:18\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"41\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Amparo Rivero\",\"trade_name\":\"Amparo Rivero\",\"displayName\":\"454 - Amparo Rivero\",\"email\":\"brasmac@cotas.com.bo\",\"phone\":\"77391187\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"454\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:18\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"42\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"ANDEAN BIO NATURALS S.A.C.\",\"trade_name\":\"ANDEAN BIO NATURALS S.A.C.\",\"displayName\":\"296 - ANDEAN BIO NATURALS S.A.C.\",\"email\":\"Curt.Schwarz@andennat.com\",\"phone\":\"+51 914-35-857\",\"address\":\"www.andenbio.com\",\"city\":\"\",\"state\":\"\",\"country\":\"Per\\u00fa\",\"postal_code\":\"\",\"nit\":\"296\",\"primary_external_code\":\"296\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:18\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"43\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"ANDEANTRADE S.A.\",\"trade_name\":\"ANDEANTRADE S.A.\",\"displayName\":\"690 - ANDEANTRADE S.A.\",\"email\":\"andeantrade@andeantrade.com\",\"phone\":\"2317355\",\"address\":\"Calle Federico Suazo 1885 Mezzanine of. 20 La Pa\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"327252027\",\"primary_external_code\":\"690\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:18\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"44\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"ANDESLINO S.R.L.\",\"trade_name\":\"ANDESLINO S.R.L.\",\"displayName\":\"558 - ANDESLINO S.R.L.\",\"email\":\"lmorenog@emba.com.bo\",\"phone\":\"78804989\",\"address\":\"Barrio Sirari Calle Los Claveles N\\u00ba 520\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"329532020\",\"primary_external_code\":\"558\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:18\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"45\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"ANDRES SOLBALVARRO\",\"trade_name\":\"ANDRES SOLBALVARRO\",\"displayName\":\"672 - ANDRES SOLBALVARRO\",\"email\":\"\",\"phone\":\"77787910\",\"address\":\"Rue du Rhone\",\"city\":\"La Paz\",\"state\":\"La Paz\",\"country\":\"Bolivia\",\"postal_code\":null,\"nit\":\"99001\",\"primary_external_code\":\"672\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:18\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"46\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Andres Urquidi Selich\",\"trade_name\":\"Andres Urquidi Selich\",\"displayName\":\"493 - Andres Urquidi Selich\",\"email\":\"jaus23@yahoo.com\",\"phone\":\"\",\"address\":\"La Paz\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"2458020\",\"primary_external_code\":\"493\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:18\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"47\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Anna Steiger\",\"trade_name\":\"Anna Steiger\",\"displayName\":\"608 - Anna Steiger\",\"email\":\"anna.steiger@eda.admin.ch\",\"phone\":\"41786249777\",\"address\":\"Calle 13, No. 455 Esq. Av. 14 de Septiembre, Obraj\",\"city\":\"\",\"state\":\"\",\"country\":\"Suiza\",\"postal_code\":\"\",\"nit\":\"608\",\"primary_external_code\":\"608\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:18\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"48\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"ANTENA UNO CANAL 6 S.R.L.\",\"trade_name\":\"ANTENA UNO CANAL 6 S.R.L.\",\"displayName\":\"146 - ANTENA UNO CANAL 6 S.R.L.\",\"email\":\"mauricio.guitierrez@redbolivision.tv.bo\",\"phone\":\"4250661\",\"address\":\"Serinbol Ltda. Parque Demetrio Canelas #1543,\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1020975023\",\"primary_external_code\":\"146\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:18\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"49\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Antonio Portugal\",\"trade_name\":\"Antonio Portugal\",\"displayName\":\"253 - Antonio Portugal\",\"email\":\"antonio.portugal@quan.bo\",\"phone\":\"76570109\",\"address\":\"Avenida 1 Nro.76 de la Zona de Auquisama\\u00f1a\",\"city\":\"Santa Cruz\",\"state\":\"Santa Cruz\",\"country\":\"Bolivia\",\"postal_code\":\"001111\",\"nit\":\"3431908\",\"primary_external_code\":\"253\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:18\",\"updated_at\":\"2024-06-22 02:53:33\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"50\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Antonio Torrico Clavijo\",\"trade_name\":\"Antonio Torrico Clavijo\",\"displayName\":\"396 - Antonio Torrico Clavijo\",\"email\":\"atorrico@atecconstructora.com\",\"phone\":\"4406259\",\"address\":\"Edificio Paseo Recoleta. Pasaje Boulevard No.777 B\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"5203562010\",\"primary_external_code\":\"396\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:18\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":17,\"username\":\"aaraoz@emba.com\",\"email\":\"aaraoz@emba.com\",\"fullName\":\"Alvaro Araoz Ardaya\",\"shortName\":\"aaraoz\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-12-04 15:29:19\",\"daysAllow\":302}},{\"id\":\"51\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Aon Argentina Corredores de Reaseguros S.A.\",\"trade_name\":\"Aon Argentina Corredores de Reaseguros S.A.\",\"displayName\":\"476 - Aon Argentina Corredores de Reaseguros S.A.\",\"email\":\"susana.garcia1@aon.com\",\"phone\":\"54114800000000000\",\"address\":\"Emma de la Barra 343, Dique 4, Puerto Madero, BA\",\"city\":\"\",\"state\":\"\",\"country\":\"Argentina\",\"postal_code\":\"\",\"nit\":\"476\",\"primary_external_code\":\"476\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:18\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"52\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"AON BENFIELDE ARGENTINA S.A.\",\"trade_name\":\"AON BENFIELDE ARGENTINA S.A.\",\"displayName\":\"665 - AON BENFIELDE ARGENTINA S.A.\",\"email\":\"atencionalcliente@aon.com\",\"phone\":\"(011) 5254 - 1600\",\"address\":\"E De La Barra 353 4 Palermo Hollywood - Ciudad de\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"665\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:18\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"53\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"AON BOLIVIA S.A. CORREDORES DE SEGUROS\",\"trade_name\":\"AON BOLIVIA S.A. CORREDORES DE SEGUROS\",\"displayName\":\"159 - AON BOLIVIA S.A. CORREDORES DE SEGUROS\",\"email\":\"diegoblanco@aon.com\",\"phone\":\"2790955\",\"address\":\"Calle 10 N\\u00ba 7812 Calacoto Edificio Emporium Piso 2\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1016477028\",\"primary_external_code\":\"159\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:18\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"55\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"AON SERVICE CORPORATION\",\"trade_name\":\"AON SERVICE CORPORATION\",\"displayName\":\"168 - AON SERVICE CORPORATION\",\"email\":\"marta.carreira-slabe@aon.com\",\"phone\":\"2790955\",\"address\":\"Calle 13 N S\\/n Edificio: Torre Lucia Piso: 3 Zona:\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"168\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:18\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"56\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"ARANIBAR\",\"trade_name\":\"ARANIBAR\",\"displayName\":\"163 - ARANIBAR\",\"email\":\"marco_aranibar@yahoo.com\",\"phone\":\"77787910\",\"address\":\"Rue du Rhone 8\",\"city\":\"La Paz\",\"state\":\"La Paz\",\"country\":\"Bolivia\",\"postal_code\":null,\"nit\":\"3388981010\",\"primary_external_code\":\"163\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:18\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"57\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"ARIAS INFRAESTRUCTURAS S.A. SUCURSAL BOLIVIA\",\"trade_name\":\"ARIAS INFRAESTRUCTURAS S.A. SUCURSAL BOLIVIA\",\"displayName\":\"72 - ARIAS INFRAESTRUCTURAS S.A. SUCURSAL BOLIVIA\",\"email\":\"jbrieba@ariasinfraestructuras.com\",\"phone\":\"72985451\",\"address\":\"Calle Madrid Esq. Ballivian N\\u00b0 690 Zona: El Molino\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"292332029\",\"primary_external_code\":\"72\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:18\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"58\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"ASESORAMIENTO EMPRESARIAL S.A. A.E.S.A.\",\"trade_name\":\"ASESORAMIENTO EMPRESARIAL S.A. A.E.S.A.\",\"displayName\":\"510 - ASESORAMIENTO EMPRESARIAL S.A. A.E.S.A.\",\"email\":\"irma.aduviri@aesa-ratings.bo\",\"phone\":\"2 2774470 int. 107\",\"address\":\"Edificio Plaza 15, Oficina 5-D Calle 15 Calacoto\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1003999028\",\"primary_external_code\":\"510\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:18\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":12,\"username\":\"tmercado@emba.com\",\"email\":\"tmercado@emba.com\",\"fullName\":\"Teddy Alberto Mercado Carrion\",\"shortName\":\"tmercado\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"59\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"ASOCIACI\\u00d3N CIVIL PISTA 8\",\"trade_name\":\"ASOCIACI\\u00d3N CIVIL PISTA 8\",\"displayName\":\"293 - ASOCIACI\\u00d3N CIVIL PISTA 8\",\"email\":\"viviana@pista8.com\",\"phone\":\"75304840\",\"address\":\"CALLE FLAMBOYANOS NRO 48 ZONA EQUIPETROL\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"293\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:18\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}}]}}}\n","time":"2025-07-30T10:49:05-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: POST https://apinewtm.com/graphql/\nHeaders: map[Accept:[application/json] Authorization:[Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJpYXQiOjE3NTM4ODY1MjIsImV4cCI6MTc1Mzk2NjUyMiwiaWQiOjEwNSwidXNlcm5hbWUiOiJpbnRlZ3JhY2lvbmVzQGVtYmEuYm8iLCJhcGlrZXkiOiI5Yzg0ZjYzZTRlMzk2ZGZmOWU5ZjU3NDI5OGRmZWUzOSIsImFwaWtleUNyZWF0ZWRBdCI6eyJkYXRlIjoiMjAyNS0wNy0xNyAxMDo0MToyNS4wMDAwMDAiLCJ0aW1lem9uZV90eXBlIjozLCJ0aW1lem9uZSI6IkFtZXJpY2EvQm9nb3RhIn0sImZ1bGxOYW1lIjoiSW50ZWdyYWNpw7NuIEVNQkEiLCJlbWFpbCI6ImludGVncmFjaW9uZXNAZW1iYS5ibyIsImxvY2FsZSI6ImVzIiwiZGF5c0FsbG93ZWQiOjMwLCJpc0Nvb3JkaW5hdG9yIjpmYWxzZSwidHlwZVRhc2tWaWV3IjoibGlzdHMiLCJkYXlzYWxsb3ciOjMwLCJyb2xlcyI6e30sInNob3J0X25hbWUiOiJJTi5FTUJBIiwicGVybWlzc2lvbnMiOlsic3luY19leHRlcm5hbF9idXNpbmVzcyIsInN5bmNfZXh0ZXJuYWxfY3VzdG9tZXIiLCJzeW5jX2V4dGVybmFsX21pbGVzdG9uZSIsImFic2VuY2VfYXBwcm92ZSIsImFic2VuY2VfY3JlYXRlX2FsbCIsImFic2VuY2VfY3JlYXRlX293biIsImFic2VuY2VfbWVudSIsImFjY291bnRpbmdfYnVzaW5lc3NfbGlzdCIsImFjY291bnRpbmdfY3VzdG9tZXJfbGlzdCIsImJpbGxpbmdfcGVyaW9kX2RlbGV0ZV9hbGwiLCJiaWxsaW5nX3BlcmlvZF9lZGl0X2FsbCIsImJpbGxpbmdfcGVyaW9kX2xpc3QiLCJiaWxsaW5nX3BlcmlvZF9yZWFjdGl2YXRlIiwiYm9hcmRfcmF0ZV91c2VyX2NyZWF0ZSIsImJvYXJkX3JhdGVfdXNlcl9lZGl0IiwiYnVzaW5lc3NfY3JlYXRlIiwiYnVzaW5lc3NfZGVzY3JpcHRpb25fc2F2ZSIsImJ1c2luZXNzX2VkaXQiLCJidXNpbmVzc19saXN0X2FsbCIsImJ1c2luZXNzX21lbnUiLCJidXNpbmVzc19yZXNwb25zaWJsZV9saXN0X2FsbCIsImJ1c2luZXNzX3NlZV9iaWxsaW5nX2luZm8iLCJidXNpbmVzc2VzX2FsbG93ZWRfdXNlcl9jcmVhdGUiLCJidXNpbmVzc2VzX2FsbG93ZWRfdXNlcl9kZWxldGUiLCJjb21wYW55X2Rpc2FibGUiLCJjb21wYW55X2VkaXQiLCJjb21wYW55X2xpc3QiLCJjb25jZXB0X2NyZWF0ZSIsImNvbmNlcHRfZWRpdCIsImNvbmNlcHRfbWVudSIsImNvbnRhY3RfY3JlYXRlIiwiY29udGFjdF9jcmVhdGVfZmFzdCIsImNvbnRhY3RfZWRpdCIsImNvbnRhY3RfbGlzdCIsImNvbnRhY3RfbWVudSIsImN1c3RvbWVyX2NyZWF0ZSIsImN1c3RvbWVyX2NyZWF0ZV9mYXN0IiwiY3VzdG9tZXJfZWRpdCIsImN1c3RvbWVyX2xpc3QiLCJjdXN0b21lcl9saXN0X2FsbCIsImN1c3RvbWVyX21lbnUiLCJleHBlbnNlX2NyZWF0ZV9hbGwiLCJleHBlbnNlX2RlbGV0ZV9hbGwiLCJleHBlbnNlX2R1cGxpY2F0ZSIsImV4cGVuc2VfZWRpdF9hbGwiLCJleHBlbnNlX2xpc3RfYWxsIiwiZXhwZW5zZV9tZW51IiwiZXhwZW5zZV9yZWplY3RfYWxsIiwiZmFiX3Nob3ciLCJmaWxlX21lbnUiLCJnZW9yZWZlcmVuY2VfY3JlYXRlIiwiZ2VvcmVmZXJlbmNlX2VkaXQiLCJnZW9yZWZlcmVuY2VfbWVudSIsImdvX3RvX2xlZ2FjeSIsImluZGljYXRvcnNfbWVudSIsImludm9pY2VfY3JlYXRlIiwiaW52b2ljZV9kZXRhaWxfbGlzdF9hbGwiLCJpbnZvaWNlX2ZpeF90aW1lc19jdXN0b21fdmFsdWUiLCJpbnZvaWNlX2xpc3RfYWxsIiwiaW52b2ljZWFkdmFuY2VfY3JlYXRlIiwiaW52b2ljZWFkdmFuY2VfbGlzdCIsImludm9pY2VhZHZhbmNlX3VwZGF0ZSIsImxvZ19saXN0X2FsbCIsImxvZ19saXN0X293biIsIm1pbGVzdG9uZV9jcmVhdGUiLCJtaWxlc3RvbmVfZGVsZXRlIiwibWlsZXN0b25lX2VkaXQiLCJtb250aGx5X2ZpeF9yYXRlX2dyb3VwX2NyZWF0ZSIsIm1vbnRobHlfZml4X3JhdGVfZ3JvdXBfZWRpdCIsIm1vbnRobHlfdXNlcl9jb3N0X2NyZWF0ZSIsIm1vbnRobHlfdXNlcl9jb3N0X2VkaXQiLCJwYXltZW50X2NyZWF0ZSIsInBheW1lbnRfZGVsZXRlIiwicGF5bWVudF9lZGl0IiwicGF5bWVudF9tZW51IiwicHJvY2VkdXJlX21lbnUiLCJwcm9jZWR1cmVfcmF0ZV9jcmVhdGUiLCJwcm9jZWR1cmVfcmF0ZV9kZXRhaWxfY3JlYXRlIiwicHJvY2VkdXJlX3JhdGVfZGV0YWlsX2VkaXQiLCJwcm9jZWR1cmVfcmF0ZV9kZXRhaWxfbGlzdCIsInByb2NlZHVyZV9yYXRlX2VkaXQiLCJwcm9jZWR1cmVfcmF0ZV9saXN0IiwicHJvY2VkdXJlX3JhdGVfbWVudSIsInByb2NlZHVyZV90cmFuc2FjdGlvbl9saXN0IiwicHJvamVjdF9hcmNoaXZlX2Nhc2NhZGVfYWxsIiwicHJvamVjdF9kZWxldGVfY2FzY2FkZV9hbGwiLCJwcm9qZWN0X3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInJhdGVfYnVzaW5lc3NfY2F0ZWdvcnlfY3JlYXRlIiwicmF0ZV9idXNpbmVzc19jYXRlZ29yeV9lZGl0IiwicmF0ZV9idXNpbmVzc191c2VyX2NyZWF0ZSIsInJhdGVfYnVzaW5lc3NfdXNlcl9lZGl0IiwicmF0ZV9leGNoYW5nZV9jcmVhdGUiLCJyYXRlX2V4Y2hhbmdlX2VkaXQiLCJyYXRlX2V4Y2hhbmdlX2xpc3QiLCJyYXRlX3VzZXJfY3JlYXRlIiwicmF0ZV91c2VyX2VkaXQiLCJyb2xlX2NyZWF0ZSIsInJvbGVfZWRpdF9hbGwiLCJyb2xlX2xpc3RfYWxsIiwic2VjdGlvbl9hcmNoaXZlX2Nhc2NhZGVfYWxsIiwic2VjdGlvbl9kZWxldGVfY2FzY2FkZV9hbGwiLCJzZWN0aW9uX3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInNlZV9tZW51X3JhdGVfZXhjaGFuZ2UiLCJzZXJpZV9jcmVhdGUiLCJzZXJpZV9lZGl0Iiwic2VyaWVfbWVudSIsInNldHRpbmdzX3ZpZXciLCJzdXBwbGllcl9jcmVhdGUiLCJ0YXNrX2FkZF90aW1lX2FsbCIsInRhc2tfYWRkX3RpbWVfb3duIiwidGFza19hc3NpZ25lZF91c2VyX2VtYWlsIiwidGFza19jbG9zZWRfZW1haWwiLCJ0YXNrX2NyZWF0ZV9hbGwiLCJ0YXNrX2NyZWF0ZV9jb21tZW50X2VtYWlsIiwidGFza19jcmVhdGVfc2VsZiIsInRhc2tfY3JlYXRlX3RlYW0iLCJ0YXNrX2RlbGV0ZV9hbGwiLCJ0YXNrX2RlbGV0ZV9vd24iLCJ0YXNrX2RlbGV0ZV90ZWFtIiwidGFza19lZGl0X2FsbCIsInRhc2tfZWRpdF9kdWVfZGF0ZSIsInRhc2tfZWRpdF9vd24iLCJ0YXNrX2VkaXRfdGVhbSIsInRhc2tfbGlzdF9hbGwiLCJ0YXNrX2xpc3Rfb3duIiwidGFza19saXN0X3RlYW0iLCJ0YXNrX21hc3NpdmVpbXBvcnQiLCJ0YXNrX21lbnUiLCJ0YXNrX21pZ3JhdGlvbiIsInRhc2tfc2V0X2FkZGl0aW9uYWxfYXNzaWduZWVzIiwidGFza19zZXRfZHVlX2RhdGUiLCJ0YXNrX3NldF9lc3RpbWF0ZWRfdGltZSIsInRhc2tfc2V0X3ByaW9yaXR5IiwidGFza19zZXRfcHJvZ3Jlc3MiLCJ0YXhfZWRpdF9hbGwiLCJ0YXhfbGlzdF9hbGwiLCJ0ZWFtX2FyY2hpdmVfY2FzY2FkZV9hbGwiLCJ0ZWFtX2NyZWF0ZV9hbGwiLCJ0ZWFtX2RlbGV0ZV9hbGwiLCJ0ZWFtX2VkaXRfYWxsIiwidGVhbV9saXN0X2FsbCIsInRlYW1fbGlzdF9vd24iLCJ0ZWFtX3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInRpbWVfYWNjZXB0X2FsbCIsInRpbWVfYWNjZXB0X293biIsInRpbWVfYXBwcm92ZV9hbGwiLCJ0aW1lX2FwcHJvdmVfb3duIiwidGltZV9jcmVhdGVfYWxsIiwidGltZV9jcmVhdGVfb3duIiwidGltZV9kZWxldGVfYWxsIiwidGltZV9kZWxldGVfb3duIiwidGltZV9kZW55X2FsbCIsInRpbWVfZGVueV9vd24iLCJ0aW1lX2Rvd25sb2FkZmlsZV9hbGwiLCJ0aW1lX2Rvd25sb2FkZmlsZV9vd24iLCJ0aW1lX2VkaXRfYWxsIiwidGltZV9lZGl0X2Nsb3NlX3BlcmlvZF9hbGwiLCJ0aW1lX2VkaXRfY2xvc2VfcGVyaW9kX293biIsInRpbWVfZWRpdF9vd24iLCJ0aW1lX2xpc3RfYWxsIiwidGltZV9saXN0X293biIsInRpbWVfbWVudSIsInRpbWVfbWludXRlc196ZXJvIiwidGltZV9yZWplY3RfYWxsIiwidGltZV9yZXN0cmljdGVkX3BlcmlvZF9jcmVhdGUiLCJ0aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX2VkaXQiLCJ0aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX21lbnUiLCJ0aW1lX3NoYXJlX2FsbCIsInRpbWVfc2hhcmVfb3duIiwidGltZV9zaG93X2NhbGVuZGFyX3ZpZXciLCJ0aW1lX3VwbG9hZGZpbGVfYWxsIiwidGltZV91cGxvYWRmaWxlX293biIsInRyYW5zYWN0aW9uX2FkYXB0ZXJfbGlzdCIsInRyYW5zYWN0aW9uX2xpc3QiLCJ1c2VyX2Fic2VuY2VzX3Nob3ciLCJ1c2VyX2Nvc3RfY3JlYXRlIiwidXNlcl9jb3N0X2VkaXQiLCJ1c2VyX2Nvc3RfbGlzdCIsInVzZXJfY29zdF9tZW51IiwidXNlcl9jb3N0X3JhdGVfY3JlYXRlIiwidXNlcl9jb3N0X3JhdGVfZWRpdCIsInVzZXJfY29zdF9yYXRlX2xpc3QiLCJ1c2VyX2NyZWF0ZSIsInVzZXJfZGlzYWJsZSIsInVzZXJfZWRpdCIsInVzZXJfZWRpdF9kYXlzX2FsbG93X29ubHkiLCJ1c2VyX2dyb3VwX3JvbGVfY3JlYXRlX2FsbCIsInVzZXJfZ3JvdXBfcm9sZV9kZWxldGVfYWxsIiwidXNlcl9ncm91cF9yb2xlX2VkaXRfYWxsIiwidXNlcl9ncm91cF9yb2xlc19saXN0X2FsbCIsInVzZXJfbGlzdCIsInVzZXJfbGlzdF9hbGwiLCJ1c2VyX21hc3NfYWN0aXZhdGlvbiIsInVzZXJfcHJvZHVjdGl2aXR5X2NyZWF0ZSIsInVzZXJfcHJvZHVjdGl2aXR5X2Rpc2FibGUiLCJ1c2VyX3Byb2R1Y3Rpdml0eV9lZGl0IiwidXNlcl9wcm9kdWN0aXZpdHlfZW5hYmxlIiwidXNlcl9wcm9kdWN0aXZpdHlfbWVudSIsInVzZXJfdGltZV9yZXN0cmljdGVkX3BlcmlvZF9jcmVhdGUiLCJ1c2VyX3RpbWVfcmVzdHJpY3RlZF9wZXJpb2RfZGVsZXRlIiwidXNlcl90aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX2VkaXQiLCJ1c2VyZ3JvdXBfY3JlYXRlX2FsbCIsInVzZXJncm91cF9kZWxldGVfYWxsIiwidXNlcmdyb3VwX2VkaXRfYWxsIiwidXNlcmdyb3VwX2xpc3RfYWxsIiwidXNlcmdyb3VwX21lbnUiLCJ1c2Vyc191c2VyX2dyb3VwX2NyZWF0ZV9hbGwiLCJ1c2Vyc191c2VyX2dyb3VwX2RlbGV0ZV9hbGwiLCJ1c2Vyc191c2VyX2dyb3VwX2VkaXRfYWxsIiwidXNlcnNfdXNlcl9ncm91cHNfbGlzdF9hbGwiXSwiaG9tZXBhZ2UiOm51bGx9.kShN7NXGoaz1oFro-yYNyIpIEcnNpo1GiB8SFGKFUJtDQoqyp1I1w-CMA8Kta3vWXnUZwx-y2z1yVSJaMpZbqQgKFlakpcf6351bZSL8IAUPExSfLz0HYYCWFx-Usx94BBTqosKsRhnT8PkPN3dGxs8-XTIEDi9gN-Pk9OSHmM5mPkTsaaxTY40M-F7Y0Up2y6s_lwFaX13CmstiYZSXzyKL9SUBBx-E6-8qQAfuKPIoZ_50jSGPW98-IkAcWwqO6yGf-M07dSfFZ2vLfwc3ulHm2p8jVSmRxJ_O43BEWQD5cvqGbVIvSMXkS4y98DL4Vencjjg27iu3CUJsDNBBTg] Content-Type:[application/json] Origin:[https://azure-function.timemanagerweb.com] Tenant-Name:[pruebas-dos] User-Agent:[Mozilla/5.0 (X11; Linux x86_64)...]]\nBody: map[query:query ($limit: Int, $orderBy: String, $orderDesc: Boolean, $page: Int) {\n CustomersMeta(limit: $limit, orderBy: $orderBy, orderDesc: $orderDesc, page: $page) {\n meta {\n hasNextPage\n hasPreviousPage\n limit\n next\n page\n pages\n previous\n total\n }\n rows {\n id\n code\n number\n color\n name\n trade_name\n displayName\n email\n phone\n address\n city\n state\n country\n postal_code\n nit\n primary_external_code\n status\n statusMarking\n billingLimitDate\n recepctionLimitDate\n dmsIntegration\n cmrRequiredDocuments\n cmrPayTms\n enabled\n created_at\n updated_at\n valueTax\n withIva\n paymentDays\n national\n enterpriseGroup\n responsiblePartner {\n id\n username\n email\n fullName\n shortName\n locale\n userType\n superAdmin\n enabled\n created_at\n updated_at\n daysAllow\n }\n }\n }\n} variables:map[limit:100 orderBy:orderBy orderDesc:true page:2]]\n","time":"2025-07-30T10:49:06-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: POST https://apinewtm.com/graphql/ | Status: 200 | Duration: 513.2836ms\nHeaders: map[Access-Control-Allow-Credentials:[true] Access-Control-Allow-Origin:[https://azure-function.timemanagerweb.com] Access-Control-Expose-Headers:[link, access-control-allow-credentials] Cache-Control:[no-cache, private] Content-Type:[application/json] Date:[Wed, 30 Jul 2025 14:49:06 GMT] Server:[] Vary:[Authorization]]\nBody: {\"data\":{\"CustomersMeta\":{\"meta\":{\"hasNextPage\":true,\"hasPreviousPage\":true,\"limit\":100,\"next\":3,\"page\":2,\"pages\":10,\"previous\":1,\"total\":919},\"rows\":[{\"id\":\"60\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"ASOCIACION DE COPROPIETARIOS DE LA TORRE EMPRESARIAL\",\"trade_name\":\"ASOCIACION DE COPROPIETARIOS DE LA TORRE EMPRESARIAL\",\"displayName\":\"73 - ASOCIACION DE COPROPIETARIOS DE LA TORRE EMPRESARIAL\",\"email\":\"adm_cainco@acelerate.com\",\"phone\":\"3334555\",\"address\":\"Av. Las Am\\u00e9ricas No. 7, Saavedra\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"133981028\",\"primary_external_code\":\"73\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:18\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"62\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"ASTRIX S.A.\",\"trade_name\":\"ASTRIX S.A.\",\"displayName\":\"74 - ASTRIX S.A.\",\"email\":\"jimenalora@astrixsa.com\",\"phone\":\"4 4268369\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1023053020\",\"primary_external_code\":\"74\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:18\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"63\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"ASTRONOM BOLIVIANA DE DESARROLLOS S.R.L.\",\"trade_name\":\"ASTRONOM BOLIVIANA DE DESARROLLOS S.R.L.\",\"displayName\":\"177 - ASTRONOM BOLIVIANA DE DESARROLLOS S.R.L.\",\"email\":\"\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"177\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:18\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"64\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"AUDITEL INGENIER\\u00cdA Y SERVICIOS S.L. SUCURSAL BOLIVIA\",\"trade_name\":\"AUDITEL INGENIER\\u00cdA Y SERVICIOS S.L. SUCURSAL BOLIVIA\",\"displayName\":\"75 - AUDITEL INGENIER\\u00cdA Y SERVICIOS S.L. SUCURSAL BOLIVIA\",\"email\":\"agonzalez@auditel.es\",\"phone\":\"917211848\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"340188024\",\"primary_external_code\":\"75\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:18\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"65\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"AUMENTUMTECH BOLIVIA SRL\",\"trade_name\":\"AUMENTUMTECH BOLIVIA SRL\",\"displayName\":\"392 - AUMENTUMTECH BOLIVIA SRL\",\"email\":\"virginia.flores@aumentuntech.com\",\"phone\":\"4485159\",\"address\":\"AV AMERICA ENTRE CALLE SANTA CRUZ Y VILLAROEL\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"211542024\",\"primary_external_code\":\"392\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:18\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"66\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Automercados SRL\",\"trade_name\":\"Automercados SRL\",\"displayName\":\"410 - Automercados SRL\",\"email\":\"javiercremer@hotmail.com\",\"phone\":\"70377717\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"306612023\",\"primary_external_code\":\"410\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":17,\"username\":\"aaraoz@emba.com\",\"email\":\"aaraoz@emba.com\",\"fullName\":\"Alvaro Araoz Ardaya\",\"shortName\":\"aaraoz\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-12-04 15:29:19\",\"daysAllow\":302}},{\"id\":\"67\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"AUTOSTAR\",\"trade_name\":\"AUTOSTAR\",\"displayName\":\"333 - AUTOSTAR\",\"email\":\"amorenog@emba.com.bo\",\"phone\":\"2791554\",\"address\":\"Av Estados Unidos #1118, La Paz\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"198718021\",\"primary_external_code\":\"333\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"68\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"AVICONS SRL\",\"trade_name\":\"AVICONS SRL\",\"displayName\":\"363 - AVICONS SRL\",\"email\":\"svillarroel@avicons.com.bo\",\"phone\":\"72200826\",\"address\":\"Av. Melchor Urquidi No.1775\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1020779021\",\"primary_external_code\":\"363\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":17,\"username\":\"aaraoz@emba.com\",\"email\":\"aaraoz@emba.com\",\"fullName\":\"Alvaro Araoz Ardaya\",\"shortName\":\"aaraoz\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-12-04 15:29:19\",\"daysAllow\":302}},{\"id\":\"69\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"BANCO DE CREDITO DE BOLIVIA S.A.\",\"trade_name\":\"BANCO DE CREDITO DE BOLIVIA S.A.\",\"displayName\":\"346 - BANCO DE CREDITO DE BOLIVIA S.A.\",\"email\":\"rrivamontan@bcp.com.bo\",\"phone\":\"2114141\",\"address\":\"Av. Hernando Siles N\\u00b0 5555, Esquina Calle 10, Obra\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1020435022\",\"primary_external_code\":\"346\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":5,\"username\":\"amorenog@emba.com\",\"email\":\"amorenog@emba.com\",\"fullName\":\"Andres Moreno Gutierrez\",\"shortName\":\"amoreno\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"70\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Banco de Desarrollo Productivo Sociedad An\\u00f3nima Mixta\",\"trade_name\":\"Banco de Desarrollo Productivo Sociedad An\\u00f3nima Mixta\",\"displayName\":\"267 - Banco de Desarrollo Productivo Sociedad An\\u00f3nima Mixta\",\"email\":\"ariel.zabala@bdp.com.bo\",\"phone\":\"2157171\",\"address\":\"Calle Reyes Ortiz No.73 Edificio Gundlach Torre Es\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1020589022\",\"primary_external_code\":\"267\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":12,\"username\":\"tmercado@emba.com\",\"email\":\"tmercado@emba.com\",\"fullName\":\"Teddy Alberto Mercado Carrion\",\"shortName\":\"tmercado\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"71\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"BANCO DO BRASIL S.A. SUC. BOLIVIA\",\"trade_name\":\"BANCO DO BRASIL S.A. SUC. BOLIVIA\",\"displayName\":\"76 - BANCO DO BRASIL S.A. SUC. BOLIVIA\",\"email\":\"tgutierrez@bb.com.br\",\"phone\":\"71240032\",\"address\":\"Calle Campos 132\",\"city\":\"La Paz\",\"state\":\"Bolivia\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"1006973025\",\"primary_external_code\":\"76\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"72\",\"code\":null,\"number\":null,\"color\":\"#cb4f89\",\"name\":\"Banco Nacional de Bolivia S.A.\",\"trade_name\":\"Banco Nacional de Bolivia S.A.\",\"displayName\":\"252 - Banco Nacional de Bolivia S.A.\",\"email\":\"Jorias@bnb.com.bo\",\"phone\":\"2313232\",\"address\":\"Avenida Camacho No. 1296 esquina Calle Col\\u00f3n\",\"city\":\"La Paz\",\"state\":\"La Paz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"1016253021\",\"primary_external_code\":\"252\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"73\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Banco para el Fomento a Iniciativas Econ\\u00f3micas S.A.\",\"trade_name\":\"Banco para el Fomento a Iniciativas Econ\\u00f3micas S.A.\",\"displayName\":\"436 - Banco para el Fomento a Iniciativas Econ\\u00f3micas S.A.\",\"email\":\"enrique.palmero@bancofie.com.bo\",\"phone\":\"(591-2) 2173600\",\"address\":\"Av. 6 de Agosto N\\u00b02652 esq. Gosalvez, Sopocachi\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1020273023\",\"primary_external_code\":\"436\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":12,\"username\":\"tmercado@emba.com\",\"email\":\"tmercado@emba.com\",\"fullName\":\"Teddy Alberto Mercado Carrion\",\"shortName\":\"tmercado\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"74\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"BANCO SANTANDER BRASIL\",\"trade_name\":\"BANCO SANTANDER BRASIL\",\"displayName\":\"356 - BANCO SANTANDER BRASIL\",\"email\":\"ansilveira@santander.com.br\",\"phone\":\"4004 3535\",\"address\":\"Av. Pres. Juscelino Kubitschek, 2235 - 9\\u00ba and \\u2013 Es\",\"city\":\"\",\"state\":\"\",\"country\":\"Brasil\",\"postal_code\":\"\",\"nit\":\"356\",\"primary_external_code\":\"356\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"75\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Banco Uni\\u00f3n S.A.\",\"trade_name\":\"Banco Uni\\u00f3n S.A.\",\"displayName\":\"437 - Banco Uni\\u00f3n S.A.\",\"email\":\"lfescobar@bancounion.com.bo\",\"phone\":\"(591-2) 2-171717\",\"address\":\"Direcci\\u00f3n: Calle 21 Calacoto N\\u00b0 8484 esq. Aguirre\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1028415020\",\"primary_external_code\":\"437\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":12,\"username\":\"tmercado@emba.com\",\"email\":\"tmercado@emba.com\",\"fullName\":\"Teddy Alberto Mercado Carrion\",\"shortName\":\"tmercado\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"76\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"BARDAHL MANUFACTURING CORPORATION\",\"trade_name\":\"BARDAHL MANUFACTURING CORPORATION\",\"displayName\":\"680 - BARDAHL MANUFACTURING CORPORATION\",\"email\":\"LisaV@seedip.com\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"680\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"77\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"BARREIRO OLIVA DE LUCA JACA NICASTRO\",\"trade_name\":\"BARREIRO OLIVA DE LUCA JACA NICASTRO\",\"displayName\":\"378 - BARREIRO OLIVA DE LUCA JACA NICASTRO\",\"email\":\"fcardini@bodlegal.com\",\"phone\":\"54 11 4814-1746\",\"address\":\"Av. C\\u00f3rdoba 1309 3\\u00b0A. CABA\",\"city\":\"Buenos Aires\",\"state\":\"Buenos Aires\",\"country\":\"Argentina\",\"postal_code\":\"B1228\",\"nit\":\"30716029898\",\"primary_external_code\":\"378\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"78\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"BDO BARCELONA\",\"trade_name\":\"BDO BARCELONA\",\"displayName\":\"859 - BDO BARCELONA\",\"email\":\"cmercado@bdobolivia.com\",\"phone\":\"2917424\",\"address\":\"SAN MIGUEL BLOQUE 37 CALLE JAIME MENDOZA #1063\",\"city\":\"\",\"state\":\"\",\"country\":\"Espa\\u00f1a\",\"postal_code\":\"\",\"nit\":\"859\",\"primary_external_code\":\"859\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":8,\"username\":\"lmorenog@emba.com\",\"email\":\"lmorenog@emba.com\",\"fullName\":\"Luis Moreno Gutierrez\",\"shortName\":\"lmoreno\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"79\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"BEATRIZ GIRALDO MU\\u00d1OZ\",\"trade_name\":\"BEATRIZ GIRALDO MU\\u00d1OZ\",\"displayName\":\"77 - BEATRIZ GIRALDO MU\\u00d1OZ\",\"email\":\"beatrizeugeniagiraldom@gmail.com\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"77\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"80\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"BECLEVER\",\"trade_name\":\"BECLEVER\",\"displayName\":\"457 - BECLEVER\",\"email\":\"sebastian.luna@beclevercorp.com\",\"phone\":\"54117400000000000\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Argentina\",\"postal_code\":\"\",\"nit\":\"457\",\"primary_external_code\":\"457\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":8,\"username\":\"lmorenog@emba.com\",\"email\":\"lmorenog@emba.com\",\"fullName\":\"Luis Moreno Gutierrez\",\"shortName\":\"lmoreno\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"81\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"BEJARANO\",\"trade_name\":\"BEJARANO\",\"displayName\":\"160 - BEJARANO\",\"email\":\"\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"3457394\",\"primary_external_code\":\"160\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"82\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Benites, Vargas \\u0026 Ugaz Abogados\",\"trade_name\":\"Benites, Vargas \\u0026 Ugaz Abogados\",\"displayName\":\"421 - Benites, Vargas \\u0026 Ugaz Abogados\",\"email\":\"jacevedo@bvu.pe\",\"phone\":\"(511) 615-9090\",\"address\":\"Av. 28 de Julio 1044 - Lima 18 Per\\u00fa\",\"city\":\"\",\"state\":\"\",\"country\":\"Per\\u00fa\",\"postal_code\":\"\",\"nit\":\"421\",\"primary_external_code\":\"421\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"83\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"BINBIT (BOLIVIA) SRL.\",\"trade_name\":\"BINBIT (BOLIVIA) SRL.\",\"displayName\":\"179 - BINBIT (BOLIVIA) SRL.\",\"email\":\"lfernandez@binbit.com\",\"phone\":\"2112225\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"157100021\",\"primary_external_code\":\"179\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"84\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"BIOFERM S.R.L. (GRUPO VENADO)\",\"trade_name\":\"BIOFERM S.R.L. (GRUPO VENADO)\",\"displayName\":\"559 - BIOFERM S.R.L. (GRUPO VENADO)\",\"email\":\"felipevillarroel@grupovenado.com\",\"phone\":\"77700255\",\"address\":\"Av. Sta Gema esquina Calle 3, entre el 7mo y 8vo a\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"348402029\",\"primary_external_code\":\"559\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"85\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"BioM\\u00e9rieux\",\"trade_name\":\"BioM\\u00e9rieux\",\"displayName\":\"787 - BioM\\u00e9rieux\",\"email\":\"Eduardo.peluffo@biomerieux.com\",\"phone\":\"54 11 5555 6800\",\"address\":\"bioM\\u00e9rieux Argentina, Edificio Intecons Arias 3751\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"787\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"86\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"BIOMERIEUX COLOMBIA SAS\",\"trade_name\":\"BIOMERIEUX COLOMBIA SAS\",\"displayName\":\"489 - BIOMERIEUX COLOMBIA SAS\",\"email\":\"michael.tapiero@biomerieux.com\",\"phone\":\"(571) 647 601\",\"address\":\"Carrera 7 # 127 - 48. Oficina 806 BOGOT\\u00c1, D.C.\",\"city\":\"\",\"state\":\"\",\"country\":\"Colombia\",\"postal_code\":\"\",\"nit\":\"8300238441\",\"primary_external_code\":\"489\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"87\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"BIOPAS LABORATORIO\",\"trade_name\":\"BIOPAS LABORATORIO\",\"displayName\":\"204 - BIOPAS LABORATORIO\",\"email\":\"fsiredeyolivares@gmail.com\",\"phone\":\"\",\"address\":\"Av. Oquendo N 1080 Edificio: Los Tiempos Torre Ii\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"146562020\",\"primary_external_code\":\"204\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"88\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"BIOT\\u00c9CNICA S.R.L. (GALMEDIC)\",\"trade_name\":\"BIOT\\u00c9CNICA S.R.L. (GALMEDIC)\",\"displayName\":\"757 - BIOT\\u00c9CNICA S.R.L. (GALMEDIC)\",\"email\":\"operaciones.export@galmedic.com.py\",\"phone\":\"+595 21 205 873\",\"address\":\"Laboratorio GALMEDIC, Oficinas \\/ Office: Avda. Eus\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"757\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"89\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"BIOTROP\",\"trade_name\":\"BIOTROP\",\"displayName\":\"565 - BIOTROP\",\"email\":\"sebastian.corbacho@biotrop.com.br\",\"phone\":\"41 3099-7300\",\"address\":\"Av. Dourado, 375 - Res. Aqu\\u00e1rio, Vinhedo - SP, 132\",\"city\":\"\",\"state\":\"\",\"country\":\"Brasil\",\"postal_code\":\"\",\"nit\":\"565\",\"primary_external_code\":\"565\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"90\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"BIOVET\",\"trade_name\":\"BIOVET\",\"displayName\":\"664 - BIOVET\",\"email\":\"\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"664\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"91\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"BISA S.A. AGENCIA DE BOLSA\",\"trade_name\":\"BISA S.A. AGENCIA DE BOLSA\",\"displayName\":\"156 - BISA S.A. AGENCIA DE BOLSA\",\"email\":\"tampuero@grupobisa.com\",\"phone\":\"2434515\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1006939024\",\"primary_external_code\":\"156\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"93\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"BKM Internacional Sociedad Simple\",\"trade_name\":\"BKM Internacional Sociedad Simple\",\"displayName\":\"892 - BKM Internacional Sociedad Simple\",\"email\":\"leyla.apud@berke.com.py\",\"phone\":\"59521 446706\",\"address\":\"Aviadores del Chaco N\\u00b0 2050, Edif. World Trade Cen\",\"city\":\"\",\"state\":\"\",\"country\":\"Paraguay\",\"postal_code\":\"\",\"nit\":\"80098135-9\",\"primary_external_code\":\"892\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":12,\"username\":\"tmercado@emba.com\",\"email\":\"tmercado@emba.com\",\"fullName\":\"Teddy Alberto Mercado Carrion\",\"shortName\":\"tmercado\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"95\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"BLOCCREATIVO S.R.L.\",\"trade_name\":\"BLOCCREATIVO S.R.L.\",\"displayName\":\"270 - BLOCCREATIVO S.R.L.\",\"email\":\"bloccreativo@gmail.com\",\"phone\":\"65172867\",\"address\":\"Calle Los Claveles No. 520 Barrio Sirari\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"371113020\",\"primary_external_code\":\"270\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"96\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"BLP\",\"trade_name\":\"BLP\",\"displayName\":\"576 - BLP\",\"email\":\"turrutia@blplegal.com\",\"phone\":\"+506 7202 8469\",\"address\":\"Centro Am\\u00e9rica\",\"city\":\"\",\"state\":\"\",\"country\":\"Costa Rica\",\"postal_code\":\"\",\"nit\":\"576\",\"primary_external_code\":\"576\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"97\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"BLP Abogados SA\",\"trade_name\":\"BLP Abogados SA\",\"displayName\":\"578 - BLP Abogados SA\",\"email\":\"turrutia@blplegal.com\",\"phone\":\"22053939\",\"address\":\"San Jose,Santa Ana, Pozos, Lindora.\",\"city\":\"\",\"state\":\"\",\"country\":\"Guatemala\",\"postal_code\":\"\",\"nit\":\"3101587195\",\"primary_external_code\":\"578\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"98\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Bluetrail Ajayu SRL\",\"trade_name\":\"Bluetrail Ajayu SRL\",\"displayName\":\"469 - Bluetrail Ajayu SRL\",\"email\":\"amels@bluetrailsoft.com\",\"phone\":\"5162342953\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Estados Unidos\",\"postal_code\":\"\",\"nit\":\"420801023\",\"primary_external_code\":\"469\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"99\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"BOL\\u00cdVAR ADMINISTRACI\\u00d3N, INVERSIONES y SERVICIOS ASOCIADOS S.R.L. (BAISA S.R.L.),\",\"trade_name\":\"BOL\\u00cdVAR ADMINISTRACI\\u00d3N, INVERSIONES y SERVICIOS ASOCIADOS S.R.L. (BAISA S.R.L.),\",\"displayName\":\"389 - BOL\\u00cdVAR ADMINISTRACI\\u00d3N, INVERSIONES y SERVICIOS ASOCIADOS S.R.L. (BAISA S.R.L.),\",\"email\":\"alejandro.montano.legal@gmail.com\",\"phone\":\"2916965\",\"address\":\"Calle 28 N\\u00b0 715 Zona: Cota Cota\",\"city\":\"La Paz\",\"state\":\"La Paz\",\"country\":\"Bolivia\",\"postal_code\":\"0000\",\"nit\":\"153676025\",\"primary_external_code\":\"389\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-06-24 14:11:55\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"100\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"PECOM SERVICIOS ENERGIA S.A. (SUCURSAL BOLIVIA)\",\"trade_name\":\"PECOM SERVICIOS ENERGIA S.A. (SUCURSAL BOLIVIA)\",\"displayName\":\"249 - PECOM SERVICIOS ENERGIA S.A. (SUCURSAL BOLIVIA)\",\"email\":\"oscar.ortiz@pecomenergia.com.bo\",\"phone\":\"3559595\",\"address\":\"Doble V\\u00eda La Guardia casi 5to Anillo diagonal del\",\"city\":\"Santa Cruz\",\"state\":\"Santa Cruz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"1028355021\",\"primary_external_code\":\"249\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":14.94,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"101\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"BPOINT S.R.L.\",\"trade_name\":\"BPOINT S.R.L.\",\"displayName\":\"567 - BPOINT S.R.L.\",\"email\":\"Marjorie.Sencion@brinkspanama.com\",\"phone\":\"(+507) 6203-0362\",\"address\":\"Moreno Baldivieso Santa Cruz\",\"city\":\"La Paz\",\"state\":\"La Paz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"481369028\",\"primary_external_code\":\"567\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"104\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"BRINK\\u0027S BOLIVIA S.A.\",\"trade_name\":\"BRINK\\u0027S BOLIVIA S.A.\",\"displayName\":\"153 - BRINK\\u0027S BOLIVIA S.A.\",\"email\":\"anezs@brinksbolivia.com\",\"phone\":\"3128400\",\"address\":\"Av. Mutualista No. 2400, Santa Cruz, Bolivia\",\"city\":\"Santa Cruz\",\"state\":\"Santa Cruz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"1028645025\",\"primary_external_code\":\"153\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"105\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"BROADTEL BOLIVIA S.R.L.\",\"trade_name\":\"BROADTEL BOLIVIA S.R.L.\",\"displayName\":\"288 - BROADTEL BOLIVIA S.R.L.\",\"email\":\"d.munoz@btesa.com\",\"phone\":\"+34 913274363 fax: +\",\"address\":\"Calle Jos\\u00e9 F. Guevara No. 421 Zona Pacata Alta Coc\",\"city\":\"\",\"state\":\"\",\"country\":\"Espa\\u00f1a\",\"postal_code\":\"\",\"nit\":\"382095023\",\"primary_external_code\":\"288\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"106\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"BTESA\",\"trade_name\":\"BTESA\",\"displayName\":\"247 - BTESA\",\"email\":\"d.munoz@btesa.com\",\"phone\":\"34 913274363\",\"address\":\"Parque Legan\\u00e9s Tecnol\\u00f3gico. c\\/ Margarita Salas N\\u00ba\",\"city\":\"\",\"state\":\"\",\"country\":\"Espa\\u00f1a\",\"postal_code\":\"\",\"nit\":\"247\",\"primary_external_code\":\"247\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"107\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Buhooo S.R.L.\",\"trade_name\":\"Buhooo S.R.L.\",\"displayName\":\"470 - Buhooo S.R.L.\",\"email\":\"ricardolimpias@buhooo.com\",\"phone\":\"78777167\",\"address\":\"Calle Francisco Rodriguez Zona Av. Paragua N 3675\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"470\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"108\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"BULLA CREATIVA S.R.L.\",\"trade_name\":\"BULLA CREATIVA S.R.L.\",\"displayName\":\"78 - BULLA CREATIVA S.R.L.\",\"email\":\"fteran@bulla.com.bo\",\"phone\":\"76207972\",\"address\":\"zona sur calle #30 cota cota\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"369148026\",\"primary_external_code\":\"78\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"109\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"BUNGE LATIN AMERICAN LLC\",\"trade_name\":\"BUNGE LATIN AMERICAN LLC\",\"displayName\":\"312 - BUNGE LATIN AMERICAN LLC\",\"email\":\"Rodrigo.Borjas@bunge.com\",\"phone\":\"(305) 648-4364\",\"address\":\"2655 S Le Jeune Rd Ste 610 Coral Gables?, FL, 3313\",\"city\":\"La PAz\",\"state\":\"La Paz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"312\",\"primary_external_code\":\"312\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"110\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Bunge Loders Croklaan Oils Sdn Bhd\",\"trade_name\":\"Bunge Loders Croklaan Oils Sdn Bhd\",\"displayName\":\"435 - Bunge Loders Croklaan Oils Sdn Bhd\",\"email\":\"Derek.Lim@bunge.com\",\"phone\":\"+65 6730 6262\",\"address\":\"1 Wallich Street #08-01, Guoco Tower, Singapore 07\",\"city\":\"\",\"state\":\"\",\"country\":\"Singapur\",\"postal_code\":\"\",\"nit\":\"435\",\"primary_external_code\":\"435\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"111\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"BUPA INSURANCE (BOLIVIA) S.A.\",\"trade_name\":\"BUPA INSURANCE (BOLIVIA) S.A.\",\"displayName\":\"79 - BUPA INSURANCE (BOLIVIA) S.A.\",\"email\":\"kquesada@bupalatinamerica.com\",\"phone\":\"3424264\",\"address\":\"AV. Beni c\\/ guapomo #2005 edificio espacio\",\"city\":\"SAnta Cruz\",\"state\":\"Santa Cruz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"158270027\",\"primary_external_code\":\"79\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"112\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"C.I. ENERG\\u00cdA SOLAR S.A.S E.S. WINDOWS SUCURSAL BOLIVIA\",\"trade_name\":\"C.I. ENERG\\u00cdA SOLAR S.A.S E.S. WINDOWS SUCURSAL BOLIVIA\",\"displayName\":\"80 - C.I. ENERG\\u00cdA SOLAR S.A.S E.S. WINDOWS SUCURSAL BOLIVIA\",\"email\":\"jdiaz@energiasolarsa.com\",\"phone\":\"\",\"address\":\"CALLE BERNARDO CADARIO # 132 BARRIO VILLABRIGIDA 4\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"335024020\",\"primary_external_code\":\"80\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"113\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"CALZADA CONSTRUCCIONES S.A. DE C.V. SUCURSAL BOLIVIA\",\"trade_name\":\"CALZADA CONSTRUCCIONES S.A. DE C.V. SUCURSAL BOLIVIA\",\"displayName\":\"185 - CALZADA CONSTRUCCIONES S.A. DE C.V. SUCURSAL BOLIVIA\",\"email\":\"sergiomiranda@gruporavi.com\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"318626028\",\"primary_external_code\":\"185\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"114\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"C\\u00e1mara Boliviana de Comercio Electr\\u00f3nico y Startups (CABOCES)\",\"trade_name\":\"C\\u00e1mara Boliviana de Comercio Electr\\u00f3nico y Startups (CABOCES)\",\"displayName\":\"362 - C\\u00e1mara Boliviana de Comercio Electr\\u00f3nico y Startups (CABOCES)\",\"email\":\"luispolasek@gmail.com\",\"phone\":\"75031300\",\"address\":\"Zona Norte, Barrio Hamacas, 4to anillo, entre Av.\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"362\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"115\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"CAMBRIDGE COLLEGE S.R.L.\",\"trade_name\":\"CAMBRIDGE COLLEGE S.R.L.\",\"displayName\":\"908 - CAMBRIDGE COLLEGE S.R.L.\",\"email\":\"karlah@cambridge.edu.bo\",\"phone\":\"77603003\",\"address\":\"Av. Cristo Redentor Km. 8 1\\/2 Carretera al Norte\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1014349020\",\"primary_external_code\":\"908\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":9,\"username\":\"paramayo@emba.com\",\"email\":\"paramayo@emba.com\",\"fullName\":\"Paul Aramayo Salinas\",\"shortName\":\"paramayo\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"116\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"CAMPUS TALENT BOLIVIA S.R.L.\",\"trade_name\":\"CAMPUS TALENT BOLIVIA S.R.L.\",\"displayName\":\"670 - CAMPUS TALENT BOLIVIA S.R.L.\",\"email\":\"bolivia@aulacampustalent.com\",\"phone\":\"\",\"address\":\"Calle 23 De Calacoto Esq. Inofuentes N\\u00b0 S\\/n Edific\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"670\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"117\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"CAPRESSO\",\"trade_name\":\"CAPRESSO\",\"displayName\":\"515 - CAPRESSO\",\"email\":\"rmendez@capressocafe.com\",\"phone\":\"79966599\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"174496020\",\"primary_external_code\":\"515\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":17,\"username\":\"aaraoz@emba.com\",\"email\":\"aaraoz@emba.com\",\"fullName\":\"Alvaro Araoz Ardaya\",\"shortName\":\"aaraoz\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-12-04 15:29:19\",\"daysAllow\":302}},{\"id\":\"118\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"CARLOS MORALES\",\"trade_name\":\"CARLOS MORALES\",\"displayName\":\"223 - CARLOS MORALES\",\"email\":\"cmorales@delcosur.com\",\"phone\":\"77292236\",\"address\":\"CALLE LOS SAUCES N\\u00ba 8000, LLOJETA BAJO\",\"city\":\"La Paz\",\"state\":\"La Paz\",\"country\":\"Bolivia\",\"postal_code\":null,\"nit\":\"122779024\",\"primary_external_code\":\"223\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"119\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Carlos Rebollo\",\"trade_name\":\"Carlos Rebollo\",\"displayName\":\"320 - Carlos Rebollo\",\"email\":\"carlos@hetta.com.br\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Brasil\",\"postal_code\":\"\",\"nit\":\"320\",\"primary_external_code\":\"320\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"120\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"CARLOS VASQUEZ DARIMONT\",\"trade_name\":\"CARLOS VASQUEZ DARIMONT\",\"displayName\":\"171 - CARLOS VASQUEZ DARIMONT\",\"email\":\"\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"171\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"121\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Cashu SRL\",\"trade_name\":\"Cashu SRL\",\"displayName\":\"444 - Cashu SRL\",\"email\":\"henrrycasas@hotmail.com\",\"phone\":\"77773372\",\"address\":\"Calle 11, Edificio Cielo Mall, Piso 7, El Alto\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"320930027\",\"primary_external_code\":\"444\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"122\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"CASTELLANOS CONSTRUCCIONES S.R.L.\",\"trade_name\":\"CASTELLANOS CONSTRUCCIONES S.R.L.\",\"displayName\":\"158 - CASTELLANOS CONSTRUCCIONES S.R.L.\",\"email\":\"castellanosconstrucciones@gmail.com\",\"phone\":\"6637987\",\"address\":\"Calle Ingavi N\\u00b0 449 Edificio: Edificio Donoso Paz\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"142323028\",\"primary_external_code\":\"158\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"123\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"CBRE, Inc\",\"trade_name\":\"CBRE, Inc\",\"displayName\":\"789 - CBRE, Inc\",\"email\":\"Lucila.Bolli@cbre.com\",\"phone\":\"+1 800 799 6523\",\"address\":\"2100 McKinney Avenue, Suite 1250 Dallas, TX 75201\",\"city\":\"\",\"state\":\"\",\"country\":\"Estados Unidos\",\"postal_code\":\"\",\"nit\":\"789\",\"primary_external_code\":\"789\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"124\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"CELESTINA VIRGINIA ORIHUELA ALVAREZ\",\"trade_name\":\"CELESTINA VIRGINIA ORIHUELA ALVAREZ\",\"displayName\":\"467 - CELESTINA VIRGINIA ORIHUELA ALVAREZ\",\"email\":\"mdavila@emba.com.bo\",\"phone\":\"76222959\",\"address\":\"Oquendo 1080\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"2050132\",\"primary_external_code\":\"467\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":17,\"username\":\"aaraoz@emba.com\",\"email\":\"aaraoz@emba.com\",\"fullName\":\"Alvaro Araoz Ardaya\",\"shortName\":\"aaraoz\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-12-04 15:29:19\",\"daysAllow\":302}},{\"id\":\"125\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"CENTRO MISIONERO MARYKNOLL EN AM\\u00c9RICA LATINA\",\"trade_name\":\"CENTRO MISIONERO MARYKNOLL EN AM\\u00c9RICA LATINA\",\"displayName\":\"82 - CENTRO MISIONERO MARYKNOLL EN AM\\u00c9RICA LATINA\",\"email\":\"cllobet@emba.com.bo\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1020797029\",\"primary_external_code\":\"82\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"126\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"CER\\u00c1MICA ESTRUCTURAL DE BOLIVIA S.A.\",\"trade_name\":\"CER\\u00c1MICA ESTRUCTURAL DE BOLIVIA S.A.\",\"displayName\":\"551 - CER\\u00c1MICA ESTRUCTURAL DE BOLIVIA S.A.\",\"email\":\"lilian_dp@yahoo.com\",\"phone\":\"70155082\",\"address\":\"Carretera Norte entre Warnes y Montero, Km 37, War\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"211544020\",\"primary_external_code\":\"551\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":6,\"username\":\"darredondo@emba.com.bo\",\"email\":\"nicoln042001@gmail.com\",\"fullName\":\"Daniel Marcelo Arredondo Zelada\",\"shortName\":\"darredon\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-03 11:43:07\",\"daysAllow\":302}},{\"id\":\"127\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"CESAR GONZALES\",\"trade_name\":\"CESAR GONZALES\",\"displayName\":\"685 - CESAR GONZALES\",\"email\":\"\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"685\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"128\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Charbel Mendoza\",\"trade_name\":\"Charbel Mendoza\",\"displayName\":\"458 - Charbel Mendoza\",\"email\":\"rprado@copelme.com\",\"phone\":\"67402389\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"464810\",\"primary_external_code\":\"458\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":17,\"username\":\"aaraoz@emba.com\",\"email\":\"aaraoz@emba.com\",\"fullName\":\"Alvaro Araoz Ardaya\",\"shortName\":\"aaraoz\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-12-04 15:29:19\",\"daysAllow\":302}},{\"id\":\"129\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"CHONGQING CISDI ENGINEERING CONSULTING CO. LTD SUCURSAL BOLIVIA\",\"trade_name\":\"CHONGQING CISDI ENGINEERING CONSULTING CO. LTD SUCURSAL BOLIVIA\",\"displayName\":\"83 - CHONGQING CISDI ENGINEERING CONSULTING CO. LTD SUCURSAL BOLIVIA\",\"email\":\"tingting5jbh@hotmail.com\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"350924025\",\"primary_external_code\":\"83\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"130\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"CHRISTIAN AUTOMOTORS S.A.\",\"trade_name\":\"CHRISTIAN AUTOMOTORS S.A.\",\"displayName\":\"349 - CHRISTIAN AUTOMOTORS S.A.\",\"email\":\"cjacir@christian.com.bo\",\"phone\":\"3340705\",\"address\":\"Av. Cristobal de Mendoza No. 200\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1028579022\",\"primary_external_code\":\"349\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":9,\"username\":\"paramayo@emba.com\",\"email\":\"paramayo@emba.com\",\"fullName\":\"Paul Aramayo Salinas\",\"shortName\":\"paramayo\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"131\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Churroman\\u00eda\",\"trade_name\":\"Churroman\\u00eda\",\"displayName\":\"317 - Churroman\\u00eda\",\"email\":\"ariel@churromania.com\",\"phone\":\"7864016026\",\"address\":\"Florida EEUU\",\"city\":\"\",\"state\":\"\",\"country\":\"Estados Unidos\",\"postal_code\":\"\",\"nit\":\"317\",\"primary_external_code\":\"317\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"132\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"CINE PAPAYA BOLIVIA S.A.\",\"trade_name\":\"CINE PAPAYA BOLIVIA S.A.\",\"displayName\":\"84 - CINE PAPAYA BOLIVIA S.A.\",\"email\":\"mfranco@fandango.com\",\"phone\":\"3419565\",\"address\":\"CALLE PATUJU Nro. 620, URBANIZACION EL REMANZO 3,\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"300136026\",\"primary_external_code\":\"84\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"133\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"CINECENTER BOLIVIA SRL\",\"trade_name\":\"CINECENTER BOLIVIA SRL\",\"displayName\":\"85 - CINECENTER BOLIVIA SRL\",\"email\":\"scardenas@caribbeancinemas.com\",\"phone\":\"3112528\",\"address\":\"Megacenter, Av. El Trompillo 2, Rene Moreno y, San\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"356582025\",\"primary_external_code\":\"85\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"134\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Club de Tenis La Paz\",\"trade_name\":\"Club de Tenis La Paz\",\"displayName\":\"598 - Club de Tenis La Paz\",\"email\":\"gerente@ctlp.bo\",\"phone\":\"2-2792590\",\"address\":\"Av. Arequipa No. 8450 La Florida, La Paz\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"10068212025\",\"primary_external_code\":\"598\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":12,\"username\":\"tmercado@emba.com\",\"email\":\"tmercado@emba.com\",\"fullName\":\"Teddy Alberto Mercado Carrion\",\"shortName\":\"tmercado\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"135\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"CMI BOLIVIA S.R.L.\",\"trade_name\":\"CMI BOLIVIA S.R.L.\",\"displayName\":\"86 - CMI BOLIVIA S.R.L.\",\"email\":\"scardenas@caribbeancinemas.com\",\"phone\":\"3471799\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"356578027\",\"primary_external_code\":\"86\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"136\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"CNHI INDUSTRIAL CAPITAL SOUTH AMERICA SPA\",\"trade_name\":\"CNHI INDUSTRIAL CAPITAL SOUTH AMERICA SPA\",\"displayName\":\"880 - CNHI INDUSTRIAL CAPITAL SOUTH AMERICA SPA\",\"email\":\"mariavictoria.pintos@cnhind.com\",\"phone\":\"\",\"address\":\"\\u00c1valos 2829 Edif. 1 Piso 4\\u00b0, Complejo Urbana\",\"city\":\"\",\"state\":\"\",\"country\":\"Chile\",\"postal_code\":\"\",\"nit\":\"880\",\"primary_external_code\":\"880\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":12,\"username\":\"tmercado@emba.com\",\"email\":\"tmercado@emba.com\",\"fullName\":\"Teddy Alberto Mercado Carrion\",\"shortName\":\"tmercado\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"137\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"COFACE\",\"trade_name\":\"COFACE\",\"displayName\":\"408 - COFACE\",\"email\":\"daniel.cayetano@coface.com\",\"phone\":\"+51 (1) 616 3434\",\"address\":\"CALLE LAS BEGONIAS 441, PISO 9 , SAN ISIDRO, LIMA\",\"city\":\"\",\"state\":\"\",\"country\":\"Per\\u00fa\",\"postal_code\":\"\",\"nit\":\"408\",\"primary_external_code\":\"408\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"138\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Colegio Cardenal Cushing\",\"trade_name\":\"Colegio Cardenal Cushing\",\"displayName\":\"232 - Colegio Cardenal Cushing\",\"email\":\"dccushing1969@gmail.com\",\"phone\":\"3323474\",\"address\":\"Lemoine No. 442\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1028513027\",\"primary_external_code\":\"232\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"139\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Comercial Agroindustrial de Bolivia CABSA S.A.\",\"trade_name\":\"Comercial Agroindustrial de Bolivia CABSA S.A.\",\"displayName\":\"539 - Comercial Agroindustrial de Bolivia CABSA S.A.\",\"email\":\"angidtorrez@gmail.com\",\"phone\":\"75851771\",\"address\":\"Avenida Prolongaci\\u00f3n Beni No. 214, Santa Cruz\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"256094029\",\"primary_external_code\":\"539\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"141\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"COMPA\\u00d1IA DE INGENIERIA Y ARQUITECTURA BOLIVIA LIMITADA -CIABOL\",\"trade_name\":\"COMPA\\u00d1IA DE INGENIERIA Y ARQUITECTURA BOLIVIA LIMITADA -CIABOL\",\"displayName\":\"564 - COMPA\\u00d1IA DE INGENIERIA Y ARQUITECTURA BOLIVIA LIMITADA -CIABOL\",\"email\":\"central@ciabol.com.bo\",\"phone\":\"6635271\",\"address\":\"Av. Julio Delio Echazu Nro. 100, Tarija,\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1011411021\",\"primary_external_code\":\"564\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"142\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"COMPA\\u00d1IA DE SEGUROS Y REASEGUROS FORTALEZA S.A\",\"trade_name\":\"COMPA\\u00d1IA DE SEGUROS Y REASEGUROS FORTALEZA S.A\",\"displayName\":\"318 - COMPA\\u00d1IA DE SEGUROS Y REASEGUROS FORTALEZA S.A\",\"email\":\"ltrigo@fortaleza.com.bo\",\"phone\":\"2434885\",\"address\":\"Av. 16 de julio n\\u00ba 1440 Edi Hermann Planta Baja\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1028175023\",\"primary_external_code\":\"318\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"143\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"COMPA\\u00d1IA INTERNACIONAL DE SERVICIOS Y REPRESENTACIONES LTDA\",\"trade_name\":\"COMPA\\u00d1IA INTERNACIONAL DE SERVICIOS Y REPRESENTACIONES LTDA\",\"displayName\":\"175 - COMPA\\u00d1IA INTERNACIONAL DE SERVICIOS Y REPRESENTACIONES LTDA\",\"email\":\"finanzas@coinser.com\",\"phone\":\"2750487\",\"address\":\"Calle 6 de Obrajes No. 610 Zona: Obrajes\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1016779029\",\"primary_external_code\":\"175\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"144\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"COMPASS MINERALS\",\"trade_name\":\"COMPASS MINERALS\",\"displayName\":\"298 - COMPASS MINERALS\",\"email\":\"leandro.menze@compassminerals.com.br\",\"phone\":\"+55 11 3016-9552\",\"address\":\"9900 West 109th St., Suite 100 Overland Park, KS 6\",\"city\":\"\",\"state\":\"\",\"country\":\"Brasil\",\"postal_code\":\"\",\"nit\":\"298\",\"primary_external_code\":\"298\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"145\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"CONDOMINIO ZERO\",\"trade_name\":\"CONDOMINIO ZERO\",\"displayName\":\"87 - CONDOMINIO ZERO\",\"email\":\"admcondominiozero@hotmail.com\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"87\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"146\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"CONECTA REDES Y SERVICIOS SA\",\"trade_name\":\"CONECTA REDES Y SERVICIOS SA\",\"displayName\":\"488 - CONECTA REDES Y SERVICIOS SA\",\"email\":\"kleanos@conecta.com.bo\",\"phone\":\"69214931\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"136995022\",\"primary_external_code\":\"488\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"147\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"CONESA KIEFFER \\u0026 ASOCIADOS CORREDORES DE REASEGURO S.A.\",\"trade_name\":\"CONESA KIEFFER \\u0026 ASOCIADOS CORREDORES DE REASEGURO S.A.\",\"displayName\":\"88 - CONESA KIEFFER \\u0026 ASOCIADOS CORREDORES DE REASEGURO S.A.\",\"email\":\"cquispe@cka.bo\",\"phone\":\"2773444\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1000871023\",\"primary_external_code\":\"88\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"148\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"CONFITERIA ELI\\u2019S LTDA\",\"trade_name\":\"CONFITERIA ELI\\u2019S LTDA\",\"displayName\":\"246 - CONFITERIA ELI\\u2019S LTDA\",\"email\":\"n_inquillo@pizzaelis.com\",\"phone\":\"2310506\",\"address\":\"AV. 16 de Julio N\\u00b0 1495 Edificio Monje Campero\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1020413025\",\"primary_external_code\":\"246\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":15,\"username\":\"nezegarra@emba.com\",\"email\":\"nezegarra@emba.com\",\"fullName\":\"Natalio Eduardo Zegarra Ribera\",\"shortName\":\"nzegarra\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"149\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Constellation Software\",\"trade_name\":\"Constellation Software\",\"displayName\":\"827 - Constellation Software\",\"email\":\"mdennison@csisoftware.com\",\"phone\":\"647-241-8520\",\"address\":\"#1200 - 20 Adelaide Street East Toronto, ON M5C 2T\",\"city\":\"\",\"state\":\"\",\"country\":\"Canad\\u00e1\",\"postal_code\":\"\",\"nit\":\"827\",\"primary_external_code\":\"827\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":6,\"username\":\"darredondo@emba.com.bo\",\"email\":\"nicoln042001@gmail.com\",\"fullName\":\"Daniel Marcelo Arredondo Zelada\",\"shortName\":\"darredon\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-03 11:43:07\",\"daysAllow\":302}},{\"id\":\"150\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"CONSTRUCCIONES Y SERVICIOS S\\u0026Q SRL\",\"trade_name\":\"CONSTRUCCIONES Y SERVICIOS S\\u0026Q SRL\",\"displayName\":\"150 - CONSTRUCCIONES Y SERVICIOS S\\u0026Q SRL\",\"email\":\"mario.suarezq@gmail.com\",\"phone\":\"2770251\",\"address\":\"Av. Sanchez Lima N\\u00b0 2512 Edificio: Edificio Meliss\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"203446022\",\"primary_external_code\":\"150\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"151\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"CONSTRUCOES E COMERCIO CAMARGO CORREA S.A.\",\"trade_name\":\"CONSTRUCOES E COMERCIO CAMARGO CORREA S.A.\",\"displayName\":\"222 - CONSTRUCOES E COMERCIO CAMARGO CORREA S.A.\",\"email\":\"eduardo@paesbarros.pe\",\"phone\":\"2750148\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Per\\u00fa\",\"postal_code\":\"\",\"nit\":\"1001443027\",\"primary_external_code\":\"222\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"152\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"CONSTRUCTORA COMERCIAL ARAUCARIA S.R.L.\",\"trade_name\":\"CONSTRUCTORA COMERCIAL ARAUCARIA S.R.L.\",\"displayName\":\"302 - CONSTRUCTORA COMERCIAL ARAUCARIA S.R.L.\",\"email\":\"gerencia@gcs-ea.com\",\"phone\":\"72220212\",\"address\":\"Edificio Altos del Parque ubicado en Calle David A\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"183614026\",\"primary_external_code\":\"302\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":20,\"username\":\"jpzegada@emba.com\",\"email\":\"jpzegada@emba.com\",\"fullName\":\"Juan Pablo Zegada\",\"shortName\":\"jzegada\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"153\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Constructora e Inmobiliaria Wework Srl\",\"trade_name\":\"Constructora e Inmobiliaria Wework Srl\",\"displayName\":\"602 - Constructora e Inmobiliaria Wework Srl\",\"email\":\"svasquez@metabol.com\",\"phone\":\"2791554\",\"address\":\"AVENIDA BALLIVIAN N\\u00b0 50 ZONA: CALACOTO\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"320378020\",\"primary_external_code\":\"602\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"154\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"CONSTRUCTORA ORMACHEA SRL\",\"trade_name\":\"CONSTRUCTORA ORMACHEA SRL\",\"displayName\":\"178 - CONSTRUCTORA ORMACHEA SRL\",\"email\":\"jop53@hotmail.com\",\"phone\":\"2809165\",\"address\":\"Calle Federico Zuazo N\\u00b0 1885 Edificio: El Alcazar\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1000933025\",\"primary_external_code\":\"178\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"155\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"CONSTRUCTORA SAN JOSE S.A. - SUCURSAL BOLIVIA\",\"trade_name\":\"CONSTRUCTORA SAN JOSE S.A. - SUCURSAL BOLIVIA\",\"displayName\":\"89 - CONSTRUCTORA SAN JOSE S.A. - SUCURSAL BOLIVIA\",\"email\":\"jorge.gallego@gruposanjose.biz\",\"phone\":\"2441600\",\"address\":\"Capital Ravelo N\\u00b0 2366 Zona: Sopocachi La Paz- Bol\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"314056026\",\"primary_external_code\":\"89\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"156\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Consulado General de Austria - La Paz\",\"trade_name\":\"Consulado General de Austria - La Paz\",\"displayName\":\"422 - Consulado General de Austria - La Paz\",\"email\":\"lapaz1@austroko-bo.net\",\"phone\":\"(+591) 2 244 20 94\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"422\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"157\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Consultores de Seguros S.A.\",\"trade_name\":\"Consultores de Seguros S.A.\",\"displayName\":\"424 - Consultores de Seguros S.A.\",\"email\":\"diegosuxo@consegsa.com\",\"phone\":\"69831012\",\"address\":\"Av. S\\u00e1nchez Lima #2231, entre calles F. Guachalla\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1020669027\",\"primary_external_code\":\"424\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"158\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"CONTACTMEDIA COMUNICACIONES S.A.\",\"trade_name\":\"CONTACTMEDIA COMUNICACIONES S.A.\",\"displayName\":\"394 - CONTACTMEDIA COMUNICACIONES S.A.\",\"email\":\"mrivero78@gmail.com\",\"phone\":\"\",\"address\":\"Av. Barrientos\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"400934026\",\"primary_external_code\":\"394\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"159\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Convington \\u0026 Burling LLP\",\"trade_name\":\"Convington \\u0026 Burling LLP\",\"displayName\":\"805 - Convington \\u0026 Burling LLP\",\"email\":\"rdirkzwager@cov.com\",\"phone\":\"+44 20 7067 2314\",\"address\":\"265 Strand, London WC2R 1BH\",\"city\":\"\",\"state\":\"\",\"country\":\"Reino Unido\",\"postal_code\":\"\",\"nit\":\"805\",\"primary_external_code\":\"805\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":6,\"username\":\"darredondo@emba.com.bo\",\"email\":\"nicoln042001@gmail.com\",\"fullName\":\"Daniel Marcelo Arredondo Zelada\",\"shortName\":\"darredon\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-03 11:43:07\",\"daysAllow\":302}},{\"id\":\"160\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"COOPERATIVA DE AHORRO Y CREDITO ABIERTA \\u201cJESUS NAZARENO\\u201d RL.\",\"trade_name\":\"COOPERATIVA DE AHORRO Y CREDITO ABIERTA \\u201cJESUS NAZARENO\\u201d RL.\",\"displayName\":\"416 - COOPERATIVA DE AHORRO Y CREDITO ABIERTA \\u201cJESUS NAZARENO\\u201d RL.\",\"email\":\"eramos@jesus-nazareno.coop\",\"phone\":\"3638101\",\"address\":\"Calle La Paz N\\u00b0270 Santa Cruz de la Sierra\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1015477021\",\"primary_external_code\":\"416\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":12,\"username\":\"tmercado@emba.com\",\"email\":\"tmercado@emba.com\",\"fullName\":\"Teddy Alberto Mercado Carrion\",\"shortName\":\"tmercado\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"161\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"COOPERATIVA DE AHORRO Y CREDITO ABIERTA \\u201cSAN MARTIN DE PORRES\\u201d R.L.\",\"trade_name\":\"COOPERATIVA DE AHORRO Y CREDITO ABIERTA \\u201cSAN MARTIN DE PORRES\\u201d R.L.\",\"displayName\":\"535 - COOPERATIVA DE AHORRO Y CREDITO ABIERTA \\u201cSAN MARTIN DE PORRES\\u201d R.L.\",\"email\":\"rroca@cosmart.coop\",\"phone\":\"72117770\",\"address\":\"Avenida 26 de Febrero 797 esquina Avenida Landivar\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1028469022\",\"primary_external_code\":\"535\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":12,\"username\":\"tmercado@emba.com\",\"email\":\"tmercado@emba.com\",\"fullName\":\"Teddy Alberto Mercado Carrion\",\"shortName\":\"tmercado\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"162\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"COOPERATIVA DE SERVICIOS DE VIAJES LAURETANA R L\",\"trade_name\":\"COOPERATIVA DE SERVICIOS DE VIAJES LAURETANA R L\",\"displayName\":\"360 - COOPERATIVA DE SERVICIOS DE VIAJES LAURETANA R L\",\"email\":\"lauretana14@gmail.com\",\"phone\":\"70342318\",\"address\":\"CALLE 24 DE SEPTIEMBRE NUMERO 689\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1020771024\",\"primary_external_code\":\"360\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"163\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Cooperativa Educacional Santa Cruz R.L.\",\"trade_name\":\"Cooperativa Educacional Santa Cruz R.L.\",\"displayName\":\"498 - Cooperativa Educacional Santa Cruz R.L.\",\"email\":\"jdasilva@sccs.edu.bo\",\"phone\":\"3530808\",\"address\":\"Calle Barcelona N\\u00famero 1 Las Palmas\",\"city\":\"SAnta CRuz\",\"state\":\"Santa Cruz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"1028279021\",\"primary_external_code\":\"498\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":8,\"username\":\"lmorenog@emba.com\",\"email\":\"lmorenog@emba.com\",\"fullName\":\"Luis Moreno Gutierrez\",\"shortName\":\"lmoreno\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"164\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"COPAGAZ\",\"trade_name\":\"COPAGAZ\",\"displayName\":\"809 - COPAGAZ\",\"email\":\"trivera@vradv.com.br\",\"phone\":\"11 2163.3924\",\"address\":\"Rua Guararapes, 1.855 - 1\\u00ba andar - Brooklin Paulis\",\"city\":\"\",\"state\":\"\",\"country\":\"Brasil\",\"postal_code\":\"\",\"nit\":\"809\",\"primary_external_code\":\"809\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"165\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"COPAGAZ DISTRIBUIDORA DE GAS S.A.\",\"trade_name\":\"COPAGAZ DISTRIBUIDORA DE GAS S.A.\",\"displayName\":\"322 - COPAGAZ DISTRIBUIDORA DE GAS S.A.\",\"email\":\"cimara@copagaz.com.br\",\"phone\":\"11 2163.3924\",\"address\":\"Rua Guararapes1855 12\\u00ba Piso Brooklin Novo, CP 0456\",\"city\":\"\",\"state\":\"\",\"country\":\"Brasil\",\"postal_code\":\"\",\"nit\":\"99011\",\"primary_external_code\":\"322\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null}]}}}\n","time":"2025-07-30T10:49:06-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: POST https://apinewtm.com/graphql/\nHeaders: map[Accept:[application/json] Authorization:[Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJpYXQiOjE3NTM4ODY1MjIsImV4cCI6MTc1Mzk2NjUyMiwiaWQiOjEwNSwidXNlcm5hbWUiOiJpbnRlZ3JhY2lvbmVzQGVtYmEuYm8iLCJhcGlrZXkiOiI5Yzg0ZjYzZTRlMzk2ZGZmOWU5ZjU3NDI5OGRmZWUzOSIsImFwaWtleUNyZWF0ZWRBdCI6eyJkYXRlIjoiMjAyNS0wNy0xNyAxMDo0MToyNS4wMDAwMDAiLCJ0aW1lem9uZV90eXBlIjozLCJ0aW1lem9uZSI6IkFtZXJpY2EvQm9nb3RhIn0sImZ1bGxOYW1lIjoiSW50ZWdyYWNpw7NuIEVNQkEiLCJlbWFpbCI6ImludGVncmFjaW9uZXNAZW1iYS5ibyIsImxvY2FsZSI6ImVzIiwiZGF5c0FsbG93ZWQiOjMwLCJpc0Nvb3JkaW5hdG9yIjpmYWxzZSwidHlwZVRhc2tWaWV3IjoibGlzdHMiLCJkYXlzYWxsb3ciOjMwLCJyb2xlcyI6e30sInNob3J0X25hbWUiOiJJTi5FTUJBIiwicGVybWlzc2lvbnMiOlsic3luY19leHRlcm5hbF9idXNpbmVzcyIsInN5bmNfZXh0ZXJuYWxfY3VzdG9tZXIiLCJzeW5jX2V4dGVybmFsX21pbGVzdG9uZSIsImFic2VuY2VfYXBwcm92ZSIsImFic2VuY2VfY3JlYXRlX2FsbCIsImFic2VuY2VfY3JlYXRlX293biIsImFic2VuY2VfbWVudSIsImFjY291bnRpbmdfYnVzaW5lc3NfbGlzdCIsImFjY291bnRpbmdfY3VzdG9tZXJfbGlzdCIsImJpbGxpbmdfcGVyaW9kX2RlbGV0ZV9hbGwiLCJiaWxsaW5nX3BlcmlvZF9lZGl0X2FsbCIsImJpbGxpbmdfcGVyaW9kX2xpc3QiLCJiaWxsaW5nX3BlcmlvZF9yZWFjdGl2YXRlIiwiYm9hcmRfcmF0ZV91c2VyX2NyZWF0ZSIsImJvYXJkX3JhdGVfdXNlcl9lZGl0IiwiYnVzaW5lc3NfY3JlYXRlIiwiYnVzaW5lc3NfZGVzY3JpcHRpb25fc2F2ZSIsImJ1c2luZXNzX2VkaXQiLCJidXNpbmVzc19saXN0X2FsbCIsImJ1c2luZXNzX21lbnUiLCJidXNpbmVzc19yZXNwb25zaWJsZV9saXN0X2FsbCIsImJ1c2luZXNzX3NlZV9iaWxsaW5nX2luZm8iLCJidXNpbmVzc2VzX2FsbG93ZWRfdXNlcl9jcmVhdGUiLCJidXNpbmVzc2VzX2FsbG93ZWRfdXNlcl9kZWxldGUiLCJjb21wYW55X2Rpc2FibGUiLCJjb21wYW55X2VkaXQiLCJjb21wYW55X2xpc3QiLCJjb25jZXB0X2NyZWF0ZSIsImNvbmNlcHRfZWRpdCIsImNvbmNlcHRfbWVudSIsImNvbnRhY3RfY3JlYXRlIiwiY29udGFjdF9jcmVhdGVfZmFzdCIsImNvbnRhY3RfZWRpdCIsImNvbnRhY3RfbGlzdCIsImNvbnRhY3RfbWVudSIsImN1c3RvbWVyX2NyZWF0ZSIsImN1c3RvbWVyX2NyZWF0ZV9mYXN0IiwiY3VzdG9tZXJfZWRpdCIsImN1c3RvbWVyX2xpc3QiLCJjdXN0b21lcl9saXN0X2FsbCIsImN1c3RvbWVyX21lbnUiLCJleHBlbnNlX2NyZWF0ZV9hbGwiLCJleHBlbnNlX2RlbGV0ZV9hbGwiLCJleHBlbnNlX2R1cGxpY2F0ZSIsImV4cGVuc2VfZWRpdF9hbGwiLCJleHBlbnNlX2xpc3RfYWxsIiwiZXhwZW5zZV9tZW51IiwiZXhwZW5zZV9yZWplY3RfYWxsIiwiZmFiX3Nob3ciLCJmaWxlX21lbnUiLCJnZW9yZWZlcmVuY2VfY3JlYXRlIiwiZ2VvcmVmZXJlbmNlX2VkaXQiLCJnZW9yZWZlcmVuY2VfbWVudSIsImdvX3RvX2xlZ2FjeSIsImluZGljYXRvcnNfbWVudSIsImludm9pY2VfY3JlYXRlIiwiaW52b2ljZV9kZXRhaWxfbGlzdF9hbGwiLCJpbnZvaWNlX2ZpeF90aW1lc19jdXN0b21fdmFsdWUiLCJpbnZvaWNlX2xpc3RfYWxsIiwiaW52b2ljZWFkdmFuY2VfY3JlYXRlIiwiaW52b2ljZWFkdmFuY2VfbGlzdCIsImludm9pY2VhZHZhbmNlX3VwZGF0ZSIsImxvZ19saXN0X2FsbCIsImxvZ19saXN0X293biIsIm1pbGVzdG9uZV9jcmVhdGUiLCJtaWxlc3RvbmVfZGVsZXRlIiwibWlsZXN0b25lX2VkaXQiLCJtb250aGx5X2ZpeF9yYXRlX2dyb3VwX2NyZWF0ZSIsIm1vbnRobHlfZml4X3JhdGVfZ3JvdXBfZWRpdCIsIm1vbnRobHlfdXNlcl9jb3N0X2NyZWF0ZSIsIm1vbnRobHlfdXNlcl9jb3N0X2VkaXQiLCJwYXltZW50X2NyZWF0ZSIsInBheW1lbnRfZGVsZXRlIiwicGF5bWVudF9lZGl0IiwicGF5bWVudF9tZW51IiwicHJvY2VkdXJlX21lbnUiLCJwcm9jZWR1cmVfcmF0ZV9jcmVhdGUiLCJwcm9jZWR1cmVfcmF0ZV9kZXRhaWxfY3JlYXRlIiwicHJvY2VkdXJlX3JhdGVfZGV0YWlsX2VkaXQiLCJwcm9jZWR1cmVfcmF0ZV9kZXRhaWxfbGlzdCIsInByb2NlZHVyZV9yYXRlX2VkaXQiLCJwcm9jZWR1cmVfcmF0ZV9saXN0IiwicHJvY2VkdXJlX3JhdGVfbWVudSIsInByb2NlZHVyZV90cmFuc2FjdGlvbl9saXN0IiwicHJvamVjdF9hcmNoaXZlX2Nhc2NhZGVfYWxsIiwicHJvamVjdF9kZWxldGVfY2FzY2FkZV9hbGwiLCJwcm9qZWN0X3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInJhdGVfYnVzaW5lc3NfY2F0ZWdvcnlfY3JlYXRlIiwicmF0ZV9idXNpbmVzc19jYXRlZ29yeV9lZGl0IiwicmF0ZV9idXNpbmVzc191c2VyX2NyZWF0ZSIsInJhdGVfYnVzaW5lc3NfdXNlcl9lZGl0IiwicmF0ZV9leGNoYW5nZV9jcmVhdGUiLCJyYXRlX2V4Y2hhbmdlX2VkaXQiLCJyYXRlX2V4Y2hhbmdlX2xpc3QiLCJyYXRlX3VzZXJfY3JlYXRlIiwicmF0ZV91c2VyX2VkaXQiLCJyb2xlX2NyZWF0ZSIsInJvbGVfZWRpdF9hbGwiLCJyb2xlX2xpc3RfYWxsIiwic2VjdGlvbl9hcmNoaXZlX2Nhc2NhZGVfYWxsIiwic2VjdGlvbl9kZWxldGVfY2FzY2FkZV9hbGwiLCJzZWN0aW9uX3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInNlZV9tZW51X3JhdGVfZXhjaGFuZ2UiLCJzZXJpZV9jcmVhdGUiLCJzZXJpZV9lZGl0Iiwic2VyaWVfbWVudSIsInNldHRpbmdzX3ZpZXciLCJzdXBwbGllcl9jcmVhdGUiLCJ0YXNrX2FkZF90aW1lX2FsbCIsInRhc2tfYWRkX3RpbWVfb3duIiwidGFza19hc3NpZ25lZF91c2VyX2VtYWlsIiwidGFza19jbG9zZWRfZW1haWwiLCJ0YXNrX2NyZWF0ZV9hbGwiLCJ0YXNrX2NyZWF0ZV9jb21tZW50X2VtYWlsIiwidGFza19jcmVhdGVfc2VsZiIsInRhc2tfY3JlYXRlX3RlYW0iLCJ0YXNrX2RlbGV0ZV9hbGwiLCJ0YXNrX2RlbGV0ZV9vd24iLCJ0YXNrX2RlbGV0ZV90ZWFtIiwidGFza19lZGl0X2FsbCIsInRhc2tfZWRpdF9kdWVfZGF0ZSIsInRhc2tfZWRpdF9vd24iLCJ0YXNrX2VkaXRfdGVhbSIsInRhc2tfbGlzdF9hbGwiLCJ0YXNrX2xpc3Rfb3duIiwidGFza19saXN0X3RlYW0iLCJ0YXNrX21hc3NpdmVpbXBvcnQiLCJ0YXNrX21lbnUiLCJ0YXNrX21pZ3JhdGlvbiIsInRhc2tfc2V0X2FkZGl0aW9uYWxfYXNzaWduZWVzIiwidGFza19zZXRfZHVlX2RhdGUiLCJ0YXNrX3NldF9lc3RpbWF0ZWRfdGltZSIsInRhc2tfc2V0X3ByaW9yaXR5IiwidGFza19zZXRfcHJvZ3Jlc3MiLCJ0YXhfZWRpdF9hbGwiLCJ0YXhfbGlzdF9hbGwiLCJ0ZWFtX2FyY2hpdmVfY2FzY2FkZV9hbGwiLCJ0ZWFtX2NyZWF0ZV9hbGwiLCJ0ZWFtX2RlbGV0ZV9hbGwiLCJ0ZWFtX2VkaXRfYWxsIiwidGVhbV9saXN0X2FsbCIsInRlYW1fbGlzdF9vd24iLCJ0ZWFtX3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInRpbWVfYWNjZXB0X2FsbCIsInRpbWVfYWNjZXB0X293biIsInRpbWVfYXBwcm92ZV9hbGwiLCJ0aW1lX2FwcHJvdmVfb3duIiwidGltZV9jcmVhdGVfYWxsIiwidGltZV9jcmVhdGVfb3duIiwidGltZV9kZWxldGVfYWxsIiwidGltZV9kZWxldGVfb3duIiwidGltZV9kZW55X2FsbCIsInRpbWVfZGVueV9vd24iLCJ0aW1lX2Rvd25sb2FkZmlsZV9hbGwiLCJ0aW1lX2Rvd25sb2FkZmlsZV9vd24iLCJ0aW1lX2VkaXRfYWxsIiwidGltZV9lZGl0X2Nsb3NlX3BlcmlvZF9hbGwiLCJ0aW1lX2VkaXRfY2xvc2VfcGVyaW9kX293biIsInRpbWVfZWRpdF9vd24iLCJ0aW1lX2xpc3RfYWxsIiwidGltZV9saXN0X293biIsInRpbWVfbWVudSIsInRpbWVfbWludXRlc196ZXJvIiwidGltZV9yZWplY3RfYWxsIiwidGltZV9yZXN0cmljdGVkX3BlcmlvZF9jcmVhdGUiLCJ0aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX2VkaXQiLCJ0aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX21lbnUiLCJ0aW1lX3NoYXJlX2FsbCIsInRpbWVfc2hhcmVfb3duIiwidGltZV9zaG93X2NhbGVuZGFyX3ZpZXciLCJ0aW1lX3VwbG9hZGZpbGVfYWxsIiwidGltZV91cGxvYWRmaWxlX293biIsInRyYW5zYWN0aW9uX2FkYXB0ZXJfbGlzdCIsInRyYW5zYWN0aW9uX2xpc3QiLCJ1c2VyX2Fic2VuY2VzX3Nob3ciLCJ1c2VyX2Nvc3RfY3JlYXRlIiwidXNlcl9jb3N0X2VkaXQiLCJ1c2VyX2Nvc3RfbGlzdCIsInVzZXJfY29zdF9tZW51IiwidXNlcl9jb3N0X3JhdGVfY3JlYXRlIiwidXNlcl9jb3N0X3JhdGVfZWRpdCIsInVzZXJfY29zdF9yYXRlX2xpc3QiLCJ1c2VyX2NyZWF0ZSIsInVzZXJfZGlzYWJsZSIsInVzZXJfZWRpdCIsInVzZXJfZWRpdF9kYXlzX2FsbG93X29ubHkiLCJ1c2VyX2dyb3VwX3JvbGVfY3JlYXRlX2FsbCIsInVzZXJfZ3JvdXBfcm9sZV9kZWxldGVfYWxsIiwidXNlcl9ncm91cF9yb2xlX2VkaXRfYWxsIiwidXNlcl9ncm91cF9yb2xlc19saXN0X2FsbCIsInVzZXJfbGlzdCIsInVzZXJfbGlzdF9hbGwiLCJ1c2VyX21hc3NfYWN0aXZhdGlvbiIsInVzZXJfcHJvZHVjdGl2aXR5X2NyZWF0ZSIsInVzZXJfcHJvZHVjdGl2aXR5X2Rpc2FibGUiLCJ1c2VyX3Byb2R1Y3Rpdml0eV9lZGl0IiwidXNlcl9wcm9kdWN0aXZpdHlfZW5hYmxlIiwidXNlcl9wcm9kdWN0aXZpdHlfbWVudSIsInVzZXJfdGltZV9yZXN0cmljdGVkX3BlcmlvZF9jcmVhdGUiLCJ1c2VyX3RpbWVfcmVzdHJpY3RlZF9wZXJpb2RfZGVsZXRlIiwidXNlcl90aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX2VkaXQiLCJ1c2VyZ3JvdXBfY3JlYXRlX2FsbCIsInVzZXJncm91cF9kZWxldGVfYWxsIiwidXNlcmdyb3VwX2VkaXRfYWxsIiwidXNlcmdyb3VwX2xpc3RfYWxsIiwidXNlcmdyb3VwX21lbnUiLCJ1c2Vyc191c2VyX2dyb3VwX2NyZWF0ZV9hbGwiLCJ1c2Vyc191c2VyX2dyb3VwX2RlbGV0ZV9hbGwiLCJ1c2Vyc191c2VyX2dyb3VwX2VkaXRfYWxsIiwidXNlcnNfdXNlcl9ncm91cHNfbGlzdF9hbGwiXSwiaG9tZXBhZ2UiOm51bGx9.kShN7NXGoaz1oFro-yYNyIpIEcnNpo1GiB8SFGKFUJtDQoqyp1I1w-CMA8Kta3vWXnUZwx-y2z1yVSJaMpZbqQgKFlakpcf6351bZSL8IAUPExSfLz0HYYCWFx-Usx94BBTqosKsRhnT8PkPN3dGxs8-XTIEDi9gN-Pk9OSHmM5mPkTsaaxTY40M-F7Y0Up2y6s_lwFaX13CmstiYZSXzyKL9SUBBx-E6-8qQAfuKPIoZ_50jSGPW98-IkAcWwqO6yGf-M07dSfFZ2vLfwc3ulHm2p8jVSmRxJ_O43BEWQD5cvqGbVIvSMXkS4y98DL4Vencjjg27iu3CUJsDNBBTg] Content-Type:[application/json] Origin:[https://azure-function.timemanagerweb.com] Tenant-Name:[pruebas-dos] User-Agent:[Mozilla/5.0 (X11; Linux x86_64)...]]\nBody: map[query:query ($limit: Int, $orderBy: String, $orderDesc: Boolean, $page: Int) {\n CustomersMeta(limit: $limit, orderBy: $orderBy, orderDesc: $orderDesc, page: $page) {\n meta {\n hasNextPage\n hasPreviousPage\n limit\n next\n page\n pages\n previous\n total\n }\n rows {\n id\n code\n number\n color\n name\n trade_name\n displayName\n email\n phone\n address\n city\n state\n country\n postal_code\n nit\n primary_external_code\n status\n statusMarking\n billingLimitDate\n recepctionLimitDate\n dmsIntegration\n cmrRequiredDocuments\n cmrPayTms\n enabled\n created_at\n updated_at\n valueTax\n withIva\n paymentDays\n national\n enterpriseGroup\n responsiblePartner {\n id\n username\n email\n fullName\n shortName\n locale\n userType\n superAdmin\n enabled\n created_at\n updated_at\n daysAllow\n }\n }\n }\n} variables:map[limit:100 orderBy:orderBy orderDesc:true page:3]]\n","time":"2025-07-30T10:49:06-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: POST https://apinewtm.com/graphql/ | Status: 200 | Duration: 529.1641ms\nHeaders: map[Access-Control-Allow-Credentials:[true] Access-Control-Allow-Origin:[https://azure-function.timemanagerweb.com] Access-Control-Expose-Headers:[link, access-control-allow-credentials] Cache-Control:[no-cache, private] Content-Type:[application/json] Date:[Wed, 30 Jul 2025 14:49:07 GMT] Server:[] Vary:[Authorization]]\nBody: {\"data\":{\"CustomersMeta\":{\"meta\":{\"hasNextPage\":true,\"hasPreviousPage\":true,\"limit\":100,\"next\":4,\"page\":3,\"pages\":10,\"previous\":2,\"total\":919},\"rows\":[{\"id\":\"166\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Copelme SA\",\"trade_name\":\"Copelme SA\",\"displayName\":\"404 - Copelme SA\",\"email\":\"dargandona@copelme.com\",\"phone\":\"4720600 Int. 01\",\"address\":\"Av. Rafael Mendoza S\\/N Zona Chacacollo Km 4 1\\/2 a\",\"city\":\"Cochabamba\",\"state\":\"Cochabamba\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"1023095027\",\"primary_external_code\":\"404\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":8,\"username\":\"lmorenog@emba.com\",\"email\":\"lmorenog@emba.com\",\"fullName\":\"Luis Moreno Gutierrez\",\"shortName\":\"lmoreno\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"167\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"CORPCREDIT SOLUCIONES TECONOLOGICAS S.A\",\"trade_name\":\"CORPCREDIT SOLUCIONES TECONOLOGICAS S.A\",\"displayName\":\"475 - CORPCREDIT SOLUCIONES TECONOLOGICAS S.A\",\"email\":\"sebastian.luna@beclevercorp.com\",\"phone\":\"54114700000000000\",\"address\":\"Calle Cochabamba y Saavedra Torres CAINCO piso15\",\"city\":\"Santa Cruz\",\"state\":\"Santa Cruz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"422598020\",\"primary_external_code\":\"475\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":13,\"username\":\"cdelgado@emba.com\",\"email\":\"cdelgado@emba.com\",\"fullName\":\"Cristhian Delgado Ramirez\",\"shortName\":\"cdelgado\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"168\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"CORPORACION ANDINA DE FOMENTO\",\"trade_name\":\"CORPORACION ANDINA DE FOMENTO\",\"displayName\":\"90 - CORPORACION ANDINA DE FOMENTO\",\"email\":\"phermosa@caf.com\",\"phone\":\"2648120\",\"address\":\"Av. Arce 2915, La Paz\",\"city\":\"La PAz\",\"state\":\"La Paz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"000-9900100\",\"primary_external_code\":\"90\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"169\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"The Church of Jesus Christ of Latter-day Saints (a Utah corporation sole)\",\"trade_name\":\"The Church of Jesus Christ of Latter-day Saints (a Utah corporation sole)\",\"displayName\":\"218 - The Church of Jesus Christ of Latter-day Saints (a Utah corporation sole)\",\"email\":\"MoscosoKA@ldschurch.org\",\"phone\":\"0051-1-3177092\",\"address\":\"SAnta Cruz de la Sierra\",\"city\":\"Santa Cruz\",\"state\":\"Santa Cruz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"00 99001\",\"primary_external_code\":\"218\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":14.94,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"170\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"CORSAN CORVIAM CONSTRUCCION S.A.\",\"trade_name\":\"CORSAN CORVIAM CONSTRUCCION S.A.\",\"displayName\":\"221 - CORSAN CORVIAM CONSTRUCCION S.A.\",\"email\":\"efernandez@isoluxcorsan.com\",\"phone\":\"\",\"address\":\"nuflo De Chavez N 470 Zona: Central\",\"city\":\"\",\"state\":\"\",\"country\":\"Espa\\u00f1a\",\"postal_code\":\"\",\"nit\":\"99011\",\"primary_external_code\":\"221\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"171\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"COSIN LTDA\",\"trade_name\":\"COSIN LTDA\",\"displayName\":\"512 - COSIN LTDA\",\"email\":\"wilma.cayoja@grupocosin.com\",\"phone\":\"2355311\",\"address\":\"Av. 20 de Octubre Edificio Torre Azul\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"100681924\",\"primary_external_code\":\"512\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"172\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"COSIN SRL\",\"trade_name\":\"COSIN SRL\",\"displayName\":\"184 - COSIN SRL\",\"email\":\"info@grupocosin.com\",\"phone\":\"2434242\",\"address\":\"Ed.Cosmos Piso 4To, La Paz, Bolivia\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1006819024\",\"primary_external_code\":\"184\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"173\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"COSMETICA NACIONAL\",\"trade_name\":\"COSMETICA NACIONAL\",\"displayName\":\"683 - COSMETICA NACIONAL\",\"email\":\"usuario@ejemplo.com\",\"phone\":\"(56-2) 24387900\",\"address\":\"Calle vargas Fontecilla 3822 Quinta normal Santiag\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"683\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"174\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"COTINAVEC BOL, MONTAJES Y CONSTRUCCIONES S.A.\",\"trade_name\":\"COTINAVEC BOL, MONTAJES Y CONSTRUCCIONES S.A.\",\"displayName\":\"206 - COTINAVEC BOL, MONTAJES Y CONSTRUCCIONES S.A.\",\"email\":\"roxana.canido@bolinter.com\",\"phone\":\"3529270\",\"address\":\"DOBLE VIA LA GUARDIA KM. 3 1\\/2 N S\\/N ZONA: SUR OES\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"237900025\",\"primary_external_code\":\"206\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"175\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"CRAMER BOLIVIA S.A.\",\"trade_name\":\"CRAMER BOLIVIA S.A.\",\"displayName\":\"165 - CRAMER BOLIVIA S.A.\",\"email\":\"contacto@cramer.com.bo\",\"phone\":\"2441550\",\"address\":\"Calle Pedro Blanco No. 1344 Edificio: Continental\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"138631021\",\"primary_external_code\":\"165\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"176\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Credinform\",\"trade_name\":\"Credinform\",\"displayName\":\"376 - Credinform\",\"email\":\"darduz@credinformsa.com\",\"phone\":\"69831345\",\"address\":\"Calle Julio Pati\\u00f1o N\\u00b0 550, esquina calle 12 de la\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1006765027\",\"primary_external_code\":\"376\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"177\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"CREDIT SUISSE SERVICIOS (MEXICO), S.A. DE C.V.\",\"trade_name\":\"CREDIT SUISSE SERVICIOS (MEXICO), S.A. DE C.V.\",\"displayName\":\"818 - CREDIT SUISSE SERVICIOS (MEXICO), S.A. DE C.V.\",\"email\":\"gabriela.contreras@credit-suisse.com\",\"phone\":\"+52 55 5283 8990\",\"address\":\"Paseo De La Reforma No. 115 | Mexico 11000 | Ameri\",\"city\":\"\",\"state\":\"\",\"country\":\"M\\u00e9xico\",\"postal_code\":\"\",\"nit\":\"818\",\"primary_external_code\":\"818\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"178\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"CR\\u00c9DITO CON EDUCACI\\u00d3N RURAL INSTITUCI\\u00d3N FINANCIERA DE DESARROLLO - CRECER IFD\",\"trade_name\":\"CR\\u00c9DITO CON EDUCACI\\u00d3N RURAL INSTITUCI\\u00d3N FINANCIERA DE DESARROLLO - CRECER IFD\",\"displayName\":\"852 - CR\\u00c9DITO CON EDUCACI\\u00d3N RURAL INSTITUCI\\u00d3N FINANCIERA DE DESARROLLO - CRECER IFD\",\"email\":\"mguzman@crecerifd.bo\",\"phone\":\"72031701\",\"address\":\"Calle Demetrio Canelas N\\u00ba 27 entre calles 16 y 17,\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1017083029\",\"primary_external_code\":\"852\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":12,\"username\":\"tmercado@emba.com\",\"email\":\"tmercado@emba.com\",\"fullName\":\"Teddy Alberto Mercado Carrion\",\"shortName\":\"tmercado\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"179\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"CST INVERSIONES S.A.\",\"trade_name\":\"CST INVERSIONES S.A.\",\"displayName\":\"418 - CST INVERSIONES S.A.\",\"email\":\"jpsaavedra@dispack.com.bo\",\"phone\":\"78188434\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"418\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":8,\"username\":\"lmorenog@emba.com\",\"email\":\"lmorenog@emba.com\",\"fullName\":\"Luis Moreno Gutierrez\",\"shortName\":\"lmoreno\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"180\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Cuatrecasas\",\"trade_name\":\"Cuatrecasas\",\"displayName\":\"540 - Cuatrecasas\",\"email\":\"blanca.lanzas@cuatrecasas.com\",\"phone\":\"+ 34 91 524 76 3\",\"address\":\"Almagro, 9, 28010 Madrid\",\"city\":\"\",\"state\":\"\",\"country\":\"Espa\\u00f1a\",\"postal_code\":\"\",\"nit\":\"540\",\"primary_external_code\":\"540\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":19,\"username\":\"iayala@emba.com\",\"email\":\"iayala@emba.com\",\"fullName\":\"Ines Ayala\",\"shortName\":\"iayala\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"181\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"DACAS BOLIVIA S.A.\",\"trade_name\":\"DACAS BOLIVIA S.A.\",\"displayName\":\"229 - DACAS BOLIVIA S.A.\",\"email\":\"diego@dacas.com\",\"phone\":\"3226777\",\"address\":\"CALLE LAS BEGONIAS No. 24 BARRIO SIRARI\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"309230020\",\"primary_external_code\":\"229\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":9,\"username\":\"paramayo@emba.com\",\"email\":\"paramayo@emba.com\",\"fullName\":\"Paul Aramayo Salinas\",\"shortName\":\"paramayo\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"182\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"DAEWOO\",\"trade_name\":\"DAEWOO\",\"displayName\":\"679 - DAEWOO\",\"email\":\"\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"679\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"183\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Daisy Trigoso\",\"trade_name\":\"Daisy Trigoso\",\"displayName\":\"568 - Daisy Trigoso\",\"email\":\"Idey-tr@hotmail.com\",\"phone\":\"77299449\",\"address\":\"Embajada de Italia - Edificio Torre Pac\\u00edfico\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"2355224018\",\"primary_external_code\":\"568\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"184\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Daniela Andia\",\"trade_name\":\"Daniela Andia\",\"displayName\":\"492 - Daniela Andia\",\"email\":\"danielandia@hotmail.com\",\"phone\":\"75497878\",\"address\":\"Torre Norte 360\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"5935893\",\"primary_external_code\":\"492\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":17,\"username\":\"aaraoz@emba.com\",\"email\":\"aaraoz@emba.com\",\"fullName\":\"Alvaro Araoz Ardaya\",\"shortName\":\"aaraoz\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-12-04 15:29:19\",\"daysAllow\":302}},{\"id\":\"185\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"DAVIS POLK \\u0026 WARDWELL LLP\",\"trade_name\":\"DAVIS POLK \\u0026 WARDWELL LLP\",\"displayName\":\"698 - DAVIS POLK \\u0026 WARDWELL LLP\",\"email\":\"\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"698\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"186\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"DE LA FUENTE\",\"trade_name\":\"DE LA FUENTE\",\"displayName\":\"161 - DE LA FUENTE\",\"email\":\"\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"2616704017\",\"primary_external_code\":\"161\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"187\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"De La Rue\",\"trade_name\":\"De La Rue\",\"displayName\":\"511 - De La Rue\",\"email\":\"Montse.Maqueda@uk.delarue.com\",\"phone\":\"+44 (0) 7803 249 198\",\"address\":\"De La Rue, Jays Close, Basingstoke, Hampshire,RG22\",\"city\":\"\",\"state\":\"\",\"country\":\"Reino Unido\",\"postal_code\":\"\",\"nit\":\"720284\",\"primary_external_code\":\"511\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":6,\"username\":\"darredondo@emba.com.bo\",\"email\":\"nicoln042001@gmail.com\",\"fullName\":\"Daniel Marcelo Arredondo Zelada\",\"shortName\":\"darredon\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-03 11:43:07\",\"daysAllow\":302}},{\"id\":\"188\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"DECCO LIMITED\",\"trade_name\":\"DECCO LIMITED\",\"displayName\":\"674 - DECCO LIMITED\",\"email\":\"deccoinfo@decco.co.uk\",\"phone\":\"01635 556600\",\"address\":\"Votec House, Hambridge Lane, Newbury, RG14 5TN, En\",\"city\":\"\",\"state\":\"\",\"country\":\"Reino Unido\",\"postal_code\":\"\",\"nit\":\"674\",\"primary_external_code\":\"674\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"189\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"DEHENG LAW OFFICES\",\"trade_name\":\"DEHENG LAW OFFICES\",\"displayName\":\"819 - DEHENG LAW OFFICES\",\"email\":\"liym@dehenglaw.com\",\"phone\":\"86-10-52682902\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"China\",\"postal_code\":\"\",\"nit\":\"819\",\"primary_external_code\":\"819\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"190\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"DeliveryHero Stores Almacenes Bolivia S.A.\",\"trade_name\":\"DeliveryHero Stores Almacenes Bolivia S.A.\",\"displayName\":\"339 - DeliveryHero Stores Almacenes Bolivia S.A.\",\"email\":\"jessica.winge@deliveryhero.com\",\"phone\":\"+49 162 2070521\",\"address\":\"Av. Marcelo Terceros Banzer tercer anillo externo\",\"city\":\"SAnta CRuz\",\"state\":\"Santa Cruz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"393367021\",\"primary_external_code\":\"339\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"191\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Delta Cargo S.R.L.\",\"trade_name\":\"Delta Cargo S.R.L.\",\"displayName\":\"521 - Delta Cargo S.R.L.\",\"email\":\"mdavalos@deltacargosrl.com\",\"phone\":\"69052163\",\"address\":\"Calle Teniente Vega 360\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1025565029\",\"primary_external_code\":\"521\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":18,\"username\":\"flanda@emba.com\",\"email\":\"flanda@emba.com\",\"fullName\":\"Carlos Fernando Landa Alejandro\",\"shortName\":\"flanda\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"192\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"DEMERGE BOLIVIA SRL\",\"trade_name\":\"DEMERGE BOLIVIA SRL\",\"displayName\":\"507 - DEMERGE BOLIVIA SRL\",\"email\":\"amuzio@dlocal.com\",\"phone\":\"+598 99 232 672\",\"address\":\"Torre Empresarial CAINCO - Piso 15\",\"city\":\"Montevideo\",\"state\":\"Montevideo\",\"country\":\"Uruguay\",\"postal_code\":\"11400\",\"nit\":\"452052028\",\"primary_external_code\":\"507\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":13,\"username\":\"cdelgado@emba.com\",\"email\":\"cdelgado@emba.com\",\"fullName\":\"Cristhian Delgado Ramirez\",\"shortName\":\"cdelgado\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"193\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"DEVELOOP SOFTWARE, S.L\",\"trade_name\":\"DEVELOOP SOFTWARE, S.L\",\"displayName\":\"527 - DEVELOOP SOFTWARE, S.L\",\"email\":\"rlopezosa@develoop.net\",\"phone\":\"+34 933 2 702\",\"address\":\"Enrique Granados, 32. 08008 Barcelona\",\"city\":\"\",\"state\":\"\",\"country\":\"Espa\\u00f1a\",\"postal_code\":\"\",\"nit\":\"527\",\"primary_external_code\":\"527\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":17,\"username\":\"aaraoz@emba.com\",\"email\":\"aaraoz@emba.com\",\"fullName\":\"Alvaro Araoz Ardaya\",\"shortName\":\"aaraoz\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-12-04 15:29:19\",\"daysAllow\":302}},{\"id\":\"194\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"DEVELOOP SRL\",\"trade_name\":\"DEVELOOP SRL\",\"displayName\":\"587 - DEVELOOP SRL\",\"email\":\"aaraoz@emba.com.bo\",\"phone\":\"77999995\",\"address\":\"AV. OQUENDO 1080\",\"city\":\"Cochabamba\",\"state\":\"Cochabamba\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"480991023\",\"primary_external_code\":\"587\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":17,\"username\":\"aaraoz@emba.com\",\"email\":\"aaraoz@emba.com\",\"fullName\":\"Alvaro Araoz Ardaya\",\"shortName\":\"aaraoz\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-12-04 15:29:19\",\"daysAllow\":302}},{\"id\":\"195\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"DIGITAL HARBOR INTERNATIONAL S.R.L\",\"trade_name\":\"DIGITAL HARBOR INTERNATIONAL S.R.L\",\"displayName\":\"355 - DIGITAL HARBOR INTERNATIONAL S.R.L\",\"email\":\"marcelo.zenzano@dharbor.com\",\"phone\":\"76971010\",\"address\":\"Av. Heroinas 1271 Tupac Amaru\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"269456023\",\"primary_external_code\":\"355\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":20,\"username\":\"jpzegada@emba.com\",\"email\":\"jpzegada@emba.com\",\"fullName\":\"Juan Pablo Zegada\",\"shortName\":\"jzegada\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"196\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Dismac - Ximena Saavedra\",\"trade_name\":\"Dismac - Ximena Saavedra\",\"displayName\":\"474 - Dismac - Ximena Saavedra\",\"email\":\"xsaavedra@dismac.com.bo\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"474\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":8,\"username\":\"lmorenog@emba.com\",\"email\":\"lmorenog@emba.com\",\"fullName\":\"Luis Moreno Gutierrez\",\"shortName\":\"lmoreno\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"197\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Dispak S.A.\",\"trade_name\":\"Dispak S.A.\",\"displayName\":\"226 - Dispak S.A.\",\"email\":\"jpsaavedra@dispack.com.bo\",\"phone\":\"3473030\",\"address\":\"Parque Industrial Mza. 14\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"12341234\",\"primary_external_code\":\"226\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":8,\"username\":\"lmorenog@emba.com\",\"email\":\"lmorenog@emba.com\",\"fullName\":\"Luis Moreno Gutierrez\",\"shortName\":\"lmoreno\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"198\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Distribuidora Cummins S.A. Sucursal Bolivia\",\"trade_name\":\"Distribuidora Cummins S.A. Sucursal Bolivia\",\"displayName\":\"371 - Distribuidora Cummins S.A. Sucursal Bolivia\",\"email\":\"mariana.oliveira@cummins.com\",\"phone\":\"72115038\",\"address\":\"\\u00a0 Calle Conchitas 499\",\"city\":\"\",\"state\":\"\",\"country\":\"Brasil\",\"postal_code\":\"\",\"nit\":\"1013135029\",\"primary_external_code\":\"371\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"199\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"DISTRIBUIDORA MAYORISTA DE TECNOLOGIA S.A.\",\"trade_name\":\"DISTRIBUIDORA MAYORISTA DE TECNOLOGIA S.A.\",\"displayName\":\"589 - DISTRIBUIDORA MAYORISTA DE TECNOLOGIA S.A.\",\"email\":\"masuchet@dismac.com.bo\",\"phone\":\"76581533\",\"address\":\"Av. Principal s\\/n U.V. 0PI, Mzno. PI-14, Edificio DISMATEC S.A., Zona Parque Industrial\",\"city\":\"Santa Cruz\",\"state\":\"Santa Cruz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"1027967025\",\"primary_external_code\":\"589\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":16,\"username\":\"rburgos@emba.com\",\"email\":\"rburgos@emba.com\",\"fullName\":\"Edwin Rodrigo Burgos Fernandez\",\"shortName\":\"rburgos\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"200\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"DISTRIFILMS SRL\",\"trade_name\":\"DISTRIFILMS SRL\",\"displayName\":\"92 - DISTRIFILMS SRL\",\"email\":\"scardenas@caribbeancinemas.com\",\"phone\":\"78444519\",\"address\":\"Av. Irala N\\u00b0 421 Edificio: Marincovic Zona: Barrio\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"215430021\",\"primary_external_code\":\"92\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"201\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"DISTRITO MODA S.R.L.\",\"trade_name\":\"DISTRITO MODA S.R.L.\",\"displayName\":\"425 - DISTRITO MODA S.R.L.\",\"email\":\"ceo.distritomoda@gmail.com\",\"phone\":\"75111797\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"425\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"203\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"DLA PIPER PERU\",\"trade_name\":\"DLA PIPER PERU\",\"displayName\":\"323 - DLA PIPER PERU\",\"email\":\"lvargas@dlapiper.pe\",\"phone\":\"+511 616 1200\",\"address\":\"Av. V\\u00edctor A. Belaunde 280, Piso 3, San Isidro, 15\",\"city\":\"\",\"state\":\"\",\"country\":\"Per\\u00fa\",\"postal_code\":\"\",\"nit\":\"323\",\"primary_external_code\":\"323\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"204\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"DLOCAL\",\"trade_name\":\"DLOCAL\",\"displayName\":\"420 - DLOCAL\",\"email\":\"acancela@dlocal.com\",\"phone\":\"skype: agustin.cance\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Uruguay\",\"postal_code\":\"\",\"nit\":\"420\",\"primary_external_code\":\"420\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"205\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"DLOCAL LLP\",\"trade_name\":\"DLOCAL LLP\",\"displayName\":\"427 - DLOCAL LLP\",\"email\":\"fbianchi@dlocal.com\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"427\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"206\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"DOLLY CASSAL\",\"trade_name\":\"DOLLY CASSAL\",\"displayName\":\"207 - DOLLY CASSAL\",\"email\":\"\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1826330018\",\"primary_external_code\":\"207\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"207\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Dr. Az Group Co. Ltd\",\"trade_name\":\"Dr. Az Group Co. Ltd\",\"displayName\":\"286 - Dr. Az Group Co. Ltd\",\"email\":\"sddraz@163.com\",\"phone\":\"8.61862E+17\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"China\",\"postal_code\":\"\",\"nit\":\"286\",\"primary_external_code\":\"286\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"208\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"DRAGON ADMINISTRACION E INVERSIONES BOLIVIA S.A\",\"trade_name\":\"DRAGON ADMINISTRACION E INVERSIONES BOLIVIA S.A\",\"displayName\":\"154 - DRAGON ADMINISTRACION E INVERSIONES BOLIVIA S.A\",\"email\":\"mauricio.guitierrez@redbolivision.tv.bo\",\"phone\":\"4250661\",\"address\":\"Serinbol Ltda. Parque Demetrio Canelas #1543,\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"154794020\",\"primary_external_code\":\"154\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"209\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"DRAGON OPERADORA COMERCIAL EN TELECOMUNICACIONES S.A.\",\"trade_name\":\"DRAGON OPERADORA COMERCIAL EN TELECOMUNICACIONES S.A.\",\"displayName\":\"155 - DRAGON OPERADORA COMERCIAL EN TELECOMUNICACIONES S.A.\",\"email\":\"mauricio.guitierrez@redbolivision.tv.bo\",\"phone\":\"4250661\",\"address\":\"Serinbol Ltda. Parque Demetrio Canelas #1543,\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"162224029\",\"primary_external_code\":\"155\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"210\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Droguer\\u00eda INTI S.A.\",\"trade_name\":\"Droguer\\u00eda INTI S.A.\",\"displayName\":\"446 - Droguer\\u00eda INTI S.A.\",\"email\":\"carla.herrera@inti.com.bo\",\"phone\":\"72505357\",\"address\":\"Calle Lucas Jaimes, Miraflores\",\"city\":\"La Paz\",\"state\":\"Bolivia\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"1020521023\",\"primary_external_code\":\"446\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"211\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"DSE INGENIERIA SAC - DECHINI\",\"trade_name\":\"DSE INGENIERIA SAC - DECHINI\",\"displayName\":\"93 - DSE INGENIERIA SAC - DECHINI\",\"email\":\"jcaurich@dechini.com.pe\",\"phone\":\"(511) 630 - 6464\",\"address\":\"Av. Javier Prado Este 555, Torre I, Of. 407, Santi\",\"city\":\"\",\"state\":\"\",\"country\":\"Per\\u00fa\",\"postal_code\":\"\",\"nit\":\"20510997370\",\"primary_external_code\":\"93\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"212\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Edwin Saavedra Toledo y Sra.\",\"trade_name\":\"Edwin Saavedra Toledo y Sra.\",\"displayName\":\"411 - Edwin Saavedra Toledo y Sra.\",\"email\":\"carlos.castro@toyosa.com\",\"phone\":\"78522774\",\"address\":\"TERCER ANILLO AV BANZER\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1030029024\",\"primary_external_code\":\"411\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":13,\"username\":\"cdelgado@emba.com\",\"email\":\"cdelgado@emba.com\",\"fullName\":\"Cristhian Delgado Ramirez\",\"shortName\":\"cdelgado\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"213\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"EF Composite Technologies, L.P.\",\"trade_name\":\"EF Composite Technologies, L.P.\",\"displayName\":\"824 - EF Composite Technologies, L.P.\",\"email\":\"rong@e-force.com\",\"phone\":\"(800) 433-6723\",\"address\":\"Miami\",\"city\":\"\",\"state\":\"\",\"country\":\"Estados Unidos\",\"postal_code\":\"\",\"nit\":\"824\",\"primary_external_code\":\"824\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"214\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"EFICIENCIA INDUSTRIAL BOLIVIA S.R.L. (GRUPO PRECISI\\u00d3N)\",\"trade_name\":\"EFICIENCIA INDUSTRIAL BOLIVIA S.R.L. (GRUPO PRECISI\\u00d3N)\",\"displayName\":\"595 - EFICIENCIA INDUSTRIAL BOLIVIA S.R.L. (GRUPO PRECISI\\u00d3N)\",\"email\":\"cristina.eguez@precision.bo\",\"phone\":\"+591 74162093\",\"address\":\"Edificio Platinium II Piso 7 Of. 3 - 4to Anillo Eq\",\"city\":\"Santa CRuz\",\"state\":\"Santa Cruz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"480510027\",\"primary_external_code\":\"595\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"215\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"EGOSCENTRI SRL\",\"trade_name\":\"EGOSCENTRI SRL\",\"displayName\":\"620 - EGOSCENTRI SRL\",\"email\":\"administracion@egoscentri.com\",\"phone\":\"75004600\",\"address\":\"Calle Camiri No. 52\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"157052020\",\"primary_external_code\":\"620\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"216\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"EKF Danmarks Eksportkredi\",\"trade_name\":\"EKF Danmarks Eksportkredi\",\"displayName\":\"745 - EKF Danmarks Eksportkredi\",\"email\":\"ekf@ekf.dk\",\"phone\":\"+45 35 46 26 0\",\"address\":\"Lautrupsgade 11, 2100 K\\u00f8benhavn, Dinamarca\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"745\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"217\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"EMBAJADA AMERICANA EN BOLIVIA\",\"trade_name\":\"EMBAJADA AMERICANA EN BOLIVIA\",\"displayName\":\"216 - EMBAJADA AMERICANA EN BOLIVIA\",\"email\":\"ANDALE@state.gov\",\"phone\":\"2 2168000\",\"address\":\"Avenida Arce 2780 Casilla 425 La Paz, Bolivia\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"216\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"218\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Embajada de Canad\\u00e1\",\"trade_name\":\"Embajada de Canad\\u00e1\",\"displayName\":\"359 - Embajada de Canad\\u00e1\",\"email\":\"monica.burgoa@international.gc.ca\",\"phone\":\"22415141\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"359\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":6,\"username\":\"darredondo@emba.com.bo\",\"email\":\"nicoln042001@gmail.com\",\"fullName\":\"Daniel Marcelo Arredondo Zelada\",\"shortName\":\"darredon\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-03 11:43:07\",\"daysAllow\":302}},{\"id\":\"219\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Embajada de Colombia en Bolivia\",\"trade_name\":\"Embajada de Colombia en Bolivia\",\"displayName\":\"798 - Embajada de Colombia en Bolivia\",\"email\":\"cduran@procolombia.co\",\"phone\":\"2427252\",\"address\":\"Av Alfredo Benavides 1555 Of506 Miraflores Peru\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"798\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"220\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"EMBAJADA DE FRANCIA EN BOLIVIA\",\"trade_name\":\"EMBAJADA DE FRANCIA EN BOLIVIA\",\"displayName\":\"626 - EMBAJADA DE FRANCIA EN BOLIVIA\",\"email\":\"ines.kossatikoff@diplomatie.gouv.fr\",\"phone\":\"2149921\",\"address\":\"Obrajes calle 8 N\\u00ba 5390, entre H. Siles y Ormachea\",\"city\":\"la\",\"state\":\"la\",\"country\":\"Bolivia\",\"postal_code\":\"000111\",\"nit\":\"99001\",\"primary_external_code\":\"626\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-06-22 03:02:00\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"221\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Embajada de Italia en Bolivia\",\"trade_name\":\"Embajada de Italia en Bolivia\",\"displayName\":\"483 - Embajada de Italia en Bolivia\",\"email\":\"smendoza@emba.com.bo\",\"phone\":\"\",\"address\":\"Torre Pac\\u00edfico\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"483\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"222\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Embajada de Suecia, La Paz, Bolivia\",\"trade_name\":\"Embajada de Suecia, La Paz, Bolivia\",\"displayName\":\"603 - Embajada de Suecia, La Paz, Bolivia\",\"email\":\"paula.ballivian@gov.se\",\"phone\":\"76799107\",\"address\":\"Edificio Multicine, La Paz, Bolivia\",\"city\":\"La PAz\",\"state\":\"La Paz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"603\",\"primary_external_code\":\"603\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"223\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Embajada de Suiza\",\"trade_name\":\"Embajada de Suiza\",\"displayName\":\"537 - Embajada de Suiza\",\"email\":\"esthela.arzadumsalazar@eda.admin.ch\",\"phone\":\"(+591 2) 2617501\",\"address\":\"Calle 13, No. 455 Esq. Av. 14 de Septiembre\",\"city\":\"La Paz\",\"state\":\"La Paz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"537\",\"primary_external_code\":\"537\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"224\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"EMPACAR S.A.\",\"trade_name\":\"EMPACAR S.A.\",\"displayName\":\"278 - EMPACAR S.A.\",\"email\":\"climpias@empacar.com.bo\",\"phone\":\"3 346 5525 - 306 Cel\",\"address\":\"Parque Industrial - 45 Santa Cruz de la Sierra - B\",\"city\":\"Santa Cruz\",\"state\":\"Santa Cruz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"1028123025\",\"primary_external_code\":\"278\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"225\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"EMPRESA CONSTRUCTORA E INMOBILIARIA PACIFICO S.A.\",\"trade_name\":\"EMPRESA CONSTRUCTORA E INMOBILIARIA PACIFICO S.A.\",\"displayName\":\"450 - EMPRESA CONSTRUCTORA E INMOBILIARIA PACIFICO S.A.\",\"email\":\"grosazza@bmsc.com.bo\",\"phone\":\"71547762\",\"address\":\"Calle Ayacucho N\\u00b0 277 Edificio del Banco Mercantil\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"176408026\",\"primary_external_code\":\"450\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":23,\"username\":\"fsanchez@emba.com\",\"email\":\"fsanchez@emba.com\",\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"shortName\":\"fsanchez\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"226\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"EMPRESA CONSTRUCTORA HORUS Ltda\",\"trade_name\":\"EMPRESA CONSTRUCTORA HORUS Ltda\",\"displayName\":\"557 - EMPRESA CONSTRUCTORA HORUS Ltda\",\"email\":\"mariosuarez1950@gmail.com\",\"phone\":\"2414377\",\"address\":\"Av. Sanchez Lima N\\u00b0 2512 Edificio: Melisa Piso: 2\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1019563029\",\"primary_external_code\":\"557\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"227\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"EMPRESA DE COMUNICACI\\u00d3N SOCIAL EL DEBER S.A.\",\"trade_name\":\"EMPRESA DE COMUNICACI\\u00d3N SOCIAL EL DEBER S.A.\",\"displayName\":\"347 - EMPRESA DE COMUNICACI\\u00d3N SOCIAL EL DEBER S.A.\",\"email\":\"mirian.bejarano@grupoeldeber.com\",\"phone\":\"3538000 int 1412\",\"address\":\"Av. El Trompillo No. 1144 de la ciudad de Santa Cr\",\"city\":\"Santa Cruz\",\"state\":\"Santa Cruz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"1028283021\",\"primary_external_code\":\"347\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":9,\"username\":\"paramayo@emba.com\",\"email\":\"paramayo@emba.com\",\"fullName\":\"Paul Aramayo Salinas\",\"shortName\":\"paramayo\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"228\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Empresa de Giros y Remesas de Dinero MORE BOLIVIA S.A.\",\"trade_name\":\"Empresa de Giros y Remesas de Dinero MORE BOLIVIA S.A.\",\"displayName\":\"532 - Empresa de Giros y Remesas de Dinero MORE BOLIVIA S.A.\",\"email\":\"rubilla@moremt.com\",\"phone\":\"(591 \\u2013 4) 452-7555\",\"address\":\"Av. Ayacucho No 137 | Cochabamba - Bolivia\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"146018020\",\"primary_external_code\":\"532\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"229\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Empresa de Transporte de Valores\",\"trade_name\":\"Empresa de Transporte de Valores\",\"displayName\":\"231 - Empresa de Transporte de Valores\",\"email\":\"CarlosA@etv.com.bo\",\"phone\":\"72006219\",\"address\":\"Calle 14 de obrajes\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"177458029\",\"primary_external_code\":\"231\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":16,\"username\":\"rburgos@emba.com\",\"email\":\"rburgos@emba.com\",\"fullName\":\"Edwin Rodrigo Burgos Fernandez\",\"shortName\":\"rburgos\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"230\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"EMPRESA ELECTRICA ENDE CORANI S.A.\",\"trade_name\":\"EMPRESA ELECTRICA ENDE CORANI S.A.\",\"displayName\":\"309 - EMPRESA ELECTRICA ENDE CORANI S.A.\",\"email\":\"aldo.maldonado@endecorani.bo\",\"phone\":\"70772679\",\"address\":\"Av. Oquendo Nro. 654, Edif. Torres S\\u00f3fer 1 Piso 9\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1009393025\",\"primary_external_code\":\"309\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":16,\"username\":\"rburgos@emba.com\",\"email\":\"rburgos@emba.com\",\"fullName\":\"Edwin Rodrigo Burgos Fernandez\",\"shortName\":\"rburgos\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"231\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"EMPRESA FORESTAL SIEMPRE BOSQUE S.A.\",\"trade_name\":\"EMPRESA FORESTAL SIEMPRE BOSQUE S.A.\",\"displayName\":\"190 - EMPRESA FORESTAL SIEMPRE BOSQUE S.A.\",\"email\":\"alejandro.grob@intlforestry.com\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"188898029\",\"primary_external_code\":\"190\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"232\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"EMPRESA NACIONAL DE TELECOMUNICACIONES (ENTEL S.A.)\",\"trade_name\":\"EMPRESA NACIONAL DE TELECOMUNICACIONES (ENTEL S.A.)\",\"displayName\":\"500 - EMPRESA NACIONAL DE TELECOMUNICACIONES (ENTEL S.A.)\",\"email\":\"iterrazas@entel.bo\",\"phone\":\"\",\"address\":\"Federico Zuazo 1771\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"10207030223\",\"primary_external_code\":\"500\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":16,\"username\":\"rburgos@emba.com\",\"email\":\"rburgos@emba.com\",\"fullName\":\"Edwin Rodrigo Burgos Fernandez\",\"shortName\":\"rburgos\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"233\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"EMPRESA PRODUCTOS Y SERVICIOS TECNICOS PROSERTEC S.R.L.\",\"trade_name\":\"EMPRESA PRODUCTOS Y SERVICIOS TECNICOS PROSERTEC S.R.L.\",\"displayName\":\"491 - EMPRESA PRODUCTOS Y SERVICIOS TECNICOS PROSERTEC S.R.L.\",\"email\":\"mauricio.rios@prosertec-srl.com\",\"phone\":\"7735-4093\",\"address\":\"4\\u00b0 ANILLO CASI ESQUINA AV, ROCA Y CORONADO 3880\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1015211029\",\"primary_external_code\":\"491\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"234\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Empresas Polar\",\"trade_name\":\"Empresas Polar\",\"displayName\":\"429 - Empresas Polar\",\"email\":\"hillmer.vallenilla@empresas-polar.com\",\"phone\":\"2320975\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Venezuela\",\"postal_code\":\"\",\"nit\":\"429\",\"primary_external_code\":\"429\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":23,\"username\":\"fsanchez@emba.com\",\"email\":\"fsanchez@emba.com\",\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"shortName\":\"fsanchez\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"235\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"ENERFLEX SERVICES BOLIVIA S.R.L.\",\"trade_name\":\"ENERFLEX SERVICES BOLIVIA S.R.L.\",\"displayName\":\"592 - ENERFLEX SERVICES BOLIVIA S.R.L.\",\"email\":\"lcabrera@enerflex.com\",\"phone\":\"+591 (3) 3630235\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Canad\\u00e1\",\"postal_code\":\"\",\"nit\":\"305530029\",\"primary_external_code\":\"592\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":12,\"username\":\"tmercado@emba.com\",\"email\":\"tmercado@emba.com\",\"fullName\":\"Teddy Alberto Mercado Carrion\",\"shortName\":\"tmercado\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"236\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"ENRIQUE MOYA\",\"trade_name\":\"ENRIQUE MOYA\",\"displayName\":\"397 - ENRIQUE MOYA\",\"email\":\"enrique.globaliem@gmail.com\",\"phone\":\"enrique.globaliem@gm\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Per\\u00fa\",\"postal_code\":\"\",\"nit\":\"397\",\"primary_external_code\":\"397\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"237\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"ENTRAVISION BOLIVIA S.R.L.\",\"trade_name\":\"ENTRAVISION BOLIVIA S.R.L.\",\"displayName\":\"490 - ENTRAVISION BOLIVIA S.R.L.\",\"email\":\"jdemartino@entravision.com\",\"phone\":\"78015715\",\"address\":\"2425 Olympic Blvd. Suite 6000 West Santa Monica, C\",\"city\":\"Santa Cruz\",\"state\":\"Bolivia\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"328978028\",\"primary_external_code\":\"490\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"238\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"EPICUSINE GROUP LTDA\",\"trade_name\":\"EPICUSINE GROUP LTDA\",\"displayName\":\"607 - EPICUSINE GROUP LTDA\",\"email\":\"antonio.portugal@quan.bo\",\"phone\":\"+591 77771766\",\"address\":\"Equipetrol, Calle: 9 B-N, Nro. 2, Edificio: Macoro\",\"city\":\"Santa Cruz\",\"state\":\"Santa Cruz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"483594020\",\"primary_external_code\":\"607\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"239\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"ERNST \\u0026 YOUNG SOCI\\u00c9T\\u00c9 D\\u0027 AVOCATS\",\"trade_name\":\"ERNST \\u0026 YOUNG SOCI\\u00c9T\\u00c9 D\\u0027 AVOCATS\",\"displayName\":\"848 - ERNST \\u0026 YOUNG SOCI\\u00c9T\\u00c9 D\\u0027 AVOCATS\",\"email\":\"patrice.mottier@ey-avocats.com\",\"phone\":\"33068800000000000\",\"address\":\"Tour First, 1 place des Saisons, TSA 14444 92037 P\",\"city\":\"\",\"state\":\"\",\"country\":\"Francia\",\"postal_code\":\"\",\"nit\":\"848\",\"primary_external_code\":\"848\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"240\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"ESCUELAS RADIOFONICAS FIDES\",\"trade_name\":\"ESCUELAS RADIOFONICAS FIDES\",\"displayName\":\"314 - ESCUELAS RADIOFONICAS FIDES\",\"email\":\"clinica@radiofide.com\",\"phone\":\"2846415\",\"address\":\"Av. ren\\u00e9 Vargas N\\u00ba 3207 Ballivian\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1016589028\",\"primary_external_code\":\"314\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"241\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Export Development Canada (EDC)\",\"trade_name\":\"Export Development Canada (EDC)\",\"displayName\":\"886 - Export Development Canada (EDC)\",\"email\":\"cs-@nortonrosefulbright.com\",\"phone\":\"+44 20 7444 2019\",\"address\":\"Norton Rose Fulbright LLP Quayside House, 110 Quay\",\"city\":\"\",\"state\":\"\",\"country\":\"Reino Unido\",\"postal_code\":\"\",\"nit\":\"886\",\"primary_external_code\":\"886\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":12,\"username\":\"tmercado@emba.com\",\"email\":\"tmercado@emba.com\",\"fullName\":\"Teddy Alberto Mercado Carrion\",\"shortName\":\"tmercado\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"242\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"EXPRO WORLDWIDE B.V.\",\"trade_name\":\"EXPRO WORLDWIDE B.V.\",\"displayName\":\"695 - EXPRO WORLDWIDE B.V.\",\"email\":\"\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"695\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"243\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"EXTERRAN BOLIVIA SRL\",\"trade_name\":\"EXTERRAN BOLIVIA SRL\",\"displayName\":\"96 - EXTERRAN BOLIVIA SRL\",\"email\":\"javier.carrazco@exterran.com\",\"phone\":\"3630200\",\"address\":\"CARRETERA AL NORTE KM 9 1\\/2\",\"city\":\"Santa Cruz\",\"state\":\"Bolivia\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"1028331027\",\"primary_external_code\":\"96\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"244\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Exterran Energy Solutions L.P.\",\"trade_name\":\"Exterran Energy Solutions L.P.\",\"displayName\":\"860 - Exterran Energy Solutions L.P.\",\"email\":\"javier.carrazco@exterram.com\",\"phone\":\"3630200\",\"address\":\"CARRETERA AL NORTE KM 9 1\\/2\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99011\",\"primary_external_code\":\"860\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":9,\"username\":\"paramayo@emba.com\",\"email\":\"paramayo@emba.com\",\"fullName\":\"Paul Aramayo Salinas\",\"shortName\":\"paramayo\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"245\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"EYAVATECH SRL\",\"trade_name\":\"EYAVATECH SRL\",\"displayName\":\"383 - EYAVATECH SRL\",\"email\":\"amorenog@emba.com.bo\",\"phone\":\"2791554\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"394036020\",\"primary_external_code\":\"383\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"246\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"FABER CASTELL\",\"trade_name\":\"FABER CASTELL\",\"displayName\":\"243 - FABER CASTELL\",\"email\":\"rodrigo.yamaoki@faber-castell.com.br\",\"phone\":\"+55 16 2106.1452\",\"address\":\"Rua Cel. Jos\\u00e9 Augusto de Oliveira Salles, 1.876, C\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"243\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"247\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"FABER CASTELL PER\\u00da\",\"trade_name\":\"FABER CASTELL PER\\u00da\",\"displayName\":\"268 - FABER CASTELL PER\\u00da\",\"email\":\"Melissa.Zerpa@faber-castell.com.pe\",\"phone\":\"\",\"address\":\"AV. LA MOLINA N\\u00b0 161, ATE, LIMA \\u2013 PERU\",\"city\":\"\",\"state\":\"\",\"country\":\"Per\\u00fa\",\"postal_code\":\"\",\"nit\":\"20100050359\",\"primary_external_code\":\"268\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"248\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Fabiola Antelo Cuellar\",\"trade_name\":\"Fabiola Antelo Cuellar\",\"displayName\":\"513 - Fabiola Antelo Cuellar\",\"email\":\"fabiola.antelo3@gmail.com\",\"phone\":\"15712755374\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"513\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":17,\"username\":\"aaraoz@emba.com\",\"email\":\"aaraoz@emba.com\",\"fullName\":\"Alvaro Araoz Ardaya\",\"shortName\":\"aaraoz\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-12-04 15:29:19\",\"daysAllow\":302}},{\"id\":\"249\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Fabrica Nacional de Cemento S.A.\",\"trade_name\":\"Fabrica Nacional de Cemento S.A.\",\"displayName\":\"241 - Fabrica Nacional de Cemento S.A.\",\"email\":\"f.mirandarodriguez@fancesa.com\",\"phone\":\"3581301\",\"address\":\"Pasaje Armando Alba N\\u00b0 80\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"16259020\",\"primary_external_code\":\"241\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":16,\"username\":\"rburgos@emba.com\",\"email\":\"rburgos@emba.com\",\"fullName\":\"Edwin Rodrigo Burgos Fernandez\",\"shortName\":\"rburgos\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"250\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Fabricio Rivas\",\"trade_name\":\"Fabricio Rivas\",\"displayName\":\"304 - Fabricio Rivas\",\"email\":\"fabricio.rivas@exed.incae.edu\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"304\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"251\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Familia Nostas\",\"trade_name\":\"Familia Nostas\",\"displayName\":\"610 - Familia Nostas\",\"email\":\"samirnostas@laboratoriosifa.com\",\"phone\":\"67894431\",\"address\":\"Carretera al norte kilometro 8.5\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"610\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":8,\"username\":\"lmorenog@emba.com\",\"email\":\"lmorenog@emba.com\",\"fullName\":\"Luis Moreno Gutierrez\",\"shortName\":\"lmoreno\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"252\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Familia Tejerina Rivera\",\"trade_name\":\"Familia Tejerina Rivera\",\"displayName\":\"618 - Familia Tejerina Rivera\",\"email\":\"ingrid.clinicaelcarmen@gmail.com\",\"phone\":\"65369962\",\"address\":\"Av. Suarez Miranda, Quillacollo\",\"city\":\"cochabamba\",\"state\":\"cochabamba\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"5223807\",\"primary_external_code\":\"618\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":17,\"username\":\"aaraoz@emba.com\",\"email\":\"aaraoz@emba.com\",\"fullName\":\"Alvaro Araoz Ardaya\",\"shortName\":\"aaraoz\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-12-04 15:29:19\",\"daysAllow\":302}},{\"id\":\"253\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Farmacorp S.A.\",\"trade_name\":\"Farmacorp S.A.\",\"displayName\":\"485 - Farmacorp S.A.\",\"email\":\"pmcfarlane@farmacorp.com\",\"phone\":\"591.3.348.9190 Int.\",\"address\":\"Urubo Open Mall, Local 11, Subsuelo, Zona Colinas\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1015447026\",\"primary_external_code\":\"485\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":12,\"username\":\"tmercado@emba.com\",\"email\":\"tmercado@emba.com\",\"fullName\":\"Teddy Alberto Mercado Carrion\",\"shortName\":\"tmercado\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"254\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Favaro Hnos. S.R.L.\",\"trade_name\":\"Favaro Hnos. S.R.L.\",\"displayName\":\"499 - Favaro Hnos. S.R.L.\",\"email\":\"favarodan201084@hotmail.com\",\"phone\":\"78287110\",\"address\":\"Zona Nueva Cobija, Camino a Mejillones S\\/N, Cobija\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"220816023\",\"primary_external_code\":\"499\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"255\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Federaci\\u00f3n de Centros Binacionales de Bolivia \\u2013 FEBI\",\"trade_name\":\"Federaci\\u00f3n de Centros Binacionales de Bolivia \\u2013 FEBI\",\"displayName\":\"261 - Federaci\\u00f3n de Centros Binacionales de Bolivia \\u2013 FEBI\",\"email\":\"hugosuareztarija@gmail.com\",\"phone\":\"66 - 48626\",\"address\":\"Calle La Madrid N\\u00ba732 entre O connor y Ej\\u00e9rcito, T\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"261\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"256\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"FEDERACION DE EMPRESARIOS PRIVADOS DE TARIJA\",\"trade_name\":\"FEDERACION DE EMPRESARIOS PRIVADOS DE TARIJA\",\"displayName\":\"244 - FEDERACION DE EMPRESARIOS PRIVADOS DE TARIJA\",\"email\":\"contacto@fept.org\",\"phone\":\"6668353\",\"address\":\"Av. Jaime Paz Zamora - Zona Aeropuerto\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"224408025\",\"primary_external_code\":\"244\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"257\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"FELIPE GALDO\",\"trade_name\":\"FELIPE GALDO\",\"displayName\":\"687 - FELIPE GALDO\",\"email\":\"\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"687\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"258\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"FENIZIAM PANAM\\u00c1\",\"trade_name\":\"FENIZIAM PANAM\\u00c1\",\"displayName\":\"504 - FENIZIAM PANAM\\u00c1\",\"email\":\"alejandra.ganoza@ajegroup.com\",\"phone\":\"+511 4143700 -\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Panam\\u00e1\",\"postal_code\":\"\",\"nit\":\"504\",\"primary_external_code\":\"504\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"259\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"FERNANDO A\\u00d1EZ\",\"trade_name\":\"FERNANDO A\\u00d1EZ\",\"displayName\":\"702 - FERNANDO A\\u00d1EZ\",\"email\":\"\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"702\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"260\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Fernando Teran Vargas\",\"trade_name\":\"Fernando Teran Vargas\",\"displayName\":\"287 - Fernando Teran Vargas\",\"email\":\"f.vargas@gmail.com\",\"phone\":\"78523000\",\"address\":\"Calle 9 de septiembre\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"287\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"261\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"FIBRAFILL\",\"trade_name\":\"FIBRAFILL\",\"displayName\":\"517 - FIBRAFILL\",\"email\":\"ezaidans@grupofibrafil.com\",\"phone\":\"\",\"address\":\"Lima Peru\",\"city\":\"\",\"state\":\"\",\"country\":\"Per\\u00fa\",\"postal_code\":\"\",\"nit\":\"517\",\"primary_external_code\":\"517\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":8,\"username\":\"lmorenog@emba.com\",\"email\":\"lmorenog@emba.com\",\"fullName\":\"Luis Moreno Gutierrez\",\"shortName\":\"lmoreno\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"262\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Fidelidade \\u0026 Companhia de Seguros, S.A.\",\"trade_name\":\"Fidelidade \\u0026 Companhia de Seguros, S.A.\",\"displayName\":\"758 - Fidelidade \\u0026 Companhia de Seguros, S.A.\",\"email\":\"sinistros.automovel@fidelidade.pt\",\"phone\":\"(351) 218458515\",\"address\":\"Rua Prof. Mira Fernandes,17 Lisboa- Portugal\",\"city\":\"\",\"state\":\"\",\"country\":\"Portugal\",\"postal_code\":\"\",\"nit\":\"758\",\"primary_external_code\":\"758\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"263\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"FIDES MATER TELEVISI\\u00d3N S.R.L\",\"trade_name\":\"FIDES MATER TELEVISI\\u00d3N S.R.L\",\"displayName\":\"407 - FIDES MATER TELEVISI\\u00d3N S.R.L\",\"email\":\"cmerino@emba.com.bo\",\"phone\":\"2406363\",\"address\":\"Calle Sucre N\\u00b0 853 Edificio: Edificio Fides Zona\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"166758022\",\"primary_external_code\":\"407\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"264\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"FIFA\",\"trade_name\":\"FIFA\",\"displayName\":\"594 - FIFA\",\"email\":\"daniel.zohny@fifa.org\",\"phone\":\"+41 (0)43-222 7792\",\"address\":\"FIFA-Strasse 20 8044 Zurich, Switzerland\",\"city\":\"\",\"state\":\"\",\"country\":\"Suiza\",\"postal_code\":\"\",\"nit\":\"594\",\"primary_external_code\":\"594\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"265\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Flavio Faccenda - Sitrex\",\"trade_name\":\"Flavio Faccenda - Sitrex\",\"displayName\":\"321 - Flavio Faccenda - Sitrex\",\"email\":\"flavio@sitrex.net.br\",\"phone\":\"3454543\",\"address\":\"CALLE PROLOGACION QUIJARRO 1RO ANILLO\",\"city\":\"\",\"state\":\"\",\"country\":\"Brasil\",\"postal_code\":\"\",\"nit\":\"235798021\",\"primary_external_code\":\"321\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"266\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"FLEXWIND\",\"trade_name\":\"FLEXWIND\",\"displayName\":\"364 - FLEXWIND\",\"email\":\"aqu@flex-wind.com\",\"phone\":\"+55 85 9631-9724\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Brasil\",\"postal_code\":\"\",\"nit\":\"364\",\"primary_external_code\":\"364\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}}]}}}\n","time":"2025-07-30T10:49:07-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: POST https://apinewtm.com/graphql/\nHeaders: map[Accept:[application/json] Authorization:[Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJpYXQiOjE3NTM4ODY1MjIsImV4cCI6MTc1Mzk2NjUyMiwiaWQiOjEwNSwidXNlcm5hbWUiOiJpbnRlZ3JhY2lvbmVzQGVtYmEuYm8iLCJhcGlrZXkiOiI5Yzg0ZjYzZTRlMzk2ZGZmOWU5ZjU3NDI5OGRmZWUzOSIsImFwaWtleUNyZWF0ZWRBdCI6eyJkYXRlIjoiMjAyNS0wNy0xNyAxMDo0MToyNS4wMDAwMDAiLCJ0aW1lem9uZV90eXBlIjozLCJ0aW1lem9uZSI6IkFtZXJpY2EvQm9nb3RhIn0sImZ1bGxOYW1lIjoiSW50ZWdyYWNpw7NuIEVNQkEiLCJlbWFpbCI6ImludGVncmFjaW9uZXNAZW1iYS5ibyIsImxvY2FsZSI6ImVzIiwiZGF5c0FsbG93ZWQiOjMwLCJpc0Nvb3JkaW5hdG9yIjpmYWxzZSwidHlwZVRhc2tWaWV3IjoibGlzdHMiLCJkYXlzYWxsb3ciOjMwLCJyb2xlcyI6e30sInNob3J0X25hbWUiOiJJTi5FTUJBIiwicGVybWlzc2lvbnMiOlsic3luY19leHRlcm5hbF9idXNpbmVzcyIsInN5bmNfZXh0ZXJuYWxfY3VzdG9tZXIiLCJzeW5jX2V4dGVybmFsX21pbGVzdG9uZSIsImFic2VuY2VfYXBwcm92ZSIsImFic2VuY2VfY3JlYXRlX2FsbCIsImFic2VuY2VfY3JlYXRlX293biIsImFic2VuY2VfbWVudSIsImFjY291bnRpbmdfYnVzaW5lc3NfbGlzdCIsImFjY291bnRpbmdfY3VzdG9tZXJfbGlzdCIsImJpbGxpbmdfcGVyaW9kX2RlbGV0ZV9hbGwiLCJiaWxsaW5nX3BlcmlvZF9lZGl0X2FsbCIsImJpbGxpbmdfcGVyaW9kX2xpc3QiLCJiaWxsaW5nX3BlcmlvZF9yZWFjdGl2YXRlIiwiYm9hcmRfcmF0ZV91c2VyX2NyZWF0ZSIsImJvYXJkX3JhdGVfdXNlcl9lZGl0IiwiYnVzaW5lc3NfY3JlYXRlIiwiYnVzaW5lc3NfZGVzY3JpcHRpb25fc2F2ZSIsImJ1c2luZXNzX2VkaXQiLCJidXNpbmVzc19saXN0X2FsbCIsImJ1c2luZXNzX21lbnUiLCJidXNpbmVzc19yZXNwb25zaWJsZV9saXN0X2FsbCIsImJ1c2luZXNzX3NlZV9iaWxsaW5nX2luZm8iLCJidXNpbmVzc2VzX2FsbG93ZWRfdXNlcl9jcmVhdGUiLCJidXNpbmVzc2VzX2FsbG93ZWRfdXNlcl9kZWxldGUiLCJjb21wYW55X2Rpc2FibGUiLCJjb21wYW55X2VkaXQiLCJjb21wYW55X2xpc3QiLCJjb25jZXB0X2NyZWF0ZSIsImNvbmNlcHRfZWRpdCIsImNvbmNlcHRfbWVudSIsImNvbnRhY3RfY3JlYXRlIiwiY29udGFjdF9jcmVhdGVfZmFzdCIsImNvbnRhY3RfZWRpdCIsImNvbnRhY3RfbGlzdCIsImNvbnRhY3RfbWVudSIsImN1c3RvbWVyX2NyZWF0ZSIsImN1c3RvbWVyX2NyZWF0ZV9mYXN0IiwiY3VzdG9tZXJfZWRpdCIsImN1c3RvbWVyX2xpc3QiLCJjdXN0b21lcl9saXN0X2FsbCIsImN1c3RvbWVyX21lbnUiLCJleHBlbnNlX2NyZWF0ZV9hbGwiLCJleHBlbnNlX2RlbGV0ZV9hbGwiLCJleHBlbnNlX2R1cGxpY2F0ZSIsImV4cGVuc2VfZWRpdF9hbGwiLCJleHBlbnNlX2xpc3RfYWxsIiwiZXhwZW5zZV9tZW51IiwiZXhwZW5zZV9yZWplY3RfYWxsIiwiZmFiX3Nob3ciLCJmaWxlX21lbnUiLCJnZW9yZWZlcmVuY2VfY3JlYXRlIiwiZ2VvcmVmZXJlbmNlX2VkaXQiLCJnZW9yZWZlcmVuY2VfbWVudSIsImdvX3RvX2xlZ2FjeSIsImluZGljYXRvcnNfbWVudSIsImludm9pY2VfY3JlYXRlIiwiaW52b2ljZV9kZXRhaWxfbGlzdF9hbGwiLCJpbnZvaWNlX2ZpeF90aW1lc19jdXN0b21fdmFsdWUiLCJpbnZvaWNlX2xpc3RfYWxsIiwiaW52b2ljZWFkdmFuY2VfY3JlYXRlIiwiaW52b2ljZWFkdmFuY2VfbGlzdCIsImludm9pY2VhZHZhbmNlX3VwZGF0ZSIsImxvZ19saXN0X2FsbCIsImxvZ19saXN0X293biIsIm1pbGVzdG9uZV9jcmVhdGUiLCJtaWxlc3RvbmVfZGVsZXRlIiwibWlsZXN0b25lX2VkaXQiLCJtb250aGx5X2ZpeF9yYXRlX2dyb3VwX2NyZWF0ZSIsIm1vbnRobHlfZml4X3JhdGVfZ3JvdXBfZWRpdCIsIm1vbnRobHlfdXNlcl9jb3N0X2NyZWF0ZSIsIm1vbnRobHlfdXNlcl9jb3N0X2VkaXQiLCJwYXltZW50X2NyZWF0ZSIsInBheW1lbnRfZGVsZXRlIiwicGF5bWVudF9lZGl0IiwicGF5bWVudF9tZW51IiwicHJvY2VkdXJlX21lbnUiLCJwcm9jZWR1cmVfcmF0ZV9jcmVhdGUiLCJwcm9jZWR1cmVfcmF0ZV9kZXRhaWxfY3JlYXRlIiwicHJvY2VkdXJlX3JhdGVfZGV0YWlsX2VkaXQiLCJwcm9jZWR1cmVfcmF0ZV9kZXRhaWxfbGlzdCIsInByb2NlZHVyZV9yYXRlX2VkaXQiLCJwcm9jZWR1cmVfcmF0ZV9saXN0IiwicHJvY2VkdXJlX3JhdGVfbWVudSIsInByb2NlZHVyZV90cmFuc2FjdGlvbl9saXN0IiwicHJvamVjdF9hcmNoaXZlX2Nhc2NhZGVfYWxsIiwicHJvamVjdF9kZWxldGVfY2FzY2FkZV9hbGwiLCJwcm9qZWN0X3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInJhdGVfYnVzaW5lc3NfY2F0ZWdvcnlfY3JlYXRlIiwicmF0ZV9idXNpbmVzc19jYXRlZ29yeV9lZGl0IiwicmF0ZV9idXNpbmVzc191c2VyX2NyZWF0ZSIsInJhdGVfYnVzaW5lc3NfdXNlcl9lZGl0IiwicmF0ZV9leGNoYW5nZV9jcmVhdGUiLCJyYXRlX2V4Y2hhbmdlX2VkaXQiLCJyYXRlX2V4Y2hhbmdlX2xpc3QiLCJyYXRlX3VzZXJfY3JlYXRlIiwicmF0ZV91c2VyX2VkaXQiLCJyb2xlX2NyZWF0ZSIsInJvbGVfZWRpdF9hbGwiLCJyb2xlX2xpc3RfYWxsIiwic2VjdGlvbl9hcmNoaXZlX2Nhc2NhZGVfYWxsIiwic2VjdGlvbl9kZWxldGVfY2FzY2FkZV9hbGwiLCJzZWN0aW9uX3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInNlZV9tZW51X3JhdGVfZXhjaGFuZ2UiLCJzZXJpZV9jcmVhdGUiLCJzZXJpZV9lZGl0Iiwic2VyaWVfbWVudSIsInNldHRpbmdzX3ZpZXciLCJzdXBwbGllcl9jcmVhdGUiLCJ0YXNrX2FkZF90aW1lX2FsbCIsInRhc2tfYWRkX3RpbWVfb3duIiwidGFza19hc3NpZ25lZF91c2VyX2VtYWlsIiwidGFza19jbG9zZWRfZW1haWwiLCJ0YXNrX2NyZWF0ZV9hbGwiLCJ0YXNrX2NyZWF0ZV9jb21tZW50X2VtYWlsIiwidGFza19jcmVhdGVfc2VsZiIsInRhc2tfY3JlYXRlX3RlYW0iLCJ0YXNrX2RlbGV0ZV9hbGwiLCJ0YXNrX2RlbGV0ZV9vd24iLCJ0YXNrX2RlbGV0ZV90ZWFtIiwidGFza19lZGl0X2FsbCIsInRhc2tfZWRpdF9kdWVfZGF0ZSIsInRhc2tfZWRpdF9vd24iLCJ0YXNrX2VkaXRfdGVhbSIsInRhc2tfbGlzdF9hbGwiLCJ0YXNrX2xpc3Rfb3duIiwidGFza19saXN0X3RlYW0iLCJ0YXNrX21hc3NpdmVpbXBvcnQiLCJ0YXNrX21lbnUiLCJ0YXNrX21pZ3JhdGlvbiIsInRhc2tfc2V0X2FkZGl0aW9uYWxfYXNzaWduZWVzIiwidGFza19zZXRfZHVlX2RhdGUiLCJ0YXNrX3NldF9lc3RpbWF0ZWRfdGltZSIsInRhc2tfc2V0X3ByaW9yaXR5IiwidGFza19zZXRfcHJvZ3Jlc3MiLCJ0YXhfZWRpdF9hbGwiLCJ0YXhfbGlzdF9hbGwiLCJ0ZWFtX2FyY2hpdmVfY2FzY2FkZV9hbGwiLCJ0ZWFtX2NyZWF0ZV9hbGwiLCJ0ZWFtX2RlbGV0ZV9hbGwiLCJ0ZWFtX2VkaXRfYWxsIiwidGVhbV9saXN0X2FsbCIsInRlYW1fbGlzdF9vd24iLCJ0ZWFtX3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInRpbWVfYWNjZXB0X2FsbCIsInRpbWVfYWNjZXB0X293biIsInRpbWVfYXBwcm92ZV9hbGwiLCJ0aW1lX2FwcHJvdmVfb3duIiwidGltZV9jcmVhdGVfYWxsIiwidGltZV9jcmVhdGVfb3duIiwidGltZV9kZWxldGVfYWxsIiwidGltZV9kZWxldGVfb3duIiwidGltZV9kZW55X2FsbCIsInRpbWVfZGVueV9vd24iLCJ0aW1lX2Rvd25sb2FkZmlsZV9hbGwiLCJ0aW1lX2Rvd25sb2FkZmlsZV9vd24iLCJ0aW1lX2VkaXRfYWxsIiwidGltZV9lZGl0X2Nsb3NlX3BlcmlvZF9hbGwiLCJ0aW1lX2VkaXRfY2xvc2VfcGVyaW9kX293biIsInRpbWVfZWRpdF9vd24iLCJ0aW1lX2xpc3RfYWxsIiwidGltZV9saXN0X293biIsInRpbWVfbWVudSIsInRpbWVfbWludXRlc196ZXJvIiwidGltZV9yZWplY3RfYWxsIiwidGltZV9yZXN0cmljdGVkX3BlcmlvZF9jcmVhdGUiLCJ0aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX2VkaXQiLCJ0aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX21lbnUiLCJ0aW1lX3NoYXJlX2FsbCIsInRpbWVfc2hhcmVfb3duIiwidGltZV9zaG93X2NhbGVuZGFyX3ZpZXciLCJ0aW1lX3VwbG9hZGZpbGVfYWxsIiwidGltZV91cGxvYWRmaWxlX293biIsInRyYW5zYWN0aW9uX2FkYXB0ZXJfbGlzdCIsInRyYW5zYWN0aW9uX2xpc3QiLCJ1c2VyX2Fic2VuY2VzX3Nob3ciLCJ1c2VyX2Nvc3RfY3JlYXRlIiwidXNlcl9jb3N0X2VkaXQiLCJ1c2VyX2Nvc3RfbGlzdCIsInVzZXJfY29zdF9tZW51IiwidXNlcl9jb3N0X3JhdGVfY3JlYXRlIiwidXNlcl9jb3N0X3JhdGVfZWRpdCIsInVzZXJfY29zdF9yYXRlX2xpc3QiLCJ1c2VyX2NyZWF0ZSIsInVzZXJfZGlzYWJsZSIsInVzZXJfZWRpdCIsInVzZXJfZWRpdF9kYXlzX2FsbG93X29ubHkiLCJ1c2VyX2dyb3VwX3JvbGVfY3JlYXRlX2FsbCIsInVzZXJfZ3JvdXBfcm9sZV9kZWxldGVfYWxsIiwidXNlcl9ncm91cF9yb2xlX2VkaXRfYWxsIiwidXNlcl9ncm91cF9yb2xlc19saXN0X2FsbCIsInVzZXJfbGlzdCIsInVzZXJfbGlzdF9hbGwiLCJ1c2VyX21hc3NfYWN0aXZhdGlvbiIsInVzZXJfcHJvZHVjdGl2aXR5X2NyZWF0ZSIsInVzZXJfcHJvZHVjdGl2aXR5X2Rpc2FibGUiLCJ1c2VyX3Byb2R1Y3Rpdml0eV9lZGl0IiwidXNlcl9wcm9kdWN0aXZpdHlfZW5hYmxlIiwidXNlcl9wcm9kdWN0aXZpdHlfbWVudSIsInVzZXJfdGltZV9yZXN0cmljdGVkX3BlcmlvZF9jcmVhdGUiLCJ1c2VyX3RpbWVfcmVzdHJpY3RlZF9wZXJpb2RfZGVsZXRlIiwidXNlcl90aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX2VkaXQiLCJ1c2VyZ3JvdXBfY3JlYXRlX2FsbCIsInVzZXJncm91cF9kZWxldGVfYWxsIiwidXNlcmdyb3VwX2VkaXRfYWxsIiwidXNlcmdyb3VwX2xpc3RfYWxsIiwidXNlcmdyb3VwX21lbnUiLCJ1c2Vyc191c2VyX2dyb3VwX2NyZWF0ZV9hbGwiLCJ1c2Vyc191c2VyX2dyb3VwX2RlbGV0ZV9hbGwiLCJ1c2Vyc191c2VyX2dyb3VwX2VkaXRfYWxsIiwidXNlcnNfdXNlcl9ncm91cHNfbGlzdF9hbGwiXSwiaG9tZXBhZ2UiOm51bGx9.kShN7NXGoaz1oFro-yYNyIpIEcnNpo1GiB8SFGKFUJtDQoqyp1I1w-CMA8Kta3vWXnUZwx-y2z1yVSJaMpZbqQgKFlakpcf6351bZSL8IAUPExSfLz0HYYCWFx-Usx94BBTqosKsRhnT8PkPN3dGxs8-XTIEDi9gN-Pk9OSHmM5mPkTsaaxTY40M-F7Y0Up2y6s_lwFaX13CmstiYZSXzyKL9SUBBx-E6-8qQAfuKPIoZ_50jSGPW98-IkAcWwqO6yGf-M07dSfFZ2vLfwc3ulHm2p8jVSmRxJ_O43BEWQD5cvqGbVIvSMXkS4y98DL4Vencjjg27iu3CUJsDNBBTg] Content-Type:[application/json] Origin:[https://azure-function.timemanagerweb.com] Tenant-Name:[pruebas-dos] User-Agent:[Mozilla/5.0 (X11; Linux x86_64)...]]\nBody: map[query:query ($limit: Int, $orderBy: String, $orderDesc: Boolean, $page: Int) {\n CustomersMeta(limit: $limit, orderBy: $orderBy, orderDesc: $orderDesc, page: $page) {\n meta {\n hasNextPage\n hasPreviousPage\n limit\n next\n page\n pages\n previous\n total\n }\n rows {\n id\n code\n number\n color\n name\n trade_name\n displayName\n email\n phone\n address\n city\n state\n country\n postal_code\n nit\n primary_external_code\n status\n statusMarking\n billingLimitDate\n recepctionLimitDate\n dmsIntegration\n cmrRequiredDocuments\n cmrPayTms\n enabled\n created_at\n updated_at\n valueTax\n withIva\n paymentDays\n national\n enterpriseGroup\n responsiblePartner {\n id\n username\n email\n fullName\n shortName\n locale\n userType\n superAdmin\n enabled\n created_at\n updated_at\n daysAllow\n }\n }\n }\n} variables:map[limit:100 orderBy:orderBy orderDesc:true page:4]]\n","time":"2025-07-30T10:49:07-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: POST https://apinewtm.com/graphql/ | Status: 200 | Duration: 543.329ms\nHeaders: map[Access-Control-Allow-Credentials:[true] Access-Control-Allow-Origin:[https://azure-function.timemanagerweb.com] Access-Control-Expose-Headers:[link, access-control-allow-credentials] Cache-Control:[no-cache, private] Content-Type:[application/json] Date:[Wed, 30 Jul 2025 14:49:07 GMT] Server:[] Vary:[Authorization]]\nBody: {\"data\":{\"CustomersMeta\":{\"meta\":{\"hasNextPage\":true,\"hasPreviousPage\":true,\"limit\":100,\"next\":5,\"page\":4,\"pages\":10,\"previous\":3,\"total\":919},\"rows\":[{\"id\":\"267\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"FLUOR DANIEL SOUTH AMERICA LIMITED (SUC. BOLIVIA)\",\"trade_name\":\"FLUOR DANIEL SOUTH AMERICA LIMITED (SUC. BOLIVIA)\",\"displayName\":\"137 - FLUOR DANIEL SOUTH AMERICA LIMITED (SUC. BOLIVIA)\",\"email\":\"Ruben.Gajardo@fluor.com\",\"phone\":\"54-11-43237900\",\"address\":\"San Mart\\u00edn 323, C1004 CABA, Argentina\",\"city\":\"Cordova\",\"state\":\"Cordova\",\"country\":\"Argentina\",\"postal_code\":\"1568\",\"nit\":\"1025759027\",\"primary_external_code\":\"137\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"268\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"FOIANINISALUD MEDICINAPREPAGA S.A\",\"trade_name\":\"FOIANINISALUD MEDICINAPREPAGA S.A\",\"displayName\":\"508 - FOIANINISALUD MEDICINAPREPAGA S.A\",\"email\":\"oscar.suarez@vitaliasalud.com\",\"phone\":\"+591 3 337 4100\",\"address\":\"Santa CRuz de la Sierra\",\"city\":\"Santa Cruz\",\"state\":\"Santa Cruz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"392948020\",\"primary_external_code\":\"508\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"269\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"FONPLATA\",\"trade_name\":\"FONPLATA\",\"displayName\":\"379 - FONPLATA\",\"email\":\"lwestermann@fonplata.com\",\"phone\":\"3159400\",\"address\":\"Av. San Mart\\u00edn N\\u00b0 155, barrio Equipetrol, Edificio\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"379\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":12,\"username\":\"tmercado@emba.com\",\"email\":\"tmercado@emba.com\",\"fullName\":\"Teddy Alberto Mercado Carrion\",\"shortName\":\"tmercado\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"270\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"FOROEMP SRL\",\"trade_name\":\"FOROEMP SRL\",\"displayName\":\"449 - FOROEMP SRL\",\"email\":\"amorenog@emba.com.bo\",\"phone\":\"2791554\",\"address\":\"Av. Sanchez Bustamante 977\",\"city\":\"La PAz\",\"state\":\"La Paz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"400834025\",\"primary_external_code\":\"449\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"271\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Franchise World Headquarters, LLC (SUBWAY)\",\"trade_name\":\"Franchise World Headquarters, LLC (SUBWAY)\",\"displayName\":\"447 - Franchise World Headquarters, LLC (SUBWAY)\",\"email\":\"maragni_p@subway.com\",\"phone\":\"Tel: (305) 883-3966\",\"address\":\"Miami Regional Office 8400 NW 36TH ST - Suite 530\",\"city\":\"\",\"state\":\"\",\"country\":\"Estados Unidos\",\"postal_code\":\"\",\"nit\":\"447\",\"primary_external_code\":\"447\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"272\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Freddy Alejandro Coila Lopera\",\"trade_name\":\"Freddy Alejandro Coila Lopera\",\"displayName\":\"443 - Freddy Alejandro Coila Lopera\",\"email\":\"fcoila08@gmail.com\",\"phone\":\"72218480\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"4846497\",\"primary_external_code\":\"443\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":17,\"username\":\"aaraoz@emba.com\",\"email\":\"aaraoz@emba.com\",\"fullName\":\"Alvaro Araoz Ardaya\",\"shortName\":\"aaraoz\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-12-04 15:29:19\",\"daysAllow\":302}},{\"id\":\"273\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Fuddruckers\",\"trade_name\":\"Fuddruckers\",\"displayName\":\"754 - Fuddruckers\",\"email\":\"\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"754\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"274\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"FUNDACION DIACONIA FONDO ROTATIVO DE INVERSION Y FOMENTO - INSTITUCION FINANCIERA DE DESARROLLO\",\"trade_name\":\"FUNDACION DIACONIA FONDO ROTATIVO DE INVERSION Y FOMENTO - INSTITUCION FINANCIERA DE DESARROLLO\",\"displayName\":\"387 - FUNDACION DIACONIA FONDO ROTATIVO DE INVERSION Y FOMENTO - INSTITUCION FINANCIERA DE DESARROLLO\",\"email\":\"elsa.quinteros@diaconia.bo\",\"phone\":\"2847812\",\"address\":\"Avenida Juan Pablo II esquina calle Subtte. Jorge\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1020601026\",\"primary_external_code\":\"387\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":12,\"username\":\"tmercado@emba.com\",\"email\":\"tmercado@emba.com\",\"fullName\":\"Teddy Alberto Mercado Carrion\",\"shortName\":\"tmercado\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"275\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Fundaci\\u00f3n Educativa y Cultural \\u2013 C.B.A. TJA.\",\"trade_name\":\"Fundaci\\u00f3n Educativa y Cultural \\u2013 C.B.A. TJA.\",\"displayName\":\"260 - Fundaci\\u00f3n Educativa y Cultural \\u2013 C.B.A. TJA.\",\"email\":\"oportunidades@cba.org.bo\",\"phone\":\"66 - 48626\",\"address\":\"Calle La Madrid N\\u00ba732 entre O connor y Ejercito, T\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1024237020\",\"primary_external_code\":\"260\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"276\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Fundaci\\u00f3n Jala\",\"trade_name\":\"Fundaci\\u00f3n Jala\",\"displayName\":\"520 - Fundaci\\u00f3n Jala\",\"email\":\"enrique.torrico@jalasoft.com\",\"phone\":\"70787445\",\"address\":\"Av. Melchor P\\u00e9rez de Olgu\\u00edn, Cochabamba\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"159790029\",\"primary_external_code\":\"520\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"277\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"FUNDACI\\u00d3N PRO MUJER INSTITUCI\\u00d3N FINANCIERA DE DESARROLLO\",\"trade_name\":\"FUNDACI\\u00d3N PRO MUJER INSTITUCI\\u00d3N FINANCIERA DE DESARROLLO\",\"displayName\":\"426 - FUNDACI\\u00d3N PRO MUJER INSTITUCI\\u00d3N FINANCIERA DE DESARROLLO\",\"email\":\"gabriel.reyes@promujer.org\",\"phone\":\"+591-2-2114914 int.\",\"address\":\"Av. Hernando Siles N\\u00b0 5411 Esq. Calle 8, Zona Obra\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"173342029\",\"primary_external_code\":\"426\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":12,\"username\":\"tmercado@emba.com\",\"email\":\"tmercado@emba.com\",\"fullName\":\"Teddy Alberto Mercado Carrion\",\"shortName\":\"tmercado\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"278\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Fundaci\\u00f3n Sim\\u00f3n I. Pati\\u00f1o\",\"trade_name\":\"Fundaci\\u00f3n Sim\\u00f3n I. Pati\\u00f1o\",\"displayName\":\"310 - Fundaci\\u00f3n Sim\\u00f3n I. Pati\\u00f1o\",\"email\":\"j.blajos@fundacionpatino.org\",\"phone\":\"69414515\",\"address\":\"Av. Potosi 1450 entre Av. Portales y calle Buenos\",\"city\":\"Cochabamba\",\"state\":\"Cochabamba\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"1023229020\",\"primary_external_code\":\"310\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"279\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"FUNDACION SPARKASSENSTIFTUNG\",\"trade_name\":\"FUNDACION SPARKASSENSTIFTUNG\",\"displayName\":\"259 - FUNDACION SPARKASSENSTIFTUNG\",\"email\":\"Guillermo.Sempertegui@sparkassenstiftung.de\",\"phone\":\"2 2443504\",\"address\":\"Avenida Arce N\\u00ba 2081, Edificio Montevideo Piso 3,\",\"city\":\"La PAz\",\"state\":\"La PAz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"371327024\",\"primary_external_code\":\"259\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"280\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"FUTURO DE BOLIVIA S.A. ADM. FONDOS PENSIONES\",\"trade_name\":\"FUTURO DE BOLIVIA S.A. ADM. FONDOS PENSIONES\",\"displayName\":\"271 - FUTURO DE BOLIVIA S.A. ADM. FONDOS PENSIONES\",\"email\":\"cduarte@afp-futuro.com.bo\",\"phone\":\"2912929\",\"address\":\"AV. 6 DE AGOSTO # 2624\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1006803028\",\"primary_external_code\":\"271\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"281\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"GABRIELA TORREZ ALE\",\"trade_name\":\"GABRIELA TORREZ ALE\",\"displayName\":\"208 - GABRIELA TORREZ ALE\",\"email\":\"\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"5020109\",\"primary_external_code\":\"208\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"282\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"GALANTE CIMENTACIONES S.A.\",\"trade_name\":\"GALANTE CIMENTACIONES S.A.\",\"displayName\":\"677 - GALANTE CIMENTACIONES S.A.\",\"email\":\"usuario@ejemplo.com\",\"phone\":\"4421900\",\"address\":\"Av. Gral Cordova Nro. 313 Santa Cruz Miraflores Li\",\"city\":\"\",\"state\":\"\",\"country\":\"Per\\u00fa\",\"postal_code\":\"\",\"nit\":\"677\",\"primary_external_code\":\"677\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"283\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"GALAVISION S.R.L. CANAL 4 DE TELEVISI\\u00d3N\",\"trade_name\":\"GALAVISION S.R.L. CANAL 4 DE TELEVISI\\u00d3N\",\"displayName\":\"141 - GALAVISION S.R.L. CANAL 4 DE TELEVISI\\u00d3N\",\"email\":\"carmen.quintana@redbolivision.tv.bo\",\"phone\":\"3524544\",\"address\":\"Av. Santa Cruz Esq. Av. Tres Pasos Al Frente N S\\/n\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1026519020\",\"primary_external_code\":\"141\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"284\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"GALLO BARRIOS PICKMANN\",\"trade_name\":\"GALLO BARRIOS PICKMANN\",\"displayName\":\"667 - GALLO BARRIOS PICKMANN\",\"email\":\"usuario@ejemplo.com\",\"phone\":\"+51 1 208 4200\",\"address\":\"Av. General C\\u00f3rdova 313 Miraflores Lima,\",\"city\":\"\",\"state\":\"\",\"country\":\"Per\\u00fa\",\"postal_code\":\"\",\"nit\":\"667\",\"primary_external_code\":\"667\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"285\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Garrigues - Per\\u00fa\",\"trade_name\":\"Garrigues - Per\\u00fa\",\"displayName\":\"342 - Garrigues - Per\\u00fa\",\"email\":\"franco.muschi@garrigues.com\",\"phone\":\"5113995600\",\"address\":\"Av. Victor Andr\\u00e9s Belapunde 332, Of. 701\",\"city\":\"\",\"state\":\"\",\"country\":\"Per\\u00fa\",\"postal_code\":\"\",\"nit\":\"342\",\"primary_external_code\":\"342\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"286\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Gavilon Peru SRL\",\"trade_name\":\"Gavilon Peru SRL\",\"displayName\":\"801 - Gavilon Peru SRL\",\"email\":\"raul.condori@gavilon.com\",\"phone\":\"(511) 652.2323\",\"address\":\"Av. Pardo y Aliaga 699 Of.601C San Isidro\",\"city\":\"\",\"state\":\"\",\"country\":\"Per\\u00fa\",\"postal_code\":\"\",\"nit\":\"801\",\"primary_external_code\":\"801\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"287\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"GB Minerales y Agregados S.A.\",\"trade_name\":\"GB Minerales y Agregados S.A.\",\"displayName\":\"611 - GB Minerales y Agregados S.A.\",\"email\":\"bernardo.eid@itacamba.com\",\"phone\":\"(+591 -3) 348-1007\",\"address\":\"Carretera Norte entre Warnes y Montero, Km 37, War\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"193364027\",\"primary_external_code\":\"611\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":6,\"username\":\"darredondo@emba.com.bo\",\"email\":\"nicoln042001@gmail.com\",\"fullName\":\"Daniel Marcelo Arredondo Zelada\",\"shortName\":\"darredon\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-03 11:43:07\",\"daysAllow\":302}},{\"id\":\"288\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Gelvis Valdez\",\"trade_name\":\"Gelvis Valdez\",\"displayName\":\"328 - Gelvis Valdez\",\"email\":\"gelvis.valdez@siemens.com\",\"phone\":\"+591 78511409\",\"address\":\"Esquina Ca I-Este con Ca Viador Pinto Santa Cruz d\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"328\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"289\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Global Advisory S.R.L.\",\"trade_name\":\"Global Advisory S.R.L.\",\"displayName\":\"405 - Global Advisory S.R.L.\",\"email\":\"jmariaca@globaladvisory.com.bo\",\"phone\":\"65658265\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"359847020\",\"primary_external_code\":\"405\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"293\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"GOC SERVICIOS INTEGRADOS DE LA CONSTRUCCI\\u00d3N\",\"trade_name\":\"GOC SERVICIOS INTEGRADOS DE LA CONSTRUCCI\\u00d3N\",\"displayName\":\"700 - GOC SERVICIOS INTEGRADOS DE LA CONSTRUCCI\\u00d3N\",\"email\":\"miguelrodriguez@gocsa.es\",\"phone\":\"78805570\",\"address\":\"Calle Campos, 334 Departamento 15 B La Paz Bolivia\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"700\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"294\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"GOJA BOLIVIA SRL\",\"trade_name\":\"GOJA BOLIVIA SRL\",\"displayName\":\"98 - GOJA BOLIVIA SRL\",\"email\":\"danielm@goja.com\",\"phone\":\"4 4506250\",\"address\":\"AV. RICARDO JAIME ESQ. MANCESPED #417\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"195990023\",\"primary_external_code\":\"98\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"295\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"GOJA POWERING ECOMMERCE - GOJA\",\"trade_name\":\"GOJA POWERING ECOMMERCE - GOJA\",\"displayName\":\"850 - GOJA POWERING ECOMMERCE - GOJA\",\"email\":\"danielm@goja.com\",\"phone\":\"4 4506250\",\"address\":\"AV. RICARDO JAIME ESQ. MANCESPED #417\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"850\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":20,\"username\":\"jpzegada@emba.com\",\"email\":\"jpzegada@emba.com\",\"fullName\":\"Juan Pablo Zegada\",\"shortName\":\"jzegada\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"296\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Google LLC\",\"trade_name\":\"Google LLC\",\"displayName\":\"882 - Google LLC\",\"email\":\"belenarana@google.com\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Estados Unidos\",\"postal_code\":\"\",\"nit\":\"882\",\"primary_external_code\":\"882\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":12,\"username\":\"tmercado@emba.com\",\"email\":\"tmercado@emba.com\",\"fullName\":\"Teddy Alberto Mercado Carrion\",\"shortName\":\"tmercado\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"297\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"GRANJA AVICOLA INTEGRAL SOFIA LTDA\",\"trade_name\":\"GRANJA AVICOLA INTEGRAL SOFIA LTDA\",\"displayName\":\"269 - GRANJA AVICOLA INTEGRAL SOFIA LTDA\",\"email\":\"cmendoza@avicolasofia.com\",\"phone\":\"346 2717 Int. 1420 C\",\"address\":\"PARQUE INDUSTRIAL MZA.7 N\\u00b0 7 ZONA: ESTE\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1028779020\",\"primary_external_code\":\"269\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"298\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Greenberg Traurig, P.A.\",\"trade_name\":\"Greenberg Traurig, P.A.\",\"displayName\":\"793 - Greenberg Traurig, P.A.\",\"email\":\"rodriguezr@gtlaw.com\",\"phone\":\"3055790542\",\"address\":\"333 S.E. 2nd Avenue | Miami, FL 33131 T\",\"city\":\"\",\"state\":\"\",\"country\":\"Estados Unidos\",\"postal_code\":\"\",\"nit\":\"99011\",\"primary_external_code\":\"793\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"299\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"GRUPO ATLAS\",\"trade_name\":\"GRUPO ATLAS\",\"displayName\":\"684 - GRUPO ATLAS\",\"email\":\"\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"684\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"300\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"GRUPO EMPRESARIAL DE INVERSIONES NACIONAL VIDA S.A.\",\"trade_name\":\"GRUPO EMPRESARIAL DE INVERSIONES NACIONAL VIDA S.A.\",\"displayName\":\"541 - GRUPO EMPRESARIAL DE INVERSIONES NACIONAL VIDA S.A.\",\"email\":\"grupoinversiones@nacionalseguros.com.bo\",\"phone\":\"3716262\",\"address\":\"Av. Santa Cruz Esq. Jauru N\\u00b0333, Barrio Gualberto\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"255426022\",\"primary_external_code\":\"541\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"301\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"GRUPO FAIR PLAY FAMILIA MALDONADO\",\"trade_name\":\"GRUPO FAIR PLAY FAMILIA MALDONADO\",\"displayName\":\"575 - GRUPO FAIR PLAY FAMILIA MALDONADO\",\"email\":\"alisonm@fairplay.com.bo\",\"phone\":\"75122020\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"575\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":8,\"username\":\"lmorenog@emba.com\",\"email\":\"lmorenog@emba.com\",\"fullName\":\"Luis Moreno Gutierrez\",\"shortName\":\"lmoreno\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"302\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Grupo Gadea\",\"trade_name\":\"Grupo Gadea\",\"displayName\":\"596 - Grupo Gadea\",\"email\":\"antonio.portugal@quan.bo\",\"phone\":\"+591 76570109\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"596\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"303\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Grupo Hycsa\",\"trade_name\":\"Grupo Hycsa\",\"displayName\":\"768 - Grupo Hycsa\",\"email\":\"edith.rodriguez@grupohycsa.com.mx\",\"phone\":\"\",\"address\":\"Mexico CDMX C.P. 11560\",\"city\":\"\",\"state\":\"\",\"country\":\"M\\u00e9xico\",\"postal_code\":\"\",\"nit\":\"768\",\"primary_external_code\":\"768\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"304\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"GRUPO LALA S.A.B. de C.V.\",\"trade_name\":\"GRUPO LALA S.A.B. de C.V.\",\"displayName\":\"693 - GRUPO LALA S.A.B. de C.V.\",\"email\":\"lala800@grupolala.com\",\"phone\":\"8712293940\",\"address\":\"Calzada L\\u00e1zaro C\\u00e1rdenas No. 185, Parque Industrial\",\"city\":\"\",\"state\":\"\",\"country\":\"M\\u00e9xico\",\"postal_code\":\"\",\"nit\":\"693\",\"primary_external_code\":\"693\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"305\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"AGENCIA DE MARKETINGPROMOCIONAL LUCKY BOLIVIA S.A.\",\"trade_name\":\"AGENCIA DE MARKETINGPROMOCIONAL LUCKY BOLIVIA S.A.\",\"displayName\":\"744 - AGENCIA DE MARKETINGPROMOCIONAL LUCKY BOLIVIA S.A.\",\"email\":\"amontecinos@grupolucky.com\",\"phone\":\"51194400000000000\",\"address\":\"GRAL. MENDIBURU 1230 MIRAFLORES LIMA PERU\",\"city\":\"Santa Cruz\",\"state\":\"Bolivia\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"376809026\",\"primary_external_code\":\"744\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"306\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"GRUPO MARCHET - Natalia Rivero\",\"trade_name\":\"GRUPO MARCHET - Natalia Rivero\",\"displayName\":\"455 - GRUPO MARCHET - Natalia Rivero\",\"email\":\"natarivero@hotmail.com\",\"phone\":\"33353515\",\"address\":\"Torre Cainco piso 15\",\"city\":\"Santa Cruz\",\"state\":\"Santa Cruz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"13015084\",\"primary_external_code\":\"455\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-05-10 20:33:05\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":8,\"username\":\"lmorenog@emba.com\",\"email\":\"lmorenog@emba.com\",\"fullName\":\"Luis Moreno Gutierrez\",\"shortName\":\"lmoreno\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"307\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Grupo Mathiesen\",\"trade_name\":\"Grupo Mathiesen\",\"displayName\":\"623 - Grupo Mathiesen\",\"email\":\"dbarrientos@grupomathiesen.com\",\"phone\":\"3461101\",\"address\":\"Parque Industrial Ram\\u00f3n Dario G. M1 P1 8A Santa Cr\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"623\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":13,\"username\":\"cdelgado@emba.com\",\"email\":\"cdelgado@emba.com\",\"fullName\":\"Cristhian Delgado Ramirez\",\"shortName\":\"cdelgado\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"308\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"GRUPO SAN JOSE\",\"trade_name\":\"GRUPO SAN JOSE\",\"displayName\":\"704 - GRUPO SAN JOSE\",\"email\":\"central@gruposanjose.biz\",\"phone\":\"+34 91 806 54 0\",\"address\":\"C\\/Ronda de Poniente, 11 28760 Tres Cantos (Madrid)\",\"city\":\"\",\"state\":\"\",\"country\":\"Espa\\u00f1a\",\"postal_code\":\"\",\"nit\":\"704\",\"primary_external_code\":\"704\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"309\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"GRUPOAKROS7 SRL\",\"trade_name\":\"GRUPOAKROS7 SRL\",\"displayName\":\"377 - GRUPOAKROS7 SRL\",\"email\":\"victorhurtado@akros7.com\",\"phone\":\"77790961\",\"address\":\"Av. Montenegro Nro. 1439, Ed. Torre Infrabol Piso\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"393544023\",\"primary_external_code\":\"377\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"310\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"GUNVOR GROUP\",\"trade_name\":\"GUNVOR GROUP\",\"displayName\":\"583 - GUNVOR GROUP\",\"email\":\"Marcelo.ALVAREZ@gunvorgroup.com\",\"phone\":\"1.00101E+18\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Estados Unidos\",\"postal_code\":\"\",\"nit\":\"583\",\"primary_external_code\":\"583\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":8,\"username\":\"lmorenog@emba.com\",\"email\":\"lmorenog@emba.com\",\"fullName\":\"Luis Moreno Gutierrez\",\"shortName\":\"lmoreno\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"311\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"GWB INVERSIONES S.A.\",\"trade_name\":\"GWB INVERSIONES S.A.\",\"displayName\":\"182 - GWB INVERSIONES S.A.\",\"email\":\"amtracbo@gmail.com\",\"phone\":\"2786527\",\"address\":\"Av. Jose Salmon Ballivian (Los Alamos) No. 322 Zon\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1006477020\",\"primary_external_code\":\"182\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"312\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Haleon\",\"trade_name\":\"Haleon\",\"displayName\":\"582 - Haleon\",\"email\":\"priscilla.m.alvarez@haleon.com\",\"phone\":\"+506 4031-1931\",\"address\":\"Oficentro,Terra Campus,Edificio1,Piso5,Costa Rica\",\"city\":\"\",\"state\":\"\",\"country\":\"Costa Rica\",\"postal_code\":\"\",\"nit\":\"582\",\"primary_external_code\":\"582\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"314\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Hard Rock International\",\"trade_name\":\"Hard Rock International\",\"displayName\":\"282 - Hard Rock International\",\"email\":\"Eusebio_PeraltaMartinez@hardrock.com\",\"phone\":\"Phone: +1-954-488-78\",\"address\":\"5701 Stirling Road, Davie, FL 33314\",\"city\":\"\",\"state\":\"\",\"country\":\"Estados Unidos\",\"postal_code\":\"\",\"nit\":\"282\",\"primary_external_code\":\"282\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"315\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"HASHI\",\"trade_name\":\"HASHI\",\"displayName\":\"579 - HASHI\",\"email\":\"naiaranvieira@hotmail.com\",\"phone\":\"78837122\",\"address\":\"Calle Tarija No.1392 esquina calle Portales de la\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"421355020\",\"primary_external_code\":\"579\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":17,\"username\":\"aaraoz@emba.com\",\"email\":\"aaraoz@emba.com\",\"fullName\":\"Alvaro Araoz Ardaya\",\"shortName\":\"aaraoz\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-12-04 15:29:19\",\"daysAllow\":302}},{\"id\":\"316\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"HAZAMA ANDO CORPORATION\",\"trade_name\":\"HAZAMA ANDO CORPORATION\",\"displayName\":\"285 - HAZAMA ANDO CORPORATION\",\"email\":\"ncortezq@emba.com.bo\",\"phone\":\"72222343\",\"address\":\"MINATO JAPON\",\"city\":\"\",\"state\":\"\",\"country\":\"Jap\\u00f3n\",\"postal_code\":\"\",\"nit\":\"285\",\"primary_external_code\":\"285\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"317\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"HealthC Management Services S.L\",\"trade_name\":\"HealthC Management Services S.L\",\"displayName\":\"591 - HealthC Management Services S.L\",\"email\":\"elianavillegas@gmail.com\",\"phone\":\"70303658\",\"address\":\"Carrer de Mallorca 267 - Barcelona\",\"city\":\"\",\"state\":\"\",\"country\":\"Espa\\u00f1a\",\"postal_code\":\"\",\"nit\":\"591\",\"primary_external_code\":\"591\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":17,\"username\":\"aaraoz@emba.com\",\"email\":\"aaraoz@emba.com\",\"fullName\":\"Alvaro Araoz Ardaya\",\"shortName\":\"aaraoz\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-12-04 15:29:19\",\"daysAllow\":302}},{\"id\":\"318\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"HECTOR DANILO VASQUEZ GUTIERREZ\",\"trade_name\":\"HECTOR DANILO VASQUEZ GUTIERREZ\",\"displayName\":\"170 - HECTOR DANILO VASQUEZ GUTIERREZ\",\"email\":\"\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"4939523\",\"primary_external_code\":\"170\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"319\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"H\\u00e9ctor V\\u00e1squez\",\"trade_name\":\"H\\u00e9ctor V\\u00e1squez\",\"displayName\":\"281 - H\\u00e9ctor V\\u00e1squez\",\"email\":\"hvasquez@acergal.com\",\"phone\":\"76750713\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"281\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"320\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Helix Sementes e Mudas Ltda.\",\"trade_name\":\"Helix Sementes e Mudas Ltda.\",\"displayName\":\"399 - Helix Sementes e Mudas Ltda.\",\"email\":\"ieda@agroceres.com\",\"phone\":\"55 19 3526-8670\",\"address\":\"Brasil\",\"city\":\"\",\"state\":\"\",\"country\":\"Brasil\",\"postal_code\":\"\",\"nit\":\"399\",\"primary_external_code\":\"399\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"321\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Hermanos Vicente\",\"trade_name\":\"Hermanos Vicente\",\"displayName\":\"574 - Hermanos Vicente\",\"email\":\"jevicente@famosa.com.bo\",\"phone\":\"77397389\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"574\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":8,\"username\":\"lmorenog@emba.com\",\"email\":\"lmorenog@emba.com\",\"fullName\":\"Luis Moreno Gutierrez\",\"shortName\":\"lmoreno\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"322\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"HERNAN VERA\",\"trade_name\":\"HERNAN VERA\",\"displayName\":\"166 - HERNAN VERA\",\"email\":\"\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"166\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"323\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"HERRAGRO SRL\",\"trade_name\":\"HERRAGRO SRL\",\"displayName\":\"478 - HERRAGRO SRL\",\"email\":\"amorenog@emba.com.bo\",\"phone\":\"70106238\",\"address\":\"TORRE PACIFICO 977\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1019931027\",\"primary_external_code\":\"478\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"324\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Hofex LTDA\",\"trade_name\":\"Hofex LTDA\",\"displayName\":\"573 - Hofex LTDA\",\"email\":\"arj@hofex.hk\",\"phone\":\"97155200000000000\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Emiratos \\u00c1rabes Unidos\",\"postal_code\":\"\",\"nit\":\"573\",\"primary_external_code\":\"573\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":25,\"username\":\"atejerina@emba.com\",\"email\":\"atejerina@emba.com\",\"fullName\":\"Andre Luis Tejerina Queiroz\",\"shortName\":\"atejerin\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"325\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"HOGAR TERESA DE LOS ANDES\",\"trade_name\":\"HOGAR TERESA DE LOS ANDES\",\"displayName\":\"200 - HOGAR TERESA DE LOS ANDES\",\"email\":\"faustoalejandro09@hotmail.com\",\"phone\":\"3882201\",\"address\":\"Km. 4 desvio a Pailas, Cotoca\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"135257027\",\"primary_external_code\":\"200\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"326\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"HOTEL ROSARIO S.R.L.\",\"trade_name\":\"HOTEL ROSARIO S.R.L.\",\"displayName\":\"174 - HOTEL ROSARIO S.R.L.\",\"email\":\"auditoria@gruporosario.trale\",\"phone\":\"2451658\",\"address\":\"Illampu N\\u00b0 704 Edificio: Hotel Rosario Piso: Pb\\u00a0,\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1018207020\",\"primary_external_code\":\"174\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"327\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Household Solutions S.A.\",\"trade_name\":\"Household Solutions S.A.\",\"displayName\":\"495 - Household Solutions S.A.\",\"email\":\"ghassan.maalouf@osterlineablanca.com\",\"phone\":\"50499529381\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Islas V\\u00edrgenes Brit\\u00e1nicas\",\"postal_code\":\"\",\"nit\":\"495\",\"primary_external_code\":\"495\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":6,\"username\":\"darredondo@emba.com.bo\",\"email\":\"nicoln042001@gmail.com\",\"fullName\":\"Daniel Marcelo Arredondo Zelada\",\"shortName\":\"darredon\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-03 11:43:07\",\"daysAllow\":302}},{\"id\":\"329\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"HSB - The Hartford Steam Boiler\",\"trade_name\":\"HSB - The Hartford Steam Boiler\",\"displayName\":\"806 - HSB - The Hartford Steam Boiler\",\"email\":\"Jean_Cohn@hsb.com\",\"phone\":\"18607225724\",\"address\":\"The Hartford Steam Boiler Inspectoin and Insurance\",\"city\":\"\",\"state\":\"\",\"country\":\"Reino Unido\",\"postal_code\":\"\",\"nit\":\"806\",\"primary_external_code\":\"806\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"330\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Hupi Constructura S.A.\",\"trade_name\":\"Hupi Constructura S.A.\",\"displayName\":\"413 - Hupi Constructura S.A.\",\"email\":\"carlos@hetta.br.com\",\"phone\":\"74650323\",\"address\":\"Calle Los Gomeros No.111 Barrio Sirari\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"401407029\",\"primary_external_code\":\"413\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":13,\"username\":\"cdelgado@emba.com\",\"email\":\"cdelgado@emba.com\",\"fullName\":\"Cristhian Delgado Ramirez\",\"shortName\":\"cdelgado\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"331\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Husqvarna Group\",\"trade_name\":\"Husqvarna Group\",\"displayName\":\"838 - Husqvarna Group\",\"email\":\"monica.rodrigues@husqvarnagroup.com\",\"phone\":\"+1 704 408 3446\",\"address\":\"9335 Harris Corners Parkway, Suite 500 Charlotte,\",\"city\":\"\",\"state\":\"\",\"country\":\"Estados Unidos\",\"postal_code\":\"\",\"nit\":\"838\",\"primary_external_code\":\"838\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":6,\"username\":\"darredondo@emba.com.bo\",\"email\":\"nicoln042001@gmail.com\",\"fullName\":\"Daniel Marcelo Arredondo Zelada\",\"shortName\":\"darredon\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-03 11:43:07\",\"daysAllow\":302}},{\"id\":\"332\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Iblin Camila Sardon Alcoba\",\"trade_name\":\"Iblin Camila Sardon Alcoba\",\"displayName\":\"580 - Iblin Camila Sardon Alcoba\",\"email\":\"nsanjines@emba.com.bo\",\"phone\":\"79110172\",\"address\":\"Calle 14 No. 786, Calacoto\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1333644\",\"primary_external_code\":\"580\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"333\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"ICA BOLIVIA S.A.\",\"trade_name\":\"ICA BOLIVIA S.A.\",\"displayName\":\"162 - ICA BOLIVIA S.A.\",\"email\":\"gadministrativa@ica-bolivia.com\",\"phone\":\"2430038\",\"address\":\"av 6 de agosto # 2577 edificio 2 torres piso 9\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1017219026\",\"primary_external_code\":\"162\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"334\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"ICL America do Sul SA\",\"trade_name\":\"ICL America do Sul SA\",\"displayName\":\"480 - ICL America do Sul SA\",\"email\":\"manuel.julca@icl-group.com.br\",\"phone\":\"+5511 4745 3081\",\"address\":\"Av. Jorge Bey Maluf, 2985 \\u2013 Vila Teodoro. Brasil\",\"city\":\"\",\"state\":\"\",\"country\":\"Brasil\",\"postal_code\":\"\",\"nit\":\"480\",\"primary_external_code\":\"480\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"335\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"IDB Invest\",\"trade_name\":\"IDB Invest\",\"displayName\":\"909 - IDB Invest\",\"email\":\"DIANAB@IADB.ORG\",\"phone\":\"\",\"address\":\"1300 New York Avenue, N.W. Washington, D.C. 20577\",\"city\":\"\",\"state\":\"\",\"country\":\"Estados Unidos\",\"postal_code\":\"\",\"nit\":\"909\",\"primary_external_code\":\"909\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":12,\"username\":\"tmercado@emba.com\",\"email\":\"tmercado@emba.com\",\"fullName\":\"Teddy Alberto Mercado Carrion\",\"shortName\":\"tmercado\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"336\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"IDEPRO DESARROLLO EMPRESARIAL\",\"trade_name\":\"IDEPRO DESARROLLO EMPRESARIAL\",\"displayName\":\"604 - IDEPRO DESARROLLO EMPRESARIAL\",\"email\":\"lbellott@idepro.com.bo\",\"phone\":\"71240032\",\"address\":\"Calle Campos 132\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1020403022\",\"primary_external_code\":\"604\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"337\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"IDOM\",\"trade_name\":\"IDOM\",\"displayName\":\"280 - IDOM\",\"email\":\"jose.lineros@idom.com\",\"phone\":\"+57 312 655 3067 \\/ t\",\"address\":\"Carrera 15 No. 88-21, Torre Unika, Oficina 603, Bo\",\"city\":\"\",\"state\":\"\",\"country\":\"Espa\\u00f1a\",\"postal_code\":\"\",\"nit\":\"280\",\"primary_external_code\":\"280\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"339\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"IMASA BOLIVIA S.R.L.\",\"trade_name\":\"IMASA BOLIVIA S.R.L.\",\"displayName\":\"99 - IMASA BOLIVIA S.R.L.\",\"email\":\"ruben.martinez@imasa.com\",\"phone\":\"3367788\",\"address\":\"C\\/ Rafael Pe\\u00d1a N\\u00b0 222 Zona: B\\/ Casco Viejo\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"293500021\",\"primary_external_code\":\"99\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"340\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"IMBA S.A.\",\"trade_name\":\"IMBA S.A.\",\"displayName\":\"477 - IMBA S.A.\",\"email\":\"marco_argandona@indabol.com.bo\",\"phone\":\"74162288\",\"address\":\"Av. Capitan Ustariz y Av. Segunda\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1023201022\",\"primary_external_code\":\"477\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":17,\"username\":\"aaraoz@emba.com\",\"email\":\"aaraoz@emba.com\",\"fullName\":\"Alvaro Araoz Ardaya\",\"shortName\":\"aaraoz\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-12-04 15:29:19\",\"daysAllow\":302}},{\"id\":\"341\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"IMMUNOTEC USA\",\"trade_name\":\"IMMUNOTEC USA\",\"displayName\":\"393 - IMMUNOTEC USA\",\"email\":\"tdiaz@immunotec.com\",\"phone\":\"(55) 5255-6900\",\"address\":\"1780 Hughes Landing Blvd. Ste. 1175 The Woodlands,\",\"city\":\"\",\"state\":\"\",\"country\":\"Estados Unidos\",\"postal_code\":\"\",\"nit\":\"393\",\"primary_external_code\":\"393\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"342\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"IMOCERT LTDA\",\"trade_name\":\"IMOCERT LTDA\",\"displayName\":\"257 - IMOCERT LTDA\",\"email\":\"ggarcia@imocert.bio\",\"phone\":\"71403629\",\"address\":\"Pasos Kanki 2134, zona Cala Cala\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1020951023\",\"primary_external_code\":\"257\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":20,\"username\":\"jpzegada@emba.com\",\"email\":\"jpzegada@emba.com\",\"fullName\":\"Juan Pablo Zegada\",\"shortName\":\"jzegada\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"343\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"IMPEXPAP\",\"trade_name\":\"IMPEXPAP\",\"displayName\":\"289 - IMPEXPAP\",\"email\":\"oscar.zaballa@impexpap.com\",\"phone\":\"2424243\",\"address\":\"Calle 1 No. 9, Avenida Jaimes Freyre y Avenida Uga\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"170358027\",\"primary_external_code\":\"289\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"344\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"IMPORTADORA MORALES LTDA\",\"trade_name\":\"IMPORTADORA MORALES LTDA\",\"displayName\":\"210 - IMPORTADORA MORALES LTDA\",\"email\":\"info@moralesltda.com\",\"phone\":\"4 6644328\",\"address\":\"Av La Paz #112 esq. Av Las americas Tarija\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"134601022\",\"primary_external_code\":\"210\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"345\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"INDABOL SRL\",\"trade_name\":\"INDABOL SRL\",\"displayName\":\"419 - INDABOL SRL\",\"email\":\"selma_vargas@indabol.com.bo\",\"phone\":\"74162288\",\"address\":\"A. Capitan Ustariz ochabamba\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"293516023\",\"primary_external_code\":\"419\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":17,\"username\":\"aaraoz@emba.com\",\"email\":\"aaraoz@emba.com\",\"fullName\":\"Alvaro Araoz Ardaya\",\"shortName\":\"aaraoz\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-12-04 15:29:19\",\"daysAllow\":302}},{\"id\":\"346\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"INDATROP S.A.\",\"trade_name\":\"INDATROP S.A.\",\"displayName\":\"169 - INDATROP S.A.\",\"email\":\"oficina@indatrop.com\",\"phone\":\"4124576\",\"address\":\"Av. Villazon 2406, Edificio Multicentro\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1009431026\",\"primary_external_code\":\"169\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"347\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"INDUSTRIA CER\\u00c1MICA PAVINAL S.A.\",\"trade_name\":\"INDUSTRIA CER\\u00c1MICA PAVINAL S.A.\",\"displayName\":\"552 - INDUSTRIA CER\\u00c1MICA PAVINAL S.A.\",\"email\":\"lilian_dp@yahoo.com\",\"phone\":\"70155082\",\"address\":\"Carretera Norte entre Warnes y Montero, Km 37, War\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"393816027\",\"primary_external_code\":\"552\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":6,\"username\":\"darredondo@emba.com.bo\",\"email\":\"nicoln042001@gmail.com\",\"fullName\":\"Daniel Marcelo Arredondo Zelada\",\"shortName\":\"darredon\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-03 11:43:07\",\"daysAllow\":302}},{\"id\":\"348\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"INDUSTRIA CRUCE\\u00d1A DE CER\\u00c1MICAS LIMITADA - INCERCRUZ Ltda.\",\"trade_name\":\"INDUSTRIA CRUCE\\u00d1A DE CER\\u00c1MICAS LIMITADA - INCERCRUZ Ltda.\",\"displayName\":\"553 - INDUSTRIA CRUCE\\u00d1A DE CER\\u00c1MICAS LIMITADA - INCERCRUZ Ltda.\",\"email\":\"lilian_dp@yahoo.com\",\"phone\":\"70155082\",\"address\":\"Carretera Norte entre Warnes y Montero, Km 37, War\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"120875027\",\"primary_external_code\":\"553\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":6,\"username\":\"darredondo@emba.com.bo\",\"email\":\"nicoln042001@gmail.com\",\"fullName\":\"Daniel Marcelo Arredondo Zelada\",\"shortName\":\"darredon\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-03 11:43:07\",\"daysAllow\":302}},{\"id\":\"349\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"INDUSTRIA DE CER\\u00c1MICAS COCHABAMBA LIMITADA - INCERCO Ltda.\",\"trade_name\":\"INDUSTRIA DE CER\\u00c1MICAS COCHABAMBA LIMITADA - INCERCO Ltda.\",\"displayName\":\"555 - INDUSTRIA DE CER\\u00c1MICAS COCHABAMBA LIMITADA - INCERCO Ltda.\",\"email\":\"lilian_dp@yahoo.com\",\"phone\":\"70155082\",\"address\":\"Carretera a Sacaba Km 8.5, Br Alto Libertador\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1021643026\",\"primary_external_code\":\"555\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":6,\"username\":\"darredondo@emba.com.bo\",\"email\":\"nicoln042001@gmail.com\",\"fullName\":\"Daniel Marcelo Arredondo Zelada\",\"shortName\":\"darredon\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-03 11:43:07\",\"daysAllow\":302}},{\"id\":\"350\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"INDUSTRIAS AJEBOLIVIA S.A.\",\"trade_name\":\"INDUSTRIAS AJEBOLIVIA S.A.\",\"displayName\":\"187 - INDUSTRIAS AJEBOLIVIA S.A.\",\"email\":\"sandra.ocana.bo@ajegroup.com\",\"phone\":\"3469878\",\"address\":\"Parque\\u00a0Industrial\\u00a045, 5to anillo\",\"city\":\"SAnta Cruz\",\"state\":\"Santa CRuz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"199426022\",\"primary_external_code\":\"187\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"351\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"INDUSTRIAS CERAMICAS PAZ LTDA.\",\"trade_name\":\"INDUSTRIAS CERAMICAS PAZ LTDA.\",\"displayName\":\"433 - INDUSTRIAS CERAMICAS PAZ LTDA.\",\"email\":\"bejarano.jmanuel@gmail.com\",\"phone\":\"2800648\",\"address\":\"Carretera A Viacha Km 27 N\\u00b0 S\\/n Zona: Viliroco\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1029853025\",\"primary_external_code\":\"433\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"352\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"INDUSTRIAS CORPORACION DIRECTO S.A.\",\"trade_name\":\"INDUSTRIAS CORPORACION DIRECTO S.A.\",\"displayName\":\"201 - INDUSTRIAS CORPORACION DIRECTO S.A.\",\"email\":\"rbarbery@directo.com.bo\",\"phone\":\"71645500\",\"address\":\"DOBLE VIA LA GUARDIA ENTRE 7MO Y 8VO ANILLO AVE 24\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"168372020\",\"primary_external_code\":\"201\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"353\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"INDUSTRIAS FACRULESA S.A. (GRUPO VENADO)\",\"trade_name\":\"INDUSTRIAS FACRULESA S.A. (GRUPO VENADO)\",\"displayName\":\"560 - INDUSTRIAS FACRULESA S.A. (GRUPO VENADO)\",\"email\":\"felipevillarroel@grupovenado.com\",\"phone\":\"77700255\",\"address\":\"CALLE SANTA GEMA ESQ. CALLE 3\",\"city\":\"La PAz\",\"state\":\"La PAz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"379587023\",\"primary_external_code\":\"560\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"354\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Industrias Feniziam Bolivia S.A.\",\"trade_name\":\"Industrias Feniziam Bolivia S.A.\",\"displayName\":\"528 - Industrias Feniziam Bolivia S.A.\",\"email\":\"lenny.duran.bo@ajegroup.com\",\"phone\":\"76009709\",\"address\":\"Santa Cruz\",\"city\":\"Santa Cruz\",\"state\":\"Santa Cruz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"467359023\",\"primary_external_code\":\"528\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":13,\"username\":\"cdelgado@emba.com\",\"email\":\"cdelgado@emba.com\",\"fullName\":\"Cristhian Delgado Ramirez\",\"shortName\":\"cdelgado\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"355\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"INDUSTRIAS SALADILLO S.A.\",\"trade_name\":\"INDUSTRIAS SALADILLO S.A.\",\"displayName\":\"258 - INDUSTRIAS SALADILLO S.A.\",\"email\":\"imandel@industriassaladillo.com.ar\",\"phone\":\"0054 11 4793-0700\",\"address\":\"Dardo Rocha 1172, Acassuso, Bs.As.\",\"city\":\"\",\"state\":\"\",\"country\":\"Argentina\",\"postal_code\":\"\",\"nit\":\"258\",\"primary_external_code\":\"258\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"356\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Industrias Saladillo S.A. (Argentina)\",\"trade_name\":\"Industrias Saladillo S.A. (Argentina)\",\"displayName\":\"581 - Industrias Saladillo S.A. (Argentina)\",\"email\":\"imandel@industriassaladillo.com.ar\",\"phone\":\"+54 9 11 5004-2979\",\"address\":\"Dardo Rocha 1172, Acassuso, Buenos Aires, Argenti\",\"city\":\"Buenos Aires\",\"state\":\"Buenos Aires\",\"country\":\"Argentina\",\"postal_code\":\"1865\",\"nit\":\"00099001\",\"primary_external_code\":\"581\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":30,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":14.94,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"357\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"INDUSTRIAS VENADO S.A.\",\"trade_name\":\"INDUSTRIAS VENADO S.A.\",\"displayName\":\"343 - INDUSTRIAS VENADO S.A.\",\"email\":\"felipevillarroel@grupovenado.com\",\"phone\":\"3630700\",\"address\":\"Avenida Sta. Gema esquina calle Tres S\\/N, de la ci\",\"city\":\"La PAz\",\"state\":\"La PAz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"1020539025\",\"primary_external_code\":\"343\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":9,\"username\":\"paramayo@emba.com\",\"email\":\"paramayo@emba.com\",\"fullName\":\"Paul Aramayo Salinas\",\"shortName\":\"paramayo\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"358\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Ingvar Ellefsen\",\"trade_name\":\"Ingvar Ellefsen\",\"displayName\":\"219 - Ingvar Ellefsen\",\"email\":\"\",\"phone\":\"76201369\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"219\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"359\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"INMARCA S.A.\",\"trade_name\":\"INMARCA S.A.\",\"displayName\":\"101 - INMARCA S.A.\",\"email\":\"cnoriega@hansa.com.bo\",\"phone\":\"3189272\",\"address\":\"Calle Cochabamba N\\u00b0 710 Edificio: Torre Empresarial Cainco Piso: 15 Zona: Central\",\"city\":\"Santa Cruz de la Sierra\",\"state\":\"Santa Cruz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"228662029\",\"primary_external_code\":\"101\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-05-27 16:39:05\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":6,\"username\":\"darredondo@emba.com.bo\",\"email\":\"nicoln042001@gmail.com\",\"fullName\":\"Daniel Marcelo Arredondo Zelada\",\"shortName\":\"darredon\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-03 11:43:07\",\"daysAllow\":302}},{\"id\":\"360\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Instituto Privado de Oftalmolog\\u00eda S.R.L.\",\"trade_name\":\"Instituto Privado de Oftalmolog\\u00eda S.R.L.\",\"displayName\":\"566 - Instituto Privado de Oftalmolog\\u00eda S.R.L.\",\"email\":\"marcelomurillosasamoto@gmail.com\",\"phone\":\"22790516\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"195436024\",\"primary_external_code\":\"566\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":6,\"username\":\"darredondo@emba.com.bo\",\"email\":\"nicoln042001@gmail.com\",\"fullName\":\"Daniel Marcelo Arredondo Zelada\",\"shortName\":\"darredon\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-03 11:43:07\",\"daysAllow\":302}},{\"id\":\"361\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"INTERLOGISTIK SERVICIOS S.A.\",\"trade_name\":\"INTERLOGISTIK SERVICIOS S.A.\",\"displayName\":\"283 - INTERLOGISTIK SERVICIOS S.A.\",\"email\":\"fernandezirina95@gmail.com\",\"phone\":\"78240304\",\"address\":\"CALLE 9 N\\u00b0 7979 EDIFICIO: VITRUVIO II PISO: 1\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"382425022\",\"primary_external_code\":\"283\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"362\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"INTPROLAW\",\"trade_name\":\"INTPROLAW\",\"displayName\":\"902 - INTPROLAW\",\"email\":\"eberckholtz@intpro.com.pe\",\"phone\":\"(511) 222-5503\",\"address\":\"Miguel Dasso 230, Of. 701, San Isidro, Lima 27, P\",\"city\":\"\",\"state\":\"\",\"country\":\"Per\\u00fa\",\"postal_code\":\"\",\"nit\":\"902\",\"primary_external_code\":\"902\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":23,\"username\":\"fsanchez@emba.com\",\"email\":\"fsanchez@emba.com\",\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"shortName\":\"fsanchez\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"363\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Inttoff Estudio Legal - Laura Hern\\u00e1ndez\",\"trade_name\":\"Inttoff Estudio Legal - Laura Hern\\u00e1ndez\",\"displayName\":\"572 - Inttoff Estudio Legal - Laura Hern\\u00e1ndez\",\"email\":\"lhernandez@inttof.com\",\"phone\":\"1 809 467 8950\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Rep\\u00fablica Dominicana\",\"postal_code\":\"\",\"nit\":\"572\",\"primary_external_code\":\"572\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":19,\"username\":\"iayala@emba.com\",\"email\":\"iayala@emba.com\",\"fullName\":\"Ines Ayala\",\"shortName\":\"iayala\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"364\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"INVERMESA SOCIEDAD DE INVERSIONES EN MEDIOS S.A\",\"trade_name\":\"INVERMESA SOCIEDAD DE INVERSIONES EN MEDIOS S.A\",\"displayName\":\"167 - INVERMESA SOCIEDAD DE INVERSIONES EN MEDIOS S.A\",\"email\":\"ceciliamontero@redbolivicion.tv.bo\",\"phone\":\"3524544\",\"address\":\"AV. SANTA CRUZ ESQUINA 3 PASOS AL FRENTE 2DO ANILL\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"275924027\",\"primary_external_code\":\"167\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"365\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"INVERSIONES INMOBILIARIAS IRALA S.A\",\"trade_name\":\"INVERSIONES INMOBILIARIAS IRALA S.A\",\"displayName\":\"102 - INVERSIONES INMOBILIARIAS IRALA S.A\",\"email\":\"carlos.fernandez@irala.com.bo\",\"phone\":\"2772521\",\"address\":\"Av. Los \\u00c1lamos Nro. 168 - Zona de La Florida\",\"city\":\"La Paz\",\"state\":\"La Paz\",\"country\":\"Bolivia\",\"postal_code\":null,\"nit\":\"182030028\",\"primary_external_code\":\"102\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"366\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"INVERSIONES INMOBILIARIAS VERMIETUNG S.A.\",\"trade_name\":\"INVERSIONES INMOBILIARIAS VERMIETUNG S.A.\",\"displayName\":\"464 - INVERSIONES INMOBILIARIAS VERMIETUNG S.A.\",\"email\":\"lchalco@emba.com.bo\",\"phone\":\"72030020\",\"address\":\"Av, Sanchez Bustamante 977 calle 16 Calacoto\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"420041026\",\"primary_external_code\":\"464\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"367\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"INVITAR S.R.L.\",\"trade_name\":\"INVITAR S.R.L.\",\"displayName\":\"292 - INVITAR S.R.L.\",\"email\":\"lmorenog@emba.com.bo\",\"phone\":\"3353515\",\"address\":\"Tarija\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"292\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"368\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"IPSOS APOYO OPINION Y MERCADO S.A.\",\"trade_name\":\"IPSOS APOYO OPINION Y MERCADO S.A.\",\"displayName\":\"897 - IPSOS APOYO OPINION Y MERCADO S.A.\",\"email\":\"eric.escobar@ipso.com\",\"phone\":\"2167676\",\"address\":\"PASAJE WALDO BALLIVIAN NUMERO 540\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1016423027\",\"primary_external_code\":\"897\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"369\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Ipsos Group\",\"trade_name\":\"Ipsos Group\",\"displayName\":\"873 - Ipsos Group\",\"email\":\"Renalda.Harfouche@ipsos.com\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Francia\",\"postal_code\":\"\",\"nit\":\"873\",\"primary_external_code\":\"873\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":6,\"username\":\"darredondo@emba.com.bo\",\"email\":\"nicoln042001@gmail.com\",\"fullName\":\"Daniel Marcelo Arredondo Zelada\",\"shortName\":\"darredon\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-03 11:43:07\",\"daysAllow\":302}},{\"id\":\"370\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"IRB BRASIL RE\",\"trade_name\":\"IRB BRASIL RE\",\"displayName\":\"871 - IRB BRASIL RE\",\"email\":\"rafael.nepomuceno@mattosfilho.com.br\",\"phone\":\"55 11 3147 7789\",\"address\":\"Brasil\",\"city\":\"\",\"state\":\"\",\"country\":\"Brasil\",\"postal_code\":\"\",\"nit\":\"871\",\"primary_external_code\":\"871\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"371\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"ITACAMBA CEMENTO SA\",\"trade_name\":\"ITACAMBA CEMENTO SA\",\"displayName\":\"534 - ITACAMBA CEMENTO SA\",\"email\":\"claudia.bulacia@itacamba.com\",\"phone\":\"33481007\",\"address\":\"CALLE BERNARDO CADARIO #3060 EDIFICIO SOBODE P2\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1028695029\",\"primary_external_code\":\"534\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"372\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Italian Citizenship Assistance - ICA\",\"trade_name\":\"Italian Citizenship Assistance - ICA\",\"displayName\":\"301 - Italian Citizenship Assistance - ICA\",\"email\":\"martina@italiancitizenshipassistance.com\",\"phone\":\"+1 (323) 892-861\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Estados Unidos\",\"postal_code\":\"\",\"nit\":\"301\",\"primary_external_code\":\"301\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}}]}}}\n","time":"2025-07-30T10:49:08-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: POST https://apinewtm.com/graphql/\nHeaders: map[Accept:[application/json] Authorization:[Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJpYXQiOjE3NTM4ODY1MjIsImV4cCI6MTc1Mzk2NjUyMiwiaWQiOjEwNSwidXNlcm5hbWUiOiJpbnRlZ3JhY2lvbmVzQGVtYmEuYm8iLCJhcGlrZXkiOiI5Yzg0ZjYzZTRlMzk2ZGZmOWU5ZjU3NDI5OGRmZWUzOSIsImFwaWtleUNyZWF0ZWRBdCI6eyJkYXRlIjoiMjAyNS0wNy0xNyAxMDo0MToyNS4wMDAwMDAiLCJ0aW1lem9uZV90eXBlIjozLCJ0aW1lem9uZSI6IkFtZXJpY2EvQm9nb3RhIn0sImZ1bGxOYW1lIjoiSW50ZWdyYWNpw7NuIEVNQkEiLCJlbWFpbCI6ImludGVncmFjaW9uZXNAZW1iYS5ibyIsImxvY2FsZSI6ImVzIiwiZGF5c0FsbG93ZWQiOjMwLCJpc0Nvb3JkaW5hdG9yIjpmYWxzZSwidHlwZVRhc2tWaWV3IjoibGlzdHMiLCJkYXlzYWxsb3ciOjMwLCJyb2xlcyI6e30sInNob3J0X25hbWUiOiJJTi5FTUJBIiwicGVybWlzc2lvbnMiOlsic3luY19leHRlcm5hbF9idXNpbmVzcyIsInN5bmNfZXh0ZXJuYWxfY3VzdG9tZXIiLCJzeW5jX2V4dGVybmFsX21pbGVzdG9uZSIsImFic2VuY2VfYXBwcm92ZSIsImFic2VuY2VfY3JlYXRlX2FsbCIsImFic2VuY2VfY3JlYXRlX293biIsImFic2VuY2VfbWVudSIsImFjY291bnRpbmdfYnVzaW5lc3NfbGlzdCIsImFjY291bnRpbmdfY3VzdG9tZXJfbGlzdCIsImJpbGxpbmdfcGVyaW9kX2RlbGV0ZV9hbGwiLCJiaWxsaW5nX3BlcmlvZF9lZGl0X2FsbCIsImJpbGxpbmdfcGVyaW9kX2xpc3QiLCJiaWxsaW5nX3BlcmlvZF9yZWFjdGl2YXRlIiwiYm9hcmRfcmF0ZV91c2VyX2NyZWF0ZSIsImJvYXJkX3JhdGVfdXNlcl9lZGl0IiwiYnVzaW5lc3NfY3JlYXRlIiwiYnVzaW5lc3NfZGVzY3JpcHRpb25fc2F2ZSIsImJ1c2luZXNzX2VkaXQiLCJidXNpbmVzc19saXN0X2FsbCIsImJ1c2luZXNzX21lbnUiLCJidXNpbmVzc19yZXNwb25zaWJsZV9saXN0X2FsbCIsImJ1c2luZXNzX3NlZV9iaWxsaW5nX2luZm8iLCJidXNpbmVzc2VzX2FsbG93ZWRfdXNlcl9jcmVhdGUiLCJidXNpbmVzc2VzX2FsbG93ZWRfdXNlcl9kZWxldGUiLCJjb21wYW55X2Rpc2FibGUiLCJjb21wYW55X2VkaXQiLCJjb21wYW55X2xpc3QiLCJjb25jZXB0X2NyZWF0ZSIsImNvbmNlcHRfZWRpdCIsImNvbmNlcHRfbWVudSIsImNvbnRhY3RfY3JlYXRlIiwiY29udGFjdF9jcmVhdGVfZmFzdCIsImNvbnRhY3RfZWRpdCIsImNvbnRhY3RfbGlzdCIsImNvbnRhY3RfbWVudSIsImN1c3RvbWVyX2NyZWF0ZSIsImN1c3RvbWVyX2NyZWF0ZV9mYXN0IiwiY3VzdG9tZXJfZWRpdCIsImN1c3RvbWVyX2xpc3QiLCJjdXN0b21lcl9saXN0X2FsbCIsImN1c3RvbWVyX21lbnUiLCJleHBlbnNlX2NyZWF0ZV9hbGwiLCJleHBlbnNlX2RlbGV0ZV9hbGwiLCJleHBlbnNlX2R1cGxpY2F0ZSIsImV4cGVuc2VfZWRpdF9hbGwiLCJleHBlbnNlX2xpc3RfYWxsIiwiZXhwZW5zZV9tZW51IiwiZXhwZW5zZV9yZWplY3RfYWxsIiwiZmFiX3Nob3ciLCJmaWxlX21lbnUiLCJnZW9yZWZlcmVuY2VfY3JlYXRlIiwiZ2VvcmVmZXJlbmNlX2VkaXQiLCJnZW9yZWZlcmVuY2VfbWVudSIsImdvX3RvX2xlZ2FjeSIsImluZGljYXRvcnNfbWVudSIsImludm9pY2VfY3JlYXRlIiwiaW52b2ljZV9kZXRhaWxfbGlzdF9hbGwiLCJpbnZvaWNlX2ZpeF90aW1lc19jdXN0b21fdmFsdWUiLCJpbnZvaWNlX2xpc3RfYWxsIiwiaW52b2ljZWFkdmFuY2VfY3JlYXRlIiwiaW52b2ljZWFkdmFuY2VfbGlzdCIsImludm9pY2VhZHZhbmNlX3VwZGF0ZSIsImxvZ19saXN0X2FsbCIsImxvZ19saXN0X293biIsIm1pbGVzdG9uZV9jcmVhdGUiLCJtaWxlc3RvbmVfZGVsZXRlIiwibWlsZXN0b25lX2VkaXQiLCJtb250aGx5X2ZpeF9yYXRlX2dyb3VwX2NyZWF0ZSIsIm1vbnRobHlfZml4X3JhdGVfZ3JvdXBfZWRpdCIsIm1vbnRobHlfdXNlcl9jb3N0X2NyZWF0ZSIsIm1vbnRobHlfdXNlcl9jb3N0X2VkaXQiLCJwYXltZW50X2NyZWF0ZSIsInBheW1lbnRfZGVsZXRlIiwicGF5bWVudF9lZGl0IiwicGF5bWVudF9tZW51IiwicHJvY2VkdXJlX21lbnUiLCJwcm9jZWR1cmVfcmF0ZV9jcmVhdGUiLCJwcm9jZWR1cmVfcmF0ZV9kZXRhaWxfY3JlYXRlIiwicHJvY2VkdXJlX3JhdGVfZGV0YWlsX2VkaXQiLCJwcm9jZWR1cmVfcmF0ZV9kZXRhaWxfbGlzdCIsInByb2NlZHVyZV9yYXRlX2VkaXQiLCJwcm9jZWR1cmVfcmF0ZV9saXN0IiwicHJvY2VkdXJlX3JhdGVfbWVudSIsInByb2NlZHVyZV90cmFuc2FjdGlvbl9saXN0IiwicHJvamVjdF9hcmNoaXZlX2Nhc2NhZGVfYWxsIiwicHJvamVjdF9kZWxldGVfY2FzY2FkZV9hbGwiLCJwcm9qZWN0X3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInJhdGVfYnVzaW5lc3NfY2F0ZWdvcnlfY3JlYXRlIiwicmF0ZV9idXNpbmVzc19jYXRlZ29yeV9lZGl0IiwicmF0ZV9idXNpbmVzc191c2VyX2NyZWF0ZSIsInJhdGVfYnVzaW5lc3NfdXNlcl9lZGl0IiwicmF0ZV9leGNoYW5nZV9jcmVhdGUiLCJyYXRlX2V4Y2hhbmdlX2VkaXQiLCJyYXRlX2V4Y2hhbmdlX2xpc3QiLCJyYXRlX3VzZXJfY3JlYXRlIiwicmF0ZV91c2VyX2VkaXQiLCJyb2xlX2NyZWF0ZSIsInJvbGVfZWRpdF9hbGwiLCJyb2xlX2xpc3RfYWxsIiwic2VjdGlvbl9hcmNoaXZlX2Nhc2NhZGVfYWxsIiwic2VjdGlvbl9kZWxldGVfY2FzY2FkZV9hbGwiLCJzZWN0aW9uX3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInNlZV9tZW51X3JhdGVfZXhjaGFuZ2UiLCJzZXJpZV9jcmVhdGUiLCJzZXJpZV9lZGl0Iiwic2VyaWVfbWVudSIsInNldHRpbmdzX3ZpZXciLCJzdXBwbGllcl9jcmVhdGUiLCJ0YXNrX2FkZF90aW1lX2FsbCIsInRhc2tfYWRkX3RpbWVfb3duIiwidGFza19hc3NpZ25lZF91c2VyX2VtYWlsIiwidGFza19jbG9zZWRfZW1haWwiLCJ0YXNrX2NyZWF0ZV9hbGwiLCJ0YXNrX2NyZWF0ZV9jb21tZW50X2VtYWlsIiwidGFza19jcmVhdGVfc2VsZiIsInRhc2tfY3JlYXRlX3RlYW0iLCJ0YXNrX2RlbGV0ZV9hbGwiLCJ0YXNrX2RlbGV0ZV9vd24iLCJ0YXNrX2RlbGV0ZV90ZWFtIiwidGFza19lZGl0X2FsbCIsInRhc2tfZWRpdF9kdWVfZGF0ZSIsInRhc2tfZWRpdF9vd24iLCJ0YXNrX2VkaXRfdGVhbSIsInRhc2tfbGlzdF9hbGwiLCJ0YXNrX2xpc3Rfb3duIiwidGFza19saXN0X3RlYW0iLCJ0YXNrX21hc3NpdmVpbXBvcnQiLCJ0YXNrX21lbnUiLCJ0YXNrX21pZ3JhdGlvbiIsInRhc2tfc2V0X2FkZGl0aW9uYWxfYXNzaWduZWVzIiwidGFza19zZXRfZHVlX2RhdGUiLCJ0YXNrX3NldF9lc3RpbWF0ZWRfdGltZSIsInRhc2tfc2V0X3ByaW9yaXR5IiwidGFza19zZXRfcHJvZ3Jlc3MiLCJ0YXhfZWRpdF9hbGwiLCJ0YXhfbGlzdF9hbGwiLCJ0ZWFtX2FyY2hpdmVfY2FzY2FkZV9hbGwiLCJ0ZWFtX2NyZWF0ZV9hbGwiLCJ0ZWFtX2RlbGV0ZV9hbGwiLCJ0ZWFtX2VkaXRfYWxsIiwidGVhbV9saXN0X2FsbCIsInRlYW1fbGlzdF9vd24iLCJ0ZWFtX3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInRpbWVfYWNjZXB0X2FsbCIsInRpbWVfYWNjZXB0X293biIsInRpbWVfYXBwcm92ZV9hbGwiLCJ0aW1lX2FwcHJvdmVfb3duIiwidGltZV9jcmVhdGVfYWxsIiwidGltZV9jcmVhdGVfb3duIiwidGltZV9kZWxldGVfYWxsIiwidGltZV9kZWxldGVfb3duIiwidGltZV9kZW55X2FsbCIsInRpbWVfZGVueV9vd24iLCJ0aW1lX2Rvd25sb2FkZmlsZV9hbGwiLCJ0aW1lX2Rvd25sb2FkZmlsZV9vd24iLCJ0aW1lX2VkaXRfYWxsIiwidGltZV9lZGl0X2Nsb3NlX3BlcmlvZF9hbGwiLCJ0aW1lX2VkaXRfY2xvc2VfcGVyaW9kX293biIsInRpbWVfZWRpdF9vd24iLCJ0aW1lX2xpc3RfYWxsIiwidGltZV9saXN0X293biIsInRpbWVfbWVudSIsInRpbWVfbWludXRlc196ZXJvIiwidGltZV9yZWplY3RfYWxsIiwidGltZV9yZXN0cmljdGVkX3BlcmlvZF9jcmVhdGUiLCJ0aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX2VkaXQiLCJ0aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX21lbnUiLCJ0aW1lX3NoYXJlX2FsbCIsInRpbWVfc2hhcmVfb3duIiwidGltZV9zaG93X2NhbGVuZGFyX3ZpZXciLCJ0aW1lX3VwbG9hZGZpbGVfYWxsIiwidGltZV91cGxvYWRmaWxlX293biIsInRyYW5zYWN0aW9uX2FkYXB0ZXJfbGlzdCIsInRyYW5zYWN0aW9uX2xpc3QiLCJ1c2VyX2Fic2VuY2VzX3Nob3ciLCJ1c2VyX2Nvc3RfY3JlYXRlIiwidXNlcl9jb3N0X2VkaXQiLCJ1c2VyX2Nvc3RfbGlzdCIsInVzZXJfY29zdF9tZW51IiwidXNlcl9jb3N0X3JhdGVfY3JlYXRlIiwidXNlcl9jb3N0X3JhdGVfZWRpdCIsInVzZXJfY29zdF9yYXRlX2xpc3QiLCJ1c2VyX2NyZWF0ZSIsInVzZXJfZGlzYWJsZSIsInVzZXJfZWRpdCIsInVzZXJfZWRpdF9kYXlzX2FsbG93X29ubHkiLCJ1c2VyX2dyb3VwX3JvbGVfY3JlYXRlX2FsbCIsInVzZXJfZ3JvdXBfcm9sZV9kZWxldGVfYWxsIiwidXNlcl9ncm91cF9yb2xlX2VkaXRfYWxsIiwidXNlcl9ncm91cF9yb2xlc19saXN0X2FsbCIsInVzZXJfbGlzdCIsInVzZXJfbGlzdF9hbGwiLCJ1c2VyX21hc3NfYWN0aXZhdGlvbiIsInVzZXJfcHJvZHVjdGl2aXR5X2NyZWF0ZSIsInVzZXJfcHJvZHVjdGl2aXR5X2Rpc2FibGUiLCJ1c2VyX3Byb2R1Y3Rpdml0eV9lZGl0IiwidXNlcl9wcm9kdWN0aXZpdHlfZW5hYmxlIiwidXNlcl9wcm9kdWN0aXZpdHlfbWVudSIsInVzZXJfdGltZV9yZXN0cmljdGVkX3BlcmlvZF9jcmVhdGUiLCJ1c2VyX3RpbWVfcmVzdHJpY3RlZF9wZXJpb2RfZGVsZXRlIiwidXNlcl90aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX2VkaXQiLCJ1c2VyZ3JvdXBfY3JlYXRlX2FsbCIsInVzZXJncm91cF9kZWxldGVfYWxsIiwidXNlcmdyb3VwX2VkaXRfYWxsIiwidXNlcmdyb3VwX2xpc3RfYWxsIiwidXNlcmdyb3VwX21lbnUiLCJ1c2Vyc191c2VyX2dyb3VwX2NyZWF0ZV9hbGwiLCJ1c2Vyc191c2VyX2dyb3VwX2RlbGV0ZV9hbGwiLCJ1c2Vyc191c2VyX2dyb3VwX2VkaXRfYWxsIiwidXNlcnNfdXNlcl9ncm91cHNfbGlzdF9hbGwiXSwiaG9tZXBhZ2UiOm51bGx9.kShN7NXGoaz1oFro-yYNyIpIEcnNpo1GiB8SFGKFUJtDQoqyp1I1w-CMA8Kta3vWXnUZwx-y2z1yVSJaMpZbqQgKFlakpcf6351bZSL8IAUPExSfLz0HYYCWFx-Usx94BBTqosKsRhnT8PkPN3dGxs8-XTIEDi9gN-Pk9OSHmM5mPkTsaaxTY40M-F7Y0Up2y6s_lwFaX13CmstiYZSXzyKL9SUBBx-E6-8qQAfuKPIoZ_50jSGPW98-IkAcWwqO6yGf-M07dSfFZ2vLfwc3ulHm2p8jVSmRxJ_O43BEWQD5cvqGbVIvSMXkS4y98DL4Vencjjg27iu3CUJsDNBBTg] Content-Type:[application/json] Origin:[https://azure-function.timemanagerweb.com] Tenant-Name:[pruebas-dos] User-Agent:[Mozilla/5.0 (X11; Linux x86_64)...]]\nBody: map[query:query ($limit: Int, $orderBy: String, $orderDesc: Boolean, $page: Int) {\n CustomersMeta(limit: $limit, orderBy: $orderBy, orderDesc: $orderDesc, page: $page) {\n meta {\n hasNextPage\n hasPreviousPage\n limit\n next\n page\n pages\n previous\n total\n }\n rows {\n id\n code\n number\n color\n name\n trade_name\n displayName\n email\n phone\n address\n city\n state\n country\n postal_code\n nit\n primary_external_code\n status\n statusMarking\n billingLimitDate\n recepctionLimitDate\n dmsIntegration\n cmrRequiredDocuments\n cmrPayTms\n enabled\n created_at\n updated_at\n valueTax\n withIva\n paymentDays\n national\n enterpriseGroup\n responsiblePartner {\n id\n username\n email\n fullName\n shortName\n locale\n userType\n superAdmin\n enabled\n created_at\n updated_at\n daysAllow\n }\n }\n }\n} variables:map[limit:100 orderBy:orderBy orderDesc:true page:5]]\n","time":"2025-07-30T10:49:08-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: POST https://apinewtm.com/graphql/ | Status: 200 | Duration: 420.9395ms\nHeaders: map[Access-Control-Allow-Credentials:[true] Access-Control-Allow-Origin:[https://azure-function.timemanagerweb.com] Access-Control-Expose-Headers:[link, access-control-allow-credentials] Cache-Control:[no-cache, private] Content-Type:[application/json] Date:[Wed, 30 Jul 2025 14:49:08 GMT] Server:[] Vary:[Authorization]]\nBody: {\"data\":{\"CustomersMeta\":{\"meta\":{\"hasNextPage\":true,\"hasPreviousPage\":true,\"limit\":100,\"next\":6,\"page\":5,\"pages\":10,\"previous\":4,\"total\":919},\"rows\":[{\"id\":\"373\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"ITALSA S.A.\",\"trade_name\":\"ITALSA S.A.\",\"displayName\":\"386 - ITALSA S.A.\",\"email\":\"oveliz@italsa.com.bo\",\"phone\":\"3536674\",\"address\":\"Parque industrial Mza 45\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"246406022\",\"primary_external_code\":\"386\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"374\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"IVESUR S.R.L.\",\"trade_name\":\"IVESUR S.R.L.\",\"displayName\":\"181 - IVESUR S.R.L.\",\"email\":\"info@ivesur.es\",\"phone\":\"2441600\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"304950028\",\"primary_external_code\":\"181\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"375\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"JABONERIA WILSON S.A.\",\"trade_name\":\"JABONERIA WILSON S.A.\",\"displayName\":\"441 - JABONERIA WILSON S.A.\",\"email\":\"daniela@corralrosales.com\",\"phone\":\"+593 2 2544 144\",\"address\":\"Av. Naciones Unidas E10-44 y Av. Republica de el S\",\"city\":\"\",\"state\":\"\",\"country\":\"Ecuador\",\"postal_code\":\"\",\"nit\":\"17901600000000000\",\"primary_external_code\":\"441\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":23,\"username\":\"fsanchez@emba.com\",\"email\":\"fsanchez@emba.com\",\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"shortName\":\"fsanchez\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"376\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"JAIME MARCELO TORRICO ESPEJO\",\"trade_name\":\"JAIME MARCELO TORRICO ESPEJO\",\"displayName\":\"133 - JAIME MARCELO TORRICO ESPEJO\",\"email\":\"\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"4327152\",\"primary_external_code\":\"133\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"377\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Jalasoft SRL\",\"trade_name\":\"Jalasoft SRL\",\"displayName\":\"311 - Jalasoft SRL\",\"email\":\"Mendy.Lopez@jalagroup.com.bo\",\"phone\":\"Of. (591-4) 4308282\",\"address\":\"Av. Melchor P\\u00e9rez de Olgu\\u00edn No. 2643, Cochabamba\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"155018021\",\"primary_external_code\":\"311\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"378\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"JAVIER FRANCISCO IRADY ROMERO (CAIGUAMI SRL)\",\"trade_name\":\"JAVIER FRANCISCO IRADY ROMERO (CAIGUAMI SRL)\",\"displayName\":\"211 - JAVIER FRANCISCO IRADY ROMERO (CAIGUAMI SRL)\",\"email\":\"usuario@ejemplo.com\",\"phone\":\"46722353\",\"address\":\"VILLAMONTES- CARR. SANTA CRUZ KM 1 N\\u00b0S\\/N MZNO: ZON\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1028943011\",\"primary_external_code\":\"211\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"379\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"JHONSON \\u0026 JHONSON DEL PARAGUAY S.A.\",\"trade_name\":\"JHONSON \\u0026 JHONSON DEL PARAGUAY S.A.\",\"displayName\":\"671 - JHONSON \\u0026 JHONSON DEL PARAGUAY S.A.\",\"email\":\"JLOPEZ02@ITS.JNJ.COM\",\"phone\":\"59521 608800\",\"address\":\"Avda. Gral Santos esq. Concordia - Locales 3 y 4 Z\",\"city\":\"Paraguay\",\"state\":\"Paraguay\",\"country\":\"Paraguay\",\"postal_code\":\"1111\",\"nit\":\"671\",\"primary_external_code\":\"671\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-08-12 16:57:13\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"380\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"JOCA MOLINARI\",\"trade_name\":\"JOCA MOLINARI\",\"displayName\":\"103 - JOCA MOLINARI\",\"email\":\"sheyla.quispe@jocamolinari.com\",\"phone\":\"4-4317386\",\"address\":\"Teniente Ar\\u00e9valo # 779 y Calle Mariano Baptista. E\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"103\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"381\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"John Deere (MX)\",\"trade_name\":\"John Deere (MX)\",\"displayName\":\"563 - John Deere (MX)\",\"email\":\"RomeroRicoAndreaM@JohnDeere.com\",\"phone\":\"\",\"address\":\"Blvd. D\\u00edaz Ordaz # 500, Garza Garc\\u00eda, Nuevo Le\\u00f3n,\",\"city\":\"\",\"state\":\"\",\"country\":\"M\\u00e9xico\",\"postal_code\":\"\",\"nit\":\"563\",\"primary_external_code\":\"563\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":18,\"username\":\"flanda@emba.com\",\"email\":\"flanda@emba.com\",\"fullName\":\"Carlos Fernando Landa Alejandro\",\"shortName\":\"flanda\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"382\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"JOHNNY ALDO ALIAGA TELLEZ\",\"trade_name\":\"JOHNNY ALDO ALIAGA TELLEZ\",\"displayName\":\"104 - JOHNNY ALDO ALIAGA TELLEZ\",\"email\":\"JALDO@GMAIL.COM\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"3497834010\",\"primary_external_code\":\"104\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"383\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"JOHNSON \\u0026 JOHNSON DEL PARAGUAY S.A.\",\"trade_name\":\"JOHNSON \\u0026 JOHNSON DEL PARAGUAY S.A.\",\"displayName\":\"105 - JOHNSON \\u0026 JOHNSON DEL PARAGUAY S.A.\",\"email\":\"JLOPEZ02@ITS.JNJ.COM\",\"phone\":\"59521 608800\",\"address\":\"Avda. Gral Santos esq. Concordia - Locales 3 y 4 Z\",\"city\":\"\",\"state\":\"\",\"country\":\"Paraguay\",\"postal_code\":\"\",\"nit\":\"105\",\"primary_external_code\":\"105\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"384\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"JORGE BALDIVIESO\",\"trade_name\":\"JORGE BALDIVIESO\",\"displayName\":\"106 - JORGE BALDIVIESO\",\"email\":\"baldiviesoj@gmail.com\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1515830\",\"primary_external_code\":\"106\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"385\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"JORGE HILTON PE\\u00d1A\",\"trade_name\":\"JORGE HILTON PE\\u00d1A\",\"displayName\":\"143 - JORGE HILTON PE\\u00d1A\",\"email\":\"\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"2016308011\",\"primary_external_code\":\"143\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"386\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"JOSE ALFREDO CISNEROS PORTALES\",\"trade_name\":\"JOSE ALFREDO CISNEROS PORTALES\",\"displayName\":\"666 - JOSE ALFREDO CISNEROS PORTALES\",\"email\":\"\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"666\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"388\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"JUAN BROCH MESTRES\",\"trade_name\":\"JUAN BROCH MESTRES\",\"displayName\":\"107 - JUAN BROCH MESTRES\",\"email\":\"velkens@hotmail.com\",\"phone\":\"73105300 76631122\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"8997402017\",\"primary_external_code\":\"107\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"389\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Juan Carlos Salvatierra\",\"trade_name\":\"Juan Carlos Salvatierra\",\"displayName\":\"295 - Juan Carlos Salvatierra\",\"email\":\"chavo_mx1@hotmail.com\",\"phone\":\"7777777\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"295\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":8,\"username\":\"lmorenog@emba.com\",\"email\":\"lmorenog@emba.com\",\"fullName\":\"Luis Moreno Gutierrez\",\"shortName\":\"lmoreno\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"390\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Juan Caros Sousa Senzano\",\"trade_name\":\"Juan Caros Sousa Senzano\",\"displayName\":\"496 - Juan Caros Sousa Senzano\",\"email\":\"juancasousa@gmail.com\",\"phone\":\"70373039\",\"address\":\"Calle Tarija No. 1554\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"7887002\",\"primary_external_code\":\"496\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":20,\"username\":\"jpzegada@emba.com\",\"email\":\"jpzegada@emba.com\",\"fullName\":\"Juan Pablo Zegada\",\"shortName\":\"jzegada\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"391\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"JUAN PABLO SAAVEDRA\",\"trade_name\":\"JUAN PABLO SAAVEDRA\",\"displayName\":\"381 - JUAN PABLO SAAVEDRA\",\"email\":\"jpsaavedra@dispack.com.bo\",\"phone\":\"78188434\",\"address\":\"Cnel. P. Plaza 538, Mendoza, Argentina\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"381\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"392\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"JUGOS BOLIVIANOS SRL\",\"trade_name\":\"JUGOS BOLIVIANOS SRL\",\"displayName\":\"108 - JUGOS BOLIVIANOS SRL\",\"email\":\"joseluishurtado@jugosbolivianos.com.bo\",\"phone\":\"3882909\",\"address\":\"KM 14 1\\/2 CARRETERA COTOCA\",\"city\":\"La Paz\",\"state\":\"La Paz\",\"country\":\"Bolivia\",\"postal_code\":null,\"nit\":\"127585020\",\"primary_external_code\":\"108\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2025-03-17 16:20:35\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"393\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"JULIO ARCE\",\"trade_name\":\"JULIO ARCE\",\"displayName\":\"149 - JULIO ARCE\",\"email\":\"\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"149\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"394\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"JULIO CASTELLANOS\",\"trade_name\":\"JULIO CASTELLANOS\",\"displayName\":\"109 - JULIO CASTELLANOS\",\"email\":\"juliocastellanos@gmail.com\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"109\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"395\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"KAISER SERVICIOS S.R.L.\",\"trade_name\":\"KAISER SERVICIOS S.R.L.\",\"displayName\":\"466 - KAISER SERVICIOS S.R.L.\",\"email\":\"carola.herrera@kaiserbo.com\",\"phone\":\"68923495\",\"address\":\"Carretera a Camiri Km. 19 1\\/2\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1015443027\",\"primary_external_code\":\"466\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"396\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"KAMPO BOLIVIA S.R.L.\",\"trade_name\":\"KAMPO BOLIVIA S.R.L.\",\"displayName\":\"284 - KAMPO BOLIVIA S.R.L.\",\"email\":\"mjemio@emba.com.bo\",\"phone\":\"2125199\",\"address\":\"AV ARCE 2071 EDIF VILLA ELENA DEPTO 5\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"257022027\",\"primary_external_code\":\"284\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"397\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"KIMBERLY BOLIVIA S.A.\",\"trade_name\":\"KIMBERLY BOLIVIA S.A.\",\"displayName\":\"199 - KIMBERLY BOLIVIA S.A.\",\"email\":\"rene.A.Abrego@kcc.com\",\"phone\":\"3465159\",\"address\":\"Parque Industrial, Manzana 5 final av guapay\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1028633023\",\"primary_external_code\":\"199\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"398\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"KPMG - NOKIA\",\"trade_name\":\"KPMG - NOKIA\",\"displayName\":\"319 - KPMG - NOKIA\",\"email\":\"hanna.ryynanen@kpmg.fi\",\"phone\":\"Mobile\",\"address\":\"PO Box 1037 (T\\u00f6\\u00f6l\\u00f6nlahdenkatu 3 A) 00101 Helsinki,\",\"city\":\"\",\"state\":\"\",\"country\":\"Finlandia\",\"postal_code\":\"\",\"nit\":\"319\",\"primary_external_code\":\"319\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"399\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"KUMON INSTITUTO DE EDUCA\\u00c7\\u00c3O LTDA.\",\"trade_name\":\"KUMON INSTITUTO DE EDUCA\\u00c7\\u00c3O LTDA.\",\"displayName\":\"110 - KUMON INSTITUTO DE EDUCA\\u00c7\\u00c3O LTDA.\",\"email\":\"kumon@kumon.com.br\",\"phone\":\"77336772 - 68660895\",\"address\":\"Vallegrande 415, Santa Cruz de la Sierra\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"110\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"400\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"LA BOLIVIANA CIACRUZ DE SEGUROS Y REASEGUROS S.A. (LBC)\",\"trade_name\":\"LA BOLIVIANA CIACRUZ DE SEGUROS Y REASEGUROS S.A. (LBC)\",\"displayName\":\"307 - LA BOLIVIANA CIACRUZ DE SEGUROS Y REASEGUROS S.A. (LBC)\",\"email\":\"laurden.bertaux@lbc.bo\",\"phone\":\"2203806\",\"address\":\"Calle Colon 288 entre Camacho y Mercado\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1007017028\",\"primary_external_code\":\"307\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"401\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"LA PAZ ENTIDAD FINANCIERA DE VIVIENDA\",\"trade_name\":\"LA PAZ ENTIDAD FINANCIERA DE VIVIENDA\",\"displayName\":\"497 - LA PAZ ENTIDAD FINANCIERA DE VIVIENDA\",\"email\":\"lchalco@emba.com.bo\",\"phone\":\"2333030\",\"address\":\"Av. 16 de julio N\\u00b0 1521\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1020427024\",\"primary_external_code\":\"497\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"402\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"LA PROMOTORA ENTIDAD FINANCIERA DE VIVIENDA\",\"trade_name\":\"LA PROMOTORA ENTIDAD FINANCIERA DE VIVIENDA\",\"displayName\":\"329 - LA PROMOTORA ENTIDAD FINANCIERA DE VIVIENDA\",\"email\":\"madiaz@lapromotora.com.bo\",\"phone\":\"72207200\",\"address\":\"Av. Heroinas No. 111 esq. Espa\\u00f1a\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1009387022\",\"primary_external_code\":\"329\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":20,\"username\":\"jpzegada@emba.com\",\"email\":\"jpzegada@emba.com\",\"fullName\":\"Juan Pablo Zegada\",\"shortName\":\"jzegada\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"403\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"LA VITALICIA SEGUROS Y REASEGUROS DE VIDA S.A.\",\"trade_name\":\"LA VITALICIA SEGUROS Y REASEGUROS DE VIDA S.A.\",\"displayName\":\"264 - LA VITALICIA SEGUROS Y REASEGUROS DE VIDA S.A.\",\"email\":\"mlimachi@grupobisa.com\",\"phone\":\"2157800\",\"address\":\"Av. 6 De Agosto No.2860, zona sopocachi\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1020687029\",\"primary_external_code\":\"264\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"404\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"LABORATORIO CATEDRAL SEC. PAT. CLINICA S.R.L.\",\"trade_name\":\"LABORATORIO CATEDRAL SEC. PAT. CLINICA S.R.L.\",\"displayName\":\"453 - LABORATORIO CATEDRAL SEC. PAT. CLINICA S.R.L.\",\"email\":\"mariolyruilowa@laboratoriocatedral.com\",\"phone\":\"59177392531\",\"address\":\"Calle Andr\\u00e9s Ib\\u00e1\\u00f1ez Nro. 115\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1012539022\",\"primary_external_code\":\"453\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"405\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Lafayette (Colombia)\",\"trade_name\":\"Lafayette (Colombia)\",\"displayName\":\"769 - Lafayette (Colombia)\",\"email\":\"\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"769\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"406\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"LATHAM \\u0026 WATKINS\",\"trade_name\":\"LATHAM \\u0026 WATKINS\",\"displayName\":\"340 - LATHAM \\u0026 WATKINS\",\"email\":\"Victoria.Wan@lw.com\",\"phone\":\"+44.2.7710.4686\",\"address\":\"99 Bishopsgate | London EC2M 3XF | United Kingdom\",\"city\":\"\",\"state\":\"\",\"country\":\"Hong Kong\",\"postal_code\":\"\",\"nit\":\"340\",\"primary_external_code\":\"340\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"407\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"LATHAM AND WATKINS\",\"trade_name\":\"LATHAM AND WATKINS\",\"displayName\":\"630 - LATHAM AND WATKINS\",\"email\":\"Victoria.Wan@lw.com\",\"phone\":\"+44.2.7710.4686\",\"address\":\"1271 Avenue of the Americas Nueva York, NY 10020 E\",\"city\":\"\",\"state\":\"\",\"country\":\"Estados Unidos\",\"postal_code\":\"\",\"nit\":\"630\",\"primary_external_code\":\"630\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"408\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"LATI TELECOM INFRASTRUCTURE BOLIVIA S.A.\",\"trade_name\":\"LATI TELECOM INFRASTRUCTURE BOLIVIA S.A.\",\"displayName\":\"542 - LATI TELECOM INFRASTRUCTURE BOLIVIA S.A.\",\"email\":\"echazuda@tigo.net.bo\",\"phone\":\"77812264\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"480560022\",\"primary_external_code\":\"542\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":6,\"username\":\"darredondo@emba.com.bo\",\"email\":\"nicoln042001@gmail.com\",\"fullName\":\"Daniel Marcelo Arredondo Zelada\",\"shortName\":\"darredon\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-03 11:43:07\",\"daysAllow\":302}},{\"id\":\"409\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Levy \\u0026 Salomao Advogados\",\"trade_name\":\"Levy \\u0026 Salomao Advogados\",\"displayName\":\"414 - Levy \\u0026 Salomao Advogados\",\"email\":\"gforsman@levysalomao.com.br\",\"phone\":\"55113600000000000\",\"address\":\"Avenida Brigadeiro Faria Lima, 2601\",\"city\":\"\",\"state\":\"\",\"country\":\"Brasil\",\"postal_code\":\"\",\"nit\":\"414\",\"primary_external_code\":\"414\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"410\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"LG ELECTRONICS\",\"trade_name\":\"LG ELECTRONICS\",\"displayName\":\"111 - LG ELECTRONICS\",\"email\":\"leonardo.ovalle@lge.com\",\"phone\":\"56 2 2941 9404\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"111\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"411\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"LG Electronics Per\\u00fa\",\"trade_name\":\"LG Electronics Per\\u00fa\",\"displayName\":\"543 - LG Electronics Per\\u00fa\",\"email\":\"mario.rosazza@lge.com\",\"phone\":\"5114510000\",\"address\":\"Av. Republica de Colombia 791, piso 12, San Isidro\",\"city\":\"Lima\",\"state\":\"Peru\",\"country\":\"Peru\",\"postal_code\":\"15000\",\"nit\":\"20375755344\",\"primary_external_code\":\"543\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":14.94,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":19,\"username\":\"iayala@emba.com\",\"email\":\"iayala@emba.com\",\"fullName\":\"Ines Ayala\",\"shortName\":\"iayala\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"412\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"LH COREA\",\"trade_name\":\"LH COREA\",\"displayName\":\"299 - LH COREA\",\"email\":\"chseo@lh.or.kr\",\"phone\":\"Bolivia Mobile +591\",\"address\":\"Calle Warnes esq. Chuquisaca, #110 (1er Piso, Ex.\",\"city\":\"\",\"state\":\"\",\"country\":\"Corea del Sur\",\"postal_code\":\"\",\"nit\":\"299\",\"primary_external_code\":\"299\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"413\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Libelula S.R.L.\",\"trade_name\":\"Libelula S.R.L.\",\"displayName\":\"586 - Libelula S.R.L.\",\"email\":\"jmealla@todotix.com\",\"phone\":\"77722222\",\"address\":\"Av.Montenegro1180EdificioBenettonE-10, Piso7, Of1\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"396620021\",\"primary_external_code\":\"586\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":12,\"username\":\"tmercado@emba.com\",\"email\":\"tmercado@emba.com\",\"fullName\":\"Teddy Alberto Mercado Carrion\",\"shortName\":\"tmercado\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"414\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Lilac Solutions Bolivia S.A.\",\"trade_name\":\"Lilac Solutions Bolivia S.A.\",\"displayName\":\"524 - Lilac Solutions Bolivia S.A.\",\"email\":\"andres.brockmann@lilacsolutions.com\",\"phone\":\"591 2 2791554\",\"address\":\"Av SAnchez Bustamante 977\",\"city\":\"La Paz\",\"state\":\"La Paz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"464758021\",\"primary_external_code\":\"524\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":13,\"username\":\"cdelgado@emba.com\",\"email\":\"cdelgado@emba.com\",\"fullName\":\"Cristhian Delgado Ramirez\",\"shortName\":\"cdelgado\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"415\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"LIPESA DEL PERU\",\"trade_name\":\"LIPESA DEL PERU\",\"displayName\":\"678 - LIPESA DEL PERU\",\"email\":\"info@perutrademark.com.pe\",\"phone\":\"+51 997 353 465\",\"address\":\"Calle, Los Hornos 353, Los Olivos, Per\\u00fa\",\"city\":\"\",\"state\":\"\",\"country\":\"Per\\u00fa\",\"postal_code\":\"\",\"nit\":\"678\",\"primary_external_code\":\"678\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"416\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"LLOYD\\u0027S REGISTER AMERICAS\",\"trade_name\":\"LLOYD\\u0027S REGISTER AMERICAS\",\"displayName\":\"691 - LLOYD\\u0027S REGISTER AMERICAS\",\"email\":\"usuario@ejemplo.com\",\"phone\":\"(281) 675-3100\",\"address\":\"1330 Enclave Pkwy Ste 200 Houston?, TX, 77077-2578\",\"city\":\"\",\"state\":\"\",\"country\":\"Estados Unidos\",\"postal_code\":\"\",\"nit\":\"691\",\"primary_external_code\":\"691\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"417\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Maersk Line Peru S.A.\",\"trade_name\":\"Maersk Line Peru S.A.\",\"displayName\":\"851 - Maersk Line Peru S.A.\",\"email\":\"claudia.ausejo@maersk.com\",\"phone\":\"\",\"address\":\"Calle Chinchon 1018 4th Floor, San Isidro, Lima, P\",\"city\":\"\",\"state\":\"\",\"country\":\"Per\\u00fa\",\"postal_code\":\"\",\"nit\":\"20451770099\",\"primary_external_code\":\"851\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":12,\"username\":\"tmercado@emba.com\",\"email\":\"tmercado@emba.com\",\"fullName\":\"Teddy Alberto Mercado Carrion\",\"shortName\":\"tmercado\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"418\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"MAGNESITA\",\"trade_name\":\"MAGNESITA\",\"displayName\":\"696 - MAGNESITA\",\"email\":\"natalia.vieira@magnesita.com\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"696\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"419\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Maha Energy \\u0026 Starboard Partners\",\"trade_name\":\"Maha Energy \\u0026 Starboard Partners\",\"displayName\":\"570 - Maha Energy \\u0026 Starboard Partners\",\"email\":\"barbara.bittencourt@mahaenergy.ca\",\"phone\":\"5.51197E+17\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Brasil\",\"postal_code\":\"\",\"nit\":\"570\",\"primary_external_code\":\"570\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":18,\"username\":\"flanda@emba.com\",\"email\":\"flanda@emba.com\",\"fullName\":\"Carlos Fernando Landa Alejandro\",\"shortName\":\"flanda\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"420\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"MAJOBOL\",\"trade_name\":\"MAJOBOL\",\"displayName\":\"461 - MAJOBOL\",\"email\":\"juanjordan@majobol.com\",\"phone\":\"76936333\",\"address\":\"Av. Beijing y Cap. Ustariz\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"820378018\",\"primary_external_code\":\"461\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":17,\"username\":\"aaraoz@emba.com\",\"email\":\"aaraoz@emba.com\",\"fullName\":\"Alvaro Araoz Ardaya\",\"shortName\":\"aaraoz\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-12-04 15:29:19\",\"daysAllow\":302}},{\"id\":\"421\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"MALAKUT CORREDORES DE REASEGUROS, S.A.\",\"trade_name\":\"MALAKUT CORREDORES DE REASEGUROS, S.A.\",\"displayName\":\"619 - MALAKUT CORREDORES DE REASEGUROS, S.A.\",\"email\":\"irina.mikhaylovskaya@malakut.com.pa\",\"phone\":\"+507 830 51 11\",\"address\":\"BICSA Tower, Of. 4003, Panama City,\",\"city\":\"\",\"state\":\"\",\"country\":\"Panam\\u00e1\",\"postal_code\":\"\",\"nit\":\"619\",\"primary_external_code\":\"619\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"422\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"MANTENIMIENTO Y MONTAJE DE MAQUINARIA INDUSTRIAL MASA BOLIVIA S.A.\",\"trade_name\":\"MANTENIMIENTO Y MONTAJE DE MAQUINARIA INDUSTRIAL MASA BOLIVIA S.A.\",\"displayName\":\"157 - MANTENIMIENTO Y MONTAJE DE MAQUINARIA INDUSTRIAL MASA BOLIVIA S.A.\",\"email\":\"tmercado@emba.com.bo\",\"phone\":\"2791554\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"188660027\",\"primary_external_code\":\"157\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"423\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Marcela Soligno\",\"trade_name\":\"Marcela Soligno\",\"displayName\":\"482 - Marcela Soligno\",\"email\":\"marcelasoligno@yahoo.com\",\"phone\":\"72035333\",\"address\":\"La Paz\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"482\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"424\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"MARCIA VIVIANA CALANI ANTEZANA\",\"trade_name\":\"MARCIA VIVIANA CALANI ANTEZANA\",\"displayName\":\"432 - MARCIA VIVIANA CALANI ANTEZANA\",\"email\":\"viviana.calani@gmail.com\",\"phone\":\"77967687\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"6471348\",\"primary_external_code\":\"432\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":17,\"username\":\"aaraoz@emba.com\",\"email\":\"aaraoz@emba.com\",\"fullName\":\"Alvaro Araoz Ardaya\",\"shortName\":\"aaraoz\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-12-04 15:29:19\",\"daysAllow\":302}},{\"id\":\"425\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"MARCONSULT BOLIVIA SRL\",\"trade_name\":\"MARCONSULT BOLIVIA SRL\",\"displayName\":\"142 - MARCONSULT BOLIVIA SRL\",\"email\":\"rperez.bolivia@marconsult-sidens.com\",\"phone\":\"2432444\",\"address\":\"CALLE GOSABE ESQUINA 6 DE AGOSTO #240\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1006129025\",\"primary_external_code\":\"142\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"426\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Marga Julie Lux\",\"trade_name\":\"Marga Julie Lux\",\"displayName\":\"294 - Marga Julie Lux\",\"email\":\"rmb@emba.com.bo\",\"phone\":\"49062100000000000\",\"address\":\"Alemania\",\"city\":\"\",\"state\":\"\",\"country\":\"Alemania\",\"postal_code\":\"\",\"nit\":\"294\",\"primary_external_code\":\"294\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"427\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Maria Belen Arias Suarez\",\"trade_name\":\"Maria Belen Arias Suarez\",\"displayName\":\"276 - Maria Belen Arias Suarez\",\"email\":\"mabelenarias@gmail.com\",\"phone\":\"75022588\",\"address\":\"AV 6TO ANILLO PIRAI CONDOMINIO XAIAR\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"4560821\",\"primary_external_code\":\"276\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"428\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"MARIA CRISTINA CARDENAS PONCE\",\"trade_name\":\"MARIA CRISTINA CARDENAS PONCE\",\"displayName\":\"523 - MARIA CRISTINA CARDENAS PONCE\",\"email\":\"criscarpo@hotmail.com\",\"phone\":\"71569961\",\"address\":\"LA PAZ\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"582497\",\"primary_external_code\":\"523\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"429\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"MARIA DEL CARMEN MASANES\",\"trade_name\":\"MARIA DEL CARMEN MASANES\",\"displayName\":\"900 - MARIA DEL CARMEN MASANES\",\"email\":\"mcmasanes@hotmail.com\",\"phone\":\"\",\"address\":\"Santa Cruz\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"3902935012\",\"primary_external_code\":\"900\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"430\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Maria Elcy Elvira Pereira de Antelo - Paulo Savoca\",\"trade_name\":\"Maria Elcy Elvira Pereira de Antelo - Paulo Savoca\",\"displayName\":\"473 - Maria Elcy Elvira Pereira de Antelo - Paulo Savoca\",\"email\":\"prsavoca85@gmail.com\",\"phone\":\"70787582\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"749719\",\"primary_external_code\":\"473\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":17,\"username\":\"aaraoz@emba.com\",\"email\":\"aaraoz@emba.com\",\"fullName\":\"Alvaro Araoz Ardaya\",\"shortName\":\"aaraoz\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-12-04 15:29:19\",\"daysAllow\":302}},{\"id\":\"431\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"MARIA TERESA PRIETO YUCRA\",\"trade_name\":\"MARIA TERESA PRIETO YUCRA\",\"displayName\":\"209 - MARIA TERESA PRIETO YUCRA\",\"email\":\"\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1609946\",\"primary_external_code\":\"209\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"432\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"MARIA VIRGINIA FLORES CRONEMBOLD\",\"trade_name\":\"MARIA VIRGINIA FLORES CRONEMBOLD\",\"displayName\":\"616 - MARIA VIRGINIA FLORES CRONEMBOLD\",\"email\":\"virginia.flores@aumentuntech.com\",\"phone\":\"70788170\",\"address\":\"Edif. JARDINES DE ARANJUEZ 1F, c.Quijarro\",\"city\":\"Cochabamba\",\"state\":\"Cochabamba\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"317394\",\"primary_external_code\":\"616\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":17,\"username\":\"aaraoz@emba.com\",\"email\":\"aaraoz@emba.com\",\"fullName\":\"Alvaro Araoz Ardaya\",\"shortName\":\"aaraoz\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-12-04 15:29:19\",\"daysAllow\":302}},{\"id\":\"433\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"MARIANELA CHAMAS\",\"trade_name\":\"MARIANELA CHAMAS\",\"displayName\":\"682 - MARIANELA CHAMAS\",\"email\":\"\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"682\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"434\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Martin Rapp\",\"trade_name\":\"Martin Rapp\",\"displayName\":\"205 - Martin Rapp\",\"email\":\"\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"13508454\",\"primary_external_code\":\"205\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"435\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"MARTINEZ - CALBIMONTE\",\"trade_name\":\"MARTINEZ - CALBIMONTE\",\"displayName\":\"112 - MARTINEZ - CALBIMONTE\",\"email\":\"\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1838597017\",\"primary_external_code\":\"112\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"436\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Marval, OFarrell, Mairal\",\"trade_name\":\"Marval, OFarrell, Mairal\",\"displayName\":\"799 - Marval, OFarrell, Mairal\",\"email\":\"EMS@marval.com\",\"phone\":\"5411 43100100\",\"address\":\"Av Leandro NAlem 882 C1001AAQ Buenos Aires\",\"city\":\"\",\"state\":\"\",\"country\":\"Argentina\",\"postal_code\":\"\",\"nit\":\"799\",\"primary_external_code\":\"799\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"437\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"MATOSCA SOLAR BOLIVIA S.R.L.\",\"trade_name\":\"MATOSCA SOLAR BOLIVIA S.R.L.\",\"displayName\":\"214 - MATOSCA SOLAR BOLIVIA S.R.L.\",\"email\":\"\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"333098029\",\"primary_external_code\":\"214\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"438\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"MB Academy\",\"trade_name\":\"MB Academy\",\"displayName\":\"614 - MB Academy\",\"email\":\"lmoreng@emba.com.bo\",\"phone\":\"591 3 3353515\",\"address\":\"Torre Empresarial CAINCO, Piso 15 Calle Cochabamba\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"614\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"439\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"MB LITIGIOS SRL\",\"trade_name\":\"MB LITIGIOS SRL\",\"displayName\":\"113 - MB LITIGIOS SRL\",\"email\":\"lchalco@emba.com.bo\",\"phone\":\"2791554\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"333492023\",\"primary_external_code\":\"113\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"440\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"MB SERVICIOS REGULATORIOS SRL\",\"trade_name\":\"MB SERVICIOS REGULATORIOS SRL\",\"displayName\":\"235 - MB SERVICIOS REGULATORIOS SRL\",\"email\":\"fsanchez@emba.com.bo\",\"phone\":\"2791554\",\"address\":\"Av Sanchez Bustamente 977 esq calle 16 Calacoto\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"235\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"441\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"MBINMOBILIARIA S.A.\",\"trade_name\":\"MBINMOBILIARIA S.A.\",\"displayName\":\"291 - MBINMOBILIARIA S.A.\",\"email\":\"lmorenog@emba.com.bo\",\"phone\":\"3353515\",\"address\":\"Calle Cochabamba esquina Calle Saavedra Piso 15\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"291\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"442\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"MEDIAFILMS SRL\",\"trade_name\":\"MEDIAFILMS SRL\",\"displayName\":\"114 - MEDIAFILMS SRL\",\"email\":\"scardenas@caribbeancinemas.com\",\"phone\":\"78444519\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"215432029\",\"primary_external_code\":\"114\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"443\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Mediterranean Shippig Company (Bolivia) Limitada\",\"trade_name\":\"Mediterranean Shippig Company (Bolivia) Limitada\",\"displayName\":\"220 - Mediterranean Shippig Company (Bolivia) Limitada\",\"email\":\"ingrid.arce@msc.com\",\"phone\":\"2126610\",\"address\":\"Calle Inofuentes N 1375 Zona: Calacoto\",\"city\":\"La PAz\",\"state\":\"LA PAz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"1020173028\",\"primary_external_code\":\"220\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"445\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"MER TELECOM BOLIVIA S.R.L.\",\"trade_name\":\"MER TELECOM BOLIVIA S.R.L.\",\"displayName\":\"330 - MER TELECOM BOLIVIA S.R.L.\",\"email\":\"rodrigo@merbolivia.com\",\"phone\":\"3355600\",\"address\":\"Calle Cochabamba 710 Esq. Saavedra, Edificio Torre\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"171352023\",\"primary_external_code\":\"330\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":9,\"username\":\"paramayo@emba.com\",\"email\":\"paramayo@emba.com\",\"fullName\":\"Paul Aramayo Salinas\",\"shortName\":\"paramayo\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"446\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Mercedes La zarte\",\"trade_name\":\"Mercedes La zarte\",\"displayName\":\"901 - Mercedes La zarte\",\"email\":\"natsy81@gmail.com\",\"phone\":\"2089161171\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Reino Unido\",\"postal_code\":\"\",\"nit\":\"901\",\"primary_external_code\":\"901\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"447\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Meta Group SRL\",\"trade_name\":\"Meta Group SRL\",\"displayName\":\"365 - Meta Group SRL\",\"email\":\"dhurtado@bpocenter.com.bo\",\"phone\":\"70053026\",\"address\":\"Calle Horario R\\u00edos No. 54, Santa Cruz\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"127457021\",\"primary_external_code\":\"365\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"448\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"METALES Y ACEROS BOLIVIANOS S.R.L.\",\"trade_name\":\"METALES Y ACEROS BOLIVIANOS S.R.L.\",\"displayName\":\"173 - METALES Y ACEROS BOLIVIANOS S.R.L.\",\"email\":\"sporra@metalesdeloriente.com\",\"phone\":\"3888152\",\"address\":\"Kilometro 9 1\\/2 Carretera a Cotoca Diagonal a Frid\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"172888020\",\"primary_external_code\":\"173\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"449\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"MHTNARQ SRL\",\"trade_name\":\"MHTNARQ SRL\",\"displayName\":\"440 - MHTNARQ SRL\",\"email\":\"amorenog@emba.com.bo\",\"phone\":\"69999160\",\"address\":\"Calle Cochabamba No.710 Piso 15\",\"city\":\"La Paz\",\"state\":\"La Paz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"413541020\",\"primary_external_code\":\"440\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":13,\"username\":\"cdelgado@emba.com\",\"email\":\"cdelgado@emba.com\",\"fullName\":\"Cristhian Delgado Ramirez\",\"shortName\":\"cdelgado\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"450\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"MINERA ALCIRA SOCIEDAD ANONIMA ALCIRA S.A.\",\"trade_name\":\"MINERA ALCIRA SOCIEDAD ANONIMA ALCIRA S.A.\",\"displayName\":\"590 - MINERA ALCIRA SOCIEDAD ANONIMA ALCIRA S.A.\",\"email\":\"hianny.romero@newpacificmetals.com\",\"phone\":\"2-2150583\",\"address\":\"Calle 11 de Calacoto, Piso 10\",\"city\":\"La Paz\",\"state\":\"La Paz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"155512027\",\"primary_external_code\":\"590\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":12,\"username\":\"tmercado@emba.com\",\"email\":\"tmercado@emba.com\",\"fullName\":\"Teddy Alberto Mercado Carrion\",\"shortName\":\"tmercado\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"451\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"MINERA EDERRA SRL\",\"trade_name\":\"MINERA EDERRA SRL\",\"displayName\":\"115 - MINERA EDERRA SRL\",\"email\":\"augaldeb@citadelinversiones.com\",\"phone\":\"767 51 441\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"204700027\",\"primary_external_code\":\"115\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"452\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"MINERA SAN CRISTOBAL SA\",\"trade_name\":\"MINERA SAN CRISTOBAL SA\",\"displayName\":\"116 - MINERA SAN CRISTOBAL SA\",\"email\":\"eduardo.torrecillas@minerasancristobal.com\",\"phone\":\"2623400\",\"address\":\"Calle 15 Torre Ketal, Piso 15 Calacoto\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1020415021\",\"primary_external_code\":\"116\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"453\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Miriam Ortiz\",\"trade_name\":\"Miriam Ortiz\",\"displayName\":\"316 - Miriam Ortiz\",\"email\":\"miriamortiz_0710@hotmail.com\",\"phone\":\"67979680\",\"address\":\"Torre Ketal piso 5\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"316\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"454\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Mitrani Caballero Ruiz Moreno\",\"trade_name\":\"Mitrani Caballero Ruiz Moreno\",\"displayName\":\"334 - Mitrani Caballero Ruiz Moreno\",\"email\":\"maria.paula.diaz@mcolex.com\",\"phone\":\"+54 (11) 4590-8617\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Argentina\",\"postal_code\":\"\",\"nit\":\"334\",\"primary_external_code\":\"334\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":6,\"username\":\"darredondo@emba.com.bo\",\"email\":\"nicoln042001@gmail.com\",\"fullName\":\"Daniel Marcelo Arredondo Zelada\",\"shortName\":\"darredon\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-03 11:43:07\",\"daysAllow\":302}},{\"id\":\"455\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"MLU B.V.\",\"trade_name\":\"MLU B.V.\",\"displayName\":\"487 - MLU B.V.\",\"email\":\"nlbelikova@yandex-team.com\",\"phone\":\"\",\"address\":\"Schipol Bouleverad 291\",\"city\":\"\",\"state\":\"\",\"country\":\"Rusia\",\"postal_code\":\"\",\"nit\":\"487\",\"primary_external_code\":\"487\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":8,\"username\":\"lmorenog@emba.com\",\"email\":\"lmorenog@emba.com\",\"fullName\":\"Luis Moreno Gutierrez\",\"shortName\":\"lmoreno\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"457\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Moeller IP Advisors\",\"trade_name\":\"Moeller IP Advisors\",\"displayName\":\"786 - Moeller IP Advisors\",\"email\":\"Luisina.Lanza@moellerip.com\",\"phone\":\"+54 11 4781-1770\",\"address\":\"Av. del Libertador 5954, C1428 ARP, Buenos Aires,\",\"city\":\"\",\"state\":\"\",\"country\":\"Argentina\",\"postal_code\":\"\",\"nit\":\"786\",\"primary_external_code\":\"786\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"458\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"MONOPOL\",\"trade_name\":\"MONOPOL\",\"displayName\":\"117 - MONOPOL\",\"email\":\"mlarrazabal@pinturasmonopol.com\",\"phone\":\"2180222\",\"address\":\"CALLE COBENDO #1\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1020525025\",\"primary_external_code\":\"117\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"459\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Monterrey\",\"trade_name\":\"Monterrey\",\"displayName\":\"554 - Monterrey\",\"email\":\"jvalencia@monterreysrl.com.bo\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"554\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":8,\"username\":\"lmorenog@emba.com\",\"email\":\"lmorenog@emba.com\",\"fullName\":\"Luis Moreno Gutierrez\",\"shortName\":\"lmoreno\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"460\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Mora Cue\",\"trade_name\":\"Mora Cue\",\"displayName\":\"516 - Mora Cue\",\"email\":\"fauzi.antakli@moracue.com\",\"phone\":\"59597300000000000\",\"address\":\"Paraguay\",\"city\":\"\",\"state\":\"\",\"country\":\"Paraguay\",\"postal_code\":\"\",\"nit\":\"516\",\"primary_external_code\":\"516\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":8,\"username\":\"lmorenog@emba.com\",\"email\":\"lmorenog@emba.com\",\"fullName\":\"Luis Moreno Gutierrez\",\"shortName\":\"lmoreno\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"461\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"MORENO BALDIVIESO SRL\",\"trade_name\":\"MORENO BALDIVIESO SRL\",\"displayName\":\"375 - MORENO BALDIVIESO SRL\",\"email\":\"lchalco@emba.com.bo\",\"phone\":\"69999136\",\"address\":\"Av Sanchez Lima 977 calle 16 calacoto\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"337536022\",\"primary_external_code\":\"375\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"462\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"MORENOBALDIVIESO INMOBILIARIA S.A.\",\"trade_name\":\"MORENOBALDIVIESO INMOBILIARIA S.A.\",\"displayName\":\"561 - MORENOBALDIVIESO INMOBILIARIA S.A.\",\"email\":\"lmorenog@emba.com.bo\",\"phone\":\"78804989\",\"address\":\"CALLE CBBA TORRE EMPRESARIAL CAINCO PISO 15\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"383163029\",\"primary_external_code\":\"561\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"463\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Morgan \\u0026 Morgan\",\"trade_name\":\"Morgan \\u0026 Morgan\",\"displayName\":\"400 - Morgan \\u0026 Morgan\",\"email\":\"carolina.tejada@morimor.com\",\"phone\":\"5072657777\",\"address\":\"MMG Tower, Piso 23, Av. Paseo del Mar, Panam\\u00e1\",\"city\":\"\",\"state\":\"\",\"country\":\"Panam\\u00e1\",\"postal_code\":\"\",\"nit\":\"400\",\"primary_external_code\":\"400\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"464\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"MUGEBUSCH\",\"trade_name\":\"MUGEBUSCH\",\"displayName\":\"369 - MUGEBUSCH\",\"email\":\"janeth.velarde@mugebush.org\",\"phone\":\"2444124\",\"address\":\"calle Montevideo 142 edificio Zambrana Planta Baja\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1005735026\",\"primary_external_code\":\"369\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"465\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"NACIONAL SEGUROS PATRIMONIALES Y FIANZAS S.A.\",\"trade_name\":\"NACIONAL SEGUROS PATRIMONIALES Y FIANZAS S.A.\",\"displayName\":\"118 - NACIONAL SEGUROS PATRIMONIALES Y FIANZAS S.A.\",\"email\":\"jhparada@nacionalseguros.com.bo\",\"phone\":\"3716262\",\"address\":\"AV. SANTA CRUZ ESQUINA CALLE LA SALLE 2DO ANILLO P\",\"city\":\"La Paz\",\"state\":\"La Paz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"145776027\",\"primary_external_code\":\"118\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-09-05 10:22:17\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"466\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"NACIONAL SEGUROS VIDA Y SALUD S.A. edit\",\"trade_name\":\"NACIONAL SEGUROS VIDA Y SALUD S.A.edit\",\"displayName\":\"145 - NACIONAL SEGUROS VIDA Y SALUD S.A.edit\",\"email\":\"dpaz@nacionalseguros.com.bo\",\"phone\":\"3716262\",\"address\":\"AV. SANTA CRUZ ESQUINA CALLE LA SALLE 2DO ANILLO P\",\"city\":\"Santa Cruz\",\"state\":\"Santa Cruz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"1028483024\",\"primary_external_code\":\"145\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-09-05 11:02:10\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"467\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"NADDRA RESOURCES PTE LTD\",\"trade_name\":\"NADDRA RESOURCES PTE LTD\",\"displayName\":\"675 - NADDRA RESOURCES PTE LTD\",\"email\":\"francois.beuzelin@naddra.com\",\"phone\":\"\",\"address\":\"10 ANSON ROAD, #21-07, INTERNATIONAL PLAZA, Singap\",\"city\":\"\",\"state\":\"\",\"country\":\"Singapur\",\"postal_code\":\"\",\"nit\":\"675\",\"primary_external_code\":\"675\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"468\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Nancy Campero\",\"trade_name\":\"Nancy Campero\",\"displayName\":\"621 - Nancy Campero\",\"email\":\"jvalencia@monterreysrl.com.bo\",\"phone\":\"72100314\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"952112014\",\"primary_external_code\":\"621\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":8,\"username\":\"lmorenog@emba.com\",\"email\":\"lmorenog@emba.com\",\"fullName\":\"Luis Moreno Gutierrez\",\"shortName\":\"lmoreno\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"469\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"NATIONAL OILWELL VARCO DE BOLIVIA S.R.L.\",\"trade_name\":\"NATIONAL OILWELL VARCO DE BOLIVIA S.R.L.\",\"displayName\":\"217 - NATIONAL OILWELL VARCO DE BOLIVIA S.R.L.\",\"email\":\"fabiola.balcazar@n.o.v.com\",\"phone\":\"3476887\",\"address\":\"5to Anillo Via Perimetral Externa, Parque Industri\",\"city\":\"Santa Cruz\",\"state\":\"Bolivia\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"1015167028\",\"primary_external_code\":\"217\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"470\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"NAVITIME JAPAN\",\"trade_name\":\"NAVITIME JAPAN\",\"displayName\":\"336 - NAVITIME JAPAN\",\"email\":\"takashi_unoki@noandt.com\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Jap\\u00f3n\",\"postal_code\":\"\",\"nit\":\"336\",\"primary_external_code\":\"336\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":6,\"username\":\"darredondo@emba.com.bo\",\"email\":\"nicoln042001@gmail.com\",\"fullName\":\"Daniel Marcelo Arredondo Zelada\",\"shortName\":\"darredon\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-03 11:43:07\",\"daysAllow\":302}},{\"id\":\"471\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"NELDY ANDRADE\",\"trade_name\":\"NELDY ANDRADE\",\"displayName\":\"152 - NELDY ANDRADE\",\"email\":\"\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"469854\",\"primary_external_code\":\"152\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"472\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"NEWDECO S.R.L.\",\"trade_name\":\"NEWDECO S.R.L.\",\"displayName\":\"502 - NEWDECO S.R.L.\",\"email\":\"gerencia.novitadue@gmail.com\",\"phone\":\"72204362\",\"address\":\"AV. HUMBOLDT #619 ENTRE GUAMAN POMA Y DISTRIBUIDOR\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"394425021\",\"primary_external_code\":\"502\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":17,\"username\":\"aaraoz@emba.com\",\"email\":\"aaraoz@emba.com\",\"fullName\":\"Alvaro Araoz Ardaya\",\"shortName\":\"aaraoz\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-12-04 15:29:19\",\"daysAllow\":302}},{\"id\":\"473\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Nexus Group\",\"trade_name\":\"Nexus Group\",\"displayName\":\"335 - Nexus Group\",\"email\":\"gustavo.yokoo@nexusgroup.com.pe\",\"phone\":\"T. +51 (1) 6192060 E\",\"address\":\"Per\\u00fa\",\"city\":\"\",\"state\":\"\",\"country\":\"Per\\u00fa\",\"postal_code\":\"\",\"nit\":\"335\",\"primary_external_code\":\"335\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"474\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"NILPETER USA INC\",\"trade_name\":\"NILPETER USA INC\",\"displayName\":\"707 - NILPETER USA INC\",\"email\":\"jpp@nilpeter.com\",\"phone\":\"+51 9872 20671\",\"address\":\"Nilpeter Andina Av. Comandante Aristides Aljovin 6\",\"city\":\"\",\"state\":\"\",\"country\":\"Per\\u00fa\",\"postal_code\":\"\",\"nit\":\"707\",\"primary_external_code\":\"707\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"475\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"NOV DOWNHOLE BOLIVIA S.R.L.\",\"trade_name\":\"NOV DOWNHOLE BOLIVIA S.R.L.\",\"displayName\":\"197 - NOV DOWNHOLE BOLIVIA S.R.L.\",\"email\":\"karina.pilon@nov.com\",\"phone\":\"3524107\",\"address\":\"Zona Doble V\\u00eda La Guardia Avenida San Mart\\u00edn de Po\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1015299026\",\"primary_external_code\":\"197\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null}]}}}\n","time":"2025-07-30T10:49:08-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: POST https://apinewtm.com/graphql/\nHeaders: map[Accept:[application/json] Authorization:[Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJpYXQiOjE3NTM4ODY1MjIsImV4cCI6MTc1Mzk2NjUyMiwiaWQiOjEwNSwidXNlcm5hbWUiOiJpbnRlZ3JhY2lvbmVzQGVtYmEuYm8iLCJhcGlrZXkiOiI5Yzg0ZjYzZTRlMzk2ZGZmOWU5ZjU3NDI5OGRmZWUzOSIsImFwaWtleUNyZWF0ZWRBdCI6eyJkYXRlIjoiMjAyNS0wNy0xNyAxMDo0MToyNS4wMDAwMDAiLCJ0aW1lem9uZV90eXBlIjozLCJ0aW1lem9uZSI6IkFtZXJpY2EvQm9nb3RhIn0sImZ1bGxOYW1lIjoiSW50ZWdyYWNpw7NuIEVNQkEiLCJlbWFpbCI6ImludGVncmFjaW9uZXNAZW1iYS5ibyIsImxvY2FsZSI6ImVzIiwiZGF5c0FsbG93ZWQiOjMwLCJpc0Nvb3JkaW5hdG9yIjpmYWxzZSwidHlwZVRhc2tWaWV3IjoibGlzdHMiLCJkYXlzYWxsb3ciOjMwLCJyb2xlcyI6e30sInNob3J0X25hbWUiOiJJTi5FTUJBIiwicGVybWlzc2lvbnMiOlsic3luY19leHRlcm5hbF9idXNpbmVzcyIsInN5bmNfZXh0ZXJuYWxfY3VzdG9tZXIiLCJzeW5jX2V4dGVybmFsX21pbGVzdG9uZSIsImFic2VuY2VfYXBwcm92ZSIsImFic2VuY2VfY3JlYXRlX2FsbCIsImFic2VuY2VfY3JlYXRlX293biIsImFic2VuY2VfbWVudSIsImFjY291bnRpbmdfYnVzaW5lc3NfbGlzdCIsImFjY291bnRpbmdfY3VzdG9tZXJfbGlzdCIsImJpbGxpbmdfcGVyaW9kX2RlbGV0ZV9hbGwiLCJiaWxsaW5nX3BlcmlvZF9lZGl0X2FsbCIsImJpbGxpbmdfcGVyaW9kX2xpc3QiLCJiaWxsaW5nX3BlcmlvZF9yZWFjdGl2YXRlIiwiYm9hcmRfcmF0ZV91c2VyX2NyZWF0ZSIsImJvYXJkX3JhdGVfdXNlcl9lZGl0IiwiYnVzaW5lc3NfY3JlYXRlIiwiYnVzaW5lc3NfZGVzY3JpcHRpb25fc2F2ZSIsImJ1c2luZXNzX2VkaXQiLCJidXNpbmVzc19saXN0X2FsbCIsImJ1c2luZXNzX21lbnUiLCJidXNpbmVzc19yZXNwb25zaWJsZV9saXN0X2FsbCIsImJ1c2luZXNzX3NlZV9iaWxsaW5nX2luZm8iLCJidXNpbmVzc2VzX2FsbG93ZWRfdXNlcl9jcmVhdGUiLCJidXNpbmVzc2VzX2FsbG93ZWRfdXNlcl9kZWxldGUiLCJjb21wYW55X2Rpc2FibGUiLCJjb21wYW55X2VkaXQiLCJjb21wYW55X2xpc3QiLCJjb25jZXB0X2NyZWF0ZSIsImNvbmNlcHRfZWRpdCIsImNvbmNlcHRfbWVudSIsImNvbnRhY3RfY3JlYXRlIiwiY29udGFjdF9jcmVhdGVfZmFzdCIsImNvbnRhY3RfZWRpdCIsImNvbnRhY3RfbGlzdCIsImNvbnRhY3RfbWVudSIsImN1c3RvbWVyX2NyZWF0ZSIsImN1c3RvbWVyX2NyZWF0ZV9mYXN0IiwiY3VzdG9tZXJfZWRpdCIsImN1c3RvbWVyX2xpc3QiLCJjdXN0b21lcl9saXN0X2FsbCIsImN1c3RvbWVyX21lbnUiLCJleHBlbnNlX2NyZWF0ZV9hbGwiLCJleHBlbnNlX2RlbGV0ZV9hbGwiLCJleHBlbnNlX2R1cGxpY2F0ZSIsImV4cGVuc2VfZWRpdF9hbGwiLCJleHBlbnNlX2xpc3RfYWxsIiwiZXhwZW5zZV9tZW51IiwiZXhwZW5zZV9yZWplY3RfYWxsIiwiZmFiX3Nob3ciLCJmaWxlX21lbnUiLCJnZW9yZWZlcmVuY2VfY3JlYXRlIiwiZ2VvcmVmZXJlbmNlX2VkaXQiLCJnZW9yZWZlcmVuY2VfbWVudSIsImdvX3RvX2xlZ2FjeSIsImluZGljYXRvcnNfbWVudSIsImludm9pY2VfY3JlYXRlIiwiaW52b2ljZV9kZXRhaWxfbGlzdF9hbGwiLCJpbnZvaWNlX2ZpeF90aW1lc19jdXN0b21fdmFsdWUiLCJpbnZvaWNlX2xpc3RfYWxsIiwiaW52b2ljZWFkdmFuY2VfY3JlYXRlIiwiaW52b2ljZWFkdmFuY2VfbGlzdCIsImludm9pY2VhZHZhbmNlX3VwZGF0ZSIsImxvZ19saXN0X2FsbCIsImxvZ19saXN0X293biIsIm1pbGVzdG9uZV9jcmVhdGUiLCJtaWxlc3RvbmVfZGVsZXRlIiwibWlsZXN0b25lX2VkaXQiLCJtb250aGx5X2ZpeF9yYXRlX2dyb3VwX2NyZWF0ZSIsIm1vbnRobHlfZml4X3JhdGVfZ3JvdXBfZWRpdCIsIm1vbnRobHlfdXNlcl9jb3N0X2NyZWF0ZSIsIm1vbnRobHlfdXNlcl9jb3N0X2VkaXQiLCJwYXltZW50X2NyZWF0ZSIsInBheW1lbnRfZGVsZXRlIiwicGF5bWVudF9lZGl0IiwicGF5bWVudF9tZW51IiwicHJvY2VkdXJlX21lbnUiLCJwcm9jZWR1cmVfcmF0ZV9jcmVhdGUiLCJwcm9jZWR1cmVfcmF0ZV9kZXRhaWxfY3JlYXRlIiwicHJvY2VkdXJlX3JhdGVfZGV0YWlsX2VkaXQiLCJwcm9jZWR1cmVfcmF0ZV9kZXRhaWxfbGlzdCIsInByb2NlZHVyZV9yYXRlX2VkaXQiLCJwcm9jZWR1cmVfcmF0ZV9saXN0IiwicHJvY2VkdXJlX3JhdGVfbWVudSIsInByb2NlZHVyZV90cmFuc2FjdGlvbl9saXN0IiwicHJvamVjdF9hcmNoaXZlX2Nhc2NhZGVfYWxsIiwicHJvamVjdF9kZWxldGVfY2FzY2FkZV9hbGwiLCJwcm9qZWN0X3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInJhdGVfYnVzaW5lc3NfY2F0ZWdvcnlfY3JlYXRlIiwicmF0ZV9idXNpbmVzc19jYXRlZ29yeV9lZGl0IiwicmF0ZV9idXNpbmVzc191c2VyX2NyZWF0ZSIsInJhdGVfYnVzaW5lc3NfdXNlcl9lZGl0IiwicmF0ZV9leGNoYW5nZV9jcmVhdGUiLCJyYXRlX2V4Y2hhbmdlX2VkaXQiLCJyYXRlX2V4Y2hhbmdlX2xpc3QiLCJyYXRlX3VzZXJfY3JlYXRlIiwicmF0ZV91c2VyX2VkaXQiLCJyb2xlX2NyZWF0ZSIsInJvbGVfZWRpdF9hbGwiLCJyb2xlX2xpc3RfYWxsIiwic2VjdGlvbl9hcmNoaXZlX2Nhc2NhZGVfYWxsIiwic2VjdGlvbl9kZWxldGVfY2FzY2FkZV9hbGwiLCJzZWN0aW9uX3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInNlZV9tZW51X3JhdGVfZXhjaGFuZ2UiLCJzZXJpZV9jcmVhdGUiLCJzZXJpZV9lZGl0Iiwic2VyaWVfbWVudSIsInNldHRpbmdzX3ZpZXciLCJzdXBwbGllcl9jcmVhdGUiLCJ0YXNrX2FkZF90aW1lX2FsbCIsInRhc2tfYWRkX3RpbWVfb3duIiwidGFza19hc3NpZ25lZF91c2VyX2VtYWlsIiwidGFza19jbG9zZWRfZW1haWwiLCJ0YXNrX2NyZWF0ZV9hbGwiLCJ0YXNrX2NyZWF0ZV9jb21tZW50X2VtYWlsIiwidGFza19jcmVhdGVfc2VsZiIsInRhc2tfY3JlYXRlX3RlYW0iLCJ0YXNrX2RlbGV0ZV9hbGwiLCJ0YXNrX2RlbGV0ZV9vd24iLCJ0YXNrX2RlbGV0ZV90ZWFtIiwidGFza19lZGl0X2FsbCIsInRhc2tfZWRpdF9kdWVfZGF0ZSIsInRhc2tfZWRpdF9vd24iLCJ0YXNrX2VkaXRfdGVhbSIsInRhc2tfbGlzdF9hbGwiLCJ0YXNrX2xpc3Rfb3duIiwidGFza19saXN0X3RlYW0iLCJ0YXNrX21hc3NpdmVpbXBvcnQiLCJ0YXNrX21lbnUiLCJ0YXNrX21pZ3JhdGlvbiIsInRhc2tfc2V0X2FkZGl0aW9uYWxfYXNzaWduZWVzIiwidGFza19zZXRfZHVlX2RhdGUiLCJ0YXNrX3NldF9lc3RpbWF0ZWRfdGltZSIsInRhc2tfc2V0X3ByaW9yaXR5IiwidGFza19zZXRfcHJvZ3Jlc3MiLCJ0YXhfZWRpdF9hbGwiLCJ0YXhfbGlzdF9hbGwiLCJ0ZWFtX2FyY2hpdmVfY2FzY2FkZV9hbGwiLCJ0ZWFtX2NyZWF0ZV9hbGwiLCJ0ZWFtX2RlbGV0ZV9hbGwiLCJ0ZWFtX2VkaXRfYWxsIiwidGVhbV9saXN0X2FsbCIsInRlYW1fbGlzdF9vd24iLCJ0ZWFtX3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInRpbWVfYWNjZXB0X2FsbCIsInRpbWVfYWNjZXB0X293biIsInRpbWVfYXBwcm92ZV9hbGwiLCJ0aW1lX2FwcHJvdmVfb3duIiwidGltZV9jcmVhdGVfYWxsIiwidGltZV9jcmVhdGVfb3duIiwidGltZV9kZWxldGVfYWxsIiwidGltZV9kZWxldGVfb3duIiwidGltZV9kZW55X2FsbCIsInRpbWVfZGVueV9vd24iLCJ0aW1lX2Rvd25sb2FkZmlsZV9hbGwiLCJ0aW1lX2Rvd25sb2FkZmlsZV9vd24iLCJ0aW1lX2VkaXRfYWxsIiwidGltZV9lZGl0X2Nsb3NlX3BlcmlvZF9hbGwiLCJ0aW1lX2VkaXRfY2xvc2VfcGVyaW9kX293biIsInRpbWVfZWRpdF9vd24iLCJ0aW1lX2xpc3RfYWxsIiwidGltZV9saXN0X293biIsInRpbWVfbWVudSIsInRpbWVfbWludXRlc196ZXJvIiwidGltZV9yZWplY3RfYWxsIiwidGltZV9yZXN0cmljdGVkX3BlcmlvZF9jcmVhdGUiLCJ0aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX2VkaXQiLCJ0aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX21lbnUiLCJ0aW1lX3NoYXJlX2FsbCIsInRpbWVfc2hhcmVfb3duIiwidGltZV9zaG93X2NhbGVuZGFyX3ZpZXciLCJ0aW1lX3VwbG9hZGZpbGVfYWxsIiwidGltZV91cGxvYWRmaWxlX293biIsInRyYW5zYWN0aW9uX2FkYXB0ZXJfbGlzdCIsInRyYW5zYWN0aW9uX2xpc3QiLCJ1c2VyX2Fic2VuY2VzX3Nob3ciLCJ1c2VyX2Nvc3RfY3JlYXRlIiwidXNlcl9jb3N0X2VkaXQiLCJ1c2VyX2Nvc3RfbGlzdCIsInVzZXJfY29zdF9tZW51IiwidXNlcl9jb3N0X3JhdGVfY3JlYXRlIiwidXNlcl9jb3N0X3JhdGVfZWRpdCIsInVzZXJfY29zdF9yYXRlX2xpc3QiLCJ1c2VyX2NyZWF0ZSIsInVzZXJfZGlzYWJsZSIsInVzZXJfZWRpdCIsInVzZXJfZWRpdF9kYXlzX2FsbG93X29ubHkiLCJ1c2VyX2dyb3VwX3JvbGVfY3JlYXRlX2FsbCIsInVzZXJfZ3JvdXBfcm9sZV9kZWxldGVfYWxsIiwidXNlcl9ncm91cF9yb2xlX2VkaXRfYWxsIiwidXNlcl9ncm91cF9yb2xlc19saXN0X2FsbCIsInVzZXJfbGlzdCIsInVzZXJfbGlzdF9hbGwiLCJ1c2VyX21hc3NfYWN0aXZhdGlvbiIsInVzZXJfcHJvZHVjdGl2aXR5X2NyZWF0ZSIsInVzZXJfcHJvZHVjdGl2aXR5X2Rpc2FibGUiLCJ1c2VyX3Byb2R1Y3Rpdml0eV9lZGl0IiwidXNlcl9wcm9kdWN0aXZpdHlfZW5hYmxlIiwidXNlcl9wcm9kdWN0aXZpdHlfbWVudSIsInVzZXJfdGltZV9yZXN0cmljdGVkX3BlcmlvZF9jcmVhdGUiLCJ1c2VyX3RpbWVfcmVzdHJpY3RlZF9wZXJpb2RfZGVsZXRlIiwidXNlcl90aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX2VkaXQiLCJ1c2VyZ3JvdXBfY3JlYXRlX2FsbCIsInVzZXJncm91cF9kZWxldGVfYWxsIiwidXNlcmdyb3VwX2VkaXRfYWxsIiwidXNlcmdyb3VwX2xpc3RfYWxsIiwidXNlcmdyb3VwX21lbnUiLCJ1c2Vyc191c2VyX2dyb3VwX2NyZWF0ZV9hbGwiLCJ1c2Vyc191c2VyX2dyb3VwX2RlbGV0ZV9hbGwiLCJ1c2Vyc191c2VyX2dyb3VwX2VkaXRfYWxsIiwidXNlcnNfdXNlcl9ncm91cHNfbGlzdF9hbGwiXSwiaG9tZXBhZ2UiOm51bGx9.kShN7NXGoaz1oFro-yYNyIpIEcnNpo1GiB8SFGKFUJtDQoqyp1I1w-CMA8Kta3vWXnUZwx-y2z1yVSJaMpZbqQgKFlakpcf6351bZSL8IAUPExSfLz0HYYCWFx-Usx94BBTqosKsRhnT8PkPN3dGxs8-XTIEDi9gN-Pk9OSHmM5mPkTsaaxTY40M-F7Y0Up2y6s_lwFaX13CmstiYZSXzyKL9SUBBx-E6-8qQAfuKPIoZ_50jSGPW98-IkAcWwqO6yGf-M07dSfFZ2vLfwc3ulHm2p8jVSmRxJ_O43BEWQD5cvqGbVIvSMXkS4y98DL4Vencjjg27iu3CUJsDNBBTg] Content-Type:[application/json] Origin:[https://azure-function.timemanagerweb.com] Tenant-Name:[pruebas-dos] User-Agent:[Mozilla/5.0 (X11; Linux x86_64)...]]\nBody: map[query:query ($limit: Int, $orderBy: String, $orderDesc: Boolean, $page: Int) {\n CustomersMeta(limit: $limit, orderBy: $orderBy, orderDesc: $orderDesc, page: $page) {\n meta {\n hasNextPage\n hasPreviousPage\n limit\n next\n page\n pages\n previous\n total\n }\n rows {\n id\n code\n number\n color\n name\n trade_name\n displayName\n email\n phone\n address\n city\n state\n country\n postal_code\n nit\n primary_external_code\n status\n statusMarking\n billingLimitDate\n recepctionLimitDate\n dmsIntegration\n cmrRequiredDocuments\n cmrPayTms\n enabled\n created_at\n updated_at\n valueTax\n withIva\n paymentDays\n national\n enterpriseGroup\n responsiblePartner {\n id\n username\n email\n fullName\n shortName\n locale\n userType\n superAdmin\n enabled\n created_at\n updated_at\n daysAllow\n }\n }\n }\n} variables:map[limit:100 orderBy:orderBy orderDesc:true page:6]]\n","time":"2025-07-30T10:49:08-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: POST https://apinewtm.com/graphql/ | Status: 200 | Duration: 471.1811ms\nHeaders: map[Access-Control-Allow-Credentials:[true] Access-Control-Allow-Origin:[https://azure-function.timemanagerweb.com] Access-Control-Expose-Headers:[link, access-control-allow-credentials] Cache-Control:[no-cache, private] Content-Type:[application/json] Date:[Wed, 30 Jul 2025 14:49:08 GMT] Server:[] Vary:[Authorization]]\nBody: {\"data\":{\"CustomersMeta\":{\"meta\":{\"hasNextPage\":true,\"hasPreviousPage\":true,\"limit\":100,\"next\":7,\"page\":6,\"pages\":10,\"previous\":5,\"total\":919},\"rows\":[{\"id\":\"476\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"NUC ADVISOR\",\"trade_name\":\"NUC ADVISOR\",\"displayName\":\"265 - NUC ADVISOR\",\"email\":\"darredondo@emba.com.bo\",\"phone\":\"2791554\",\"address\":\"av. sanchez bustamante 977\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"265\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"477\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Ogletree, Deakins, Nash, Smoak \\u0026 Stewart, P.C.\",\"trade_name\":\"Ogletree, Deakins, Nash, Smoak \\u0026 Stewart, P.C.\",\"displayName\":\"327 - Ogletree, Deakins, Nash, Smoak \\u0026 Stewart, P.C.\",\"email\":\"christopher.anderson@ogletree.com\",\"phone\":\"123456\",\"address\":\"211 King Street, Suite 200 | Charleston, SC 29401\",\"city\":\"Charleston\",\"state\":\"Charleston\",\"country\":\"United Kingdom\",\"postal_code\":\"0\",\"nit\":\"327\",\"primary_external_code\":\"327\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"478\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Omnilife de Bolivia\",\"trade_name\":\"Omnilife de Bolivia\",\"displayName\":\"456 - Omnilife de Bolivia\",\"email\":\"juan.herrera@omnilife.com\",\"phone\":\"2112217\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"456\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":16,\"username\":\"rburgos@emba.com\",\"email\":\"rburgos@emba.com\",\"fullName\":\"Edwin Rodrigo Burgos Fernandez\",\"shortName\":\"rburgos\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"479\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"ONG ASOCIACI\\u00d3N NUEVO CAMINO\",\"trade_name\":\"ONG ASOCIACI\\u00d3N NUEVO CAMINO\",\"displayName\":\"624 - ONG ASOCIACI\\u00d3N NUEVO CAMINO\",\"email\":\"rburgos@emba.com.bo\",\"phone\":\"70515325\",\"address\":\"Miraflores\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"624\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":21,\"username\":\"mblanco@emba.com\",\"email\":\"mblanco@emba.com\",\"fullName\":\"Mois\\u00e9s Marco Blanco Iturri\",\"shortName\":\"mblanco\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"480\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"OPERADORA CARIBE\\u00d1A SRL\",\"trade_name\":\"OPERADORA CARIBE\\u00d1A SRL\",\"displayName\":\"119 - OPERADORA CARIBE\\u00d1A SRL\",\"email\":\"scardenas@caribbeancinemas.com\",\"phone\":\"3112518\",\"address\":\"CALLE MONSE\\u00d1OR SANTISTEVAN N\\u00b0 499 PISO\\u00a0BARRIO SUR\",\"city\":\"Santa CRuz\",\"state\":\"Bolivia\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"357257020\",\"primary_external_code\":\"119\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"481\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"OSCAR OLMOS\",\"trade_name\":\"OSCAR OLMOS\",\"displayName\":\"274 - OSCAR OLMOS\",\"email\":\"cotoelata@hotmail.com\",\"phone\":\"72135395\",\"address\":\"Calle Aguirre No. 239\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1987469\",\"primary_external_code\":\"274\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"482\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Ovando S.A.\",\"trade_name\":\"Ovando S.A.\",\"displayName\":\"423 - Ovando S.A.\",\"email\":\"jaime.ovando@ovando.com\",\"phone\":\"591 3 336 3100\",\"address\":\"Direcci\\u00f3n Av. Crist\\u00f3bal de Mendoza y Av. La Salle\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1023103028\",\"primary_external_code\":\"423\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":12,\"username\":\"tmercado@emba.com\",\"email\":\"tmercado@emba.com\",\"fullName\":\"Teddy Alberto Mercado Carrion\",\"shortName\":\"tmercado\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"484\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"PAE E\\u0026P Bolivia Limited Sucursal Bolivia\",\"trade_name\":\"PAE E\\u0026P Bolivia Limited Sucursal Bolivia\",\"displayName\":\"445 - PAE E\\u0026P Bolivia Limited Sucursal Bolivia\",\"email\":\"jdauria@pan-energy.com\",\"phone\":\"\",\"address\":\"Edificio Torre D\\u00fao 4to Anillo, Av. Ovidio Barbery\",\"city\":\"\",\"state\":\"\",\"country\":\"Argentina\",\"postal_code\":\"\",\"nit\":\"1015389022\",\"primary_external_code\":\"445\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"485\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"PAGOS SRL\",\"trade_name\":\"PAGOS SRL\",\"displayName\":\"344 - PAGOS SRL\",\"email\":\"gpena@pagoexpress.com.bo\",\"phone\":\"\",\"address\":\"Av. Beni 4to anillo, edificio Cubo Empresarial\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"174992029\",\"primary_external_code\":\"344\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"486\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Paisajismo Urbano\",\"trade_name\":\"Paisajismo Urbano\",\"displayName\":\"770 - Paisajismo Urbano\",\"email\":\"comunicacion@paisajismourbano.com\",\"phone\":\"+34 965 688 134\",\"address\":\"Nieves Pi\\u00f1ol, 16 03320 Torrellano, ES\",\"city\":\"\",\"state\":\"\",\"country\":\"Espa\\u00f1a\",\"postal_code\":\"\",\"nit\":\"770\",\"primary_external_code\":\"770\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"487\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"PAN AMERICAN SILVER BOLIVIA S.A.\",\"trade_name\":\"PAN AMERICAN SILVER BOLIVIA S.A.\",\"displayName\":\"135 - PAN AMERICAN SILVER BOLIVIA S.A.\",\"email\":\"lcollarte@panamericansilver.com\",\"phone\":\"22 796990\",\"address\":\"Ave. Fuerza Naval No. 500 Esq. Calle 20 de Calacot\",\"city\":\"La PAz\",\"state\":\"La PAz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"1002673025\",\"primary_external_code\":\"135\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"488\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Panader\\u00eda Victoria\",\"trade_name\":\"Panader\\u00eda Victoria\",\"displayName\":\"577 - Panader\\u00eda Victoria\",\"email\":\"usuario@ejemplo.com\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1014779027\",\"primary_external_code\":\"577\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"489\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Patricia Alborta\",\"trade_name\":\"Patricia Alborta\",\"displayName\":\"390 - Patricia Alborta\",\"email\":\"PALBORTA@caf.com\",\"phone\":\"78777772\",\"address\":\"Av. Arce 2915, La Paz (CAF)\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"3336800\",\"primary_external_code\":\"390\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":12,\"username\":\"tmercado@emba.com\",\"email\":\"tmercado@emba.com\",\"fullName\":\"Teddy Alberto Mercado Carrion\",\"shortName\":\"tmercado\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"490\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Patricia Miranda\",\"trade_name\":\"Patricia Miranda\",\"displayName\":\"538 - Patricia Miranda\",\"email\":\"ptmiranda@lucreadvisors.com\",\"phone\":\"19179922995\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Estados Unidos\",\"postal_code\":\"\",\"nit\":\"538\",\"primary_external_code\":\"538\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"491\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"PAULA ZAMORA COLODRO\",\"trade_name\":\"PAULA ZAMORA COLODRO\",\"displayName\":\"215 - PAULA ZAMORA COLODRO\",\"email\":\"\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"215\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"492\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"PBAA Desarrollos SRL\",\"trade_name\":\"PBAA Desarrollos SRL\",\"displayName\":\"606 - PBAA Desarrollos SRL\",\"email\":\"sebas_are@hotmail.com\",\"phone\":\"67347444\",\"address\":\"Avenida Sanchez Lima, #2019, Sopocachi, Edif. INTI\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"493274029\",\"primary_external_code\":\"606\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"493\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"PEDIDOSYA SERVICIOS S.A.\",\"trade_name\":\"PEDIDOSYA SERVICIOS S.A.\",\"displayName\":\"120 - PEDIDOSYA SERVICIOS S.A.\",\"email\":\"mariaeugenia.yavarone@pedidosya.com\",\"phone\":\"29023359 ext 1208\",\"address\":\"Santa Cruz de la Sierra\",\"city\":\"Santa Cruz\",\"state\":\"Bolivia\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"358245025\",\"primary_external_code\":\"120\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"494\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"PEPSICO\",\"trade_name\":\"PEPSICO\",\"displayName\":\"673 - PEPSICO\",\"email\":\"adriana.montealegre@pepsico.com\",\"phone\":\"2770808\",\"address\":\"Calle 15 N 7715 Edificio: Torre Ketal Piso: 4\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"180544021\",\"primary_external_code\":\"673\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"496\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"PETREVEN SpA\",\"trade_name\":\"PETREVEN SpA\",\"displayName\":\"676 - PETREVEN SpA\",\"email\":\"usuario@ejemplo.com\",\"phone\":\"39-523354211\",\"address\":\"VIA I MAGGIO 12 PODENZANO?, PIACENZA, 29027 Italy\",\"city\":\"\",\"state\":\"\",\"country\":\"Italia\",\"postal_code\":\"\",\"nit\":\"676\",\"primary_external_code\":\"676\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"497\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"PFENNINGER BOLIVIA S.R.L.\",\"trade_name\":\"PFENNINGER BOLIVIA S.R.L.\",\"displayName\":\"256 - PFENNINGER BOLIVIA S.R.L.\",\"email\":\"jps@pfenninger.com.bo\",\"phone\":\"3447593\",\"address\":\"Av. Noel kempff Edificio Las Violetas, 1er piso, O\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"198100026\",\"primary_external_code\":\"256\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"498\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"PHARMARIS BOLIVIA SRL\",\"trade_name\":\"PHARMARIS BOLIVIA SRL\",\"displayName\":\"778 - PHARMARIS BOLIVIA SRL\",\"email\":\"fsiredey@pharmaris.com\",\"phone\":\"61839999\",\"address\":\"San Miguel C. Horacio Ferrecio # 1154 Edif. Mundi\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"778\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"499\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Phillips 66 Company\",\"trade_name\":\"Phillips 66 Company\",\"displayName\":\"834 - Phillips 66 Company\",\"email\":\"Amanda.G.Grey@p66.com\",\"phone\":\"O: (+1) 832.765.1208\",\"address\":\"HQ-S1317-02 | 2331 CityWest Blvd. | Houston, TX\",\"city\":\"\",\"state\":\"\",\"country\":\"Estados Unidos\",\"postal_code\":\"\",\"nit\":\"834\",\"primary_external_code\":\"834\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":12,\"username\":\"tmercado@emba.com\",\"email\":\"tmercado@emba.com\",\"fullName\":\"Teddy Alberto Mercado Carrion\",\"shortName\":\"tmercado\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"500\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"PHISIOBASIC- Sergio Guzm\\u00e1n Galvez\",\"trade_name\":\"PHISIOBASIC- Sergio Guzm\\u00e1n Galvez\",\"displayName\":\"263 - PHISIOBASIC- Sergio Guzm\\u00e1n Galvez\",\"email\":\"administracion@phisiobasic.com\",\"phone\":\"76906776\",\"address\":\"Av. Am\\u00e9rica No. 360, Edificio Torre Norte piso 4 o\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"6484274010\",\"primary_external_code\":\"263\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":20,\"username\":\"jpzegada@emba.com\",\"email\":\"jpzegada@emba.com\",\"fullName\":\"Juan Pablo Zegada\",\"shortName\":\"jzegada\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"501\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"PIL ANDINA S.A.\",\"trade_name\":\"PIL ANDINA S.A.\",\"displayName\":\"300 - PIL ANDINA S.A.\",\"email\":\"jbasta@pilandina.com.bo\",\"phone\":\"3451271\",\"address\":\"Carr. al Norte Km. 27 \\u00bd,\\u00a0\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1020757027\",\"primary_external_code\":\"300\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":16,\"username\":\"rburgos@emba.com\",\"email\":\"rburgos@emba.com\",\"fullName\":\"Edwin Rodrigo Burgos Fernandez\",\"shortName\":\"rburgos\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"502\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"PLAMAT\",\"trade_name\":\"PLAMAT\",\"displayName\":\"547 - PLAMAT\",\"email\":\"ftalavera@plamat.com.bo\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"547\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":8,\"username\":\"lmorenog@emba.com\",\"email\":\"lmorenog@emba.com\",\"fullName\":\"Luis Moreno Gutierrez\",\"shortName\":\"lmoreno\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"503\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Plan International Inc.\",\"trade_name\":\"Plan International Inc.\",\"displayName\":\"494 - Plan International Inc.\",\"email\":\"gerardo.manzaneda@plan-international.org\",\"phone\":\"72002751\",\"address\":\"Calacoto, Av. Ballivian, Edif. El Dorial, N\\u00ba 555,\",\"city\":\"La Paz\",\"state\":\"La Paz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"127885029\",\"primary_external_code\":\"494\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"504\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"PLASTIFORTE SRL\",\"trade_name\":\"PLASTIFORTE SRL\",\"displayName\":\"571 - PLASTIFORTE SRL\",\"email\":\"mauricio.garron@plastiforte.com\",\"phone\":\"68581010\",\"address\":\"Av. Blanco Galindo Km. 3,8 No. O-3011\",\"city\":\"Cochabamba\",\"state\":\"Cochabamba\",\"country\":\"Bolivia\",\"postal_code\":\"00\",\"nit\":\"1009109025\",\"primary_external_code\":\"571\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":17,\"username\":\"aaraoz@emba.com\",\"email\":\"aaraoz@emba.com\",\"fullName\":\"Alvaro Araoz Ardaya\",\"shortName\":\"aaraoz\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-12-04 15:29:19\",\"daysAllow\":302}},{\"id\":\"505\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Platts\",\"trade_name\":\"Platts\",\"displayName\":\"465 - Platts\",\"email\":\"jerry.saliman@spglobal.com\",\"phone\":\"2791554\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Estados Unidos\",\"postal_code\":\"\",\"nit\":\"99011\",\"primary_external_code\":\"465\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":18,\"username\":\"flanda@emba.com\",\"email\":\"flanda@emba.com\",\"fullName\":\"Carlos Fernando Landa Alejandro\",\"shortName\":\"flanda\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"506\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"PLUSPETROL BOLIVIA CORPORATION S.A.\",\"trade_name\":\"PLUSPETROL BOLIVIA CORPORATION S.A.\",\"displayName\":\"121 - PLUSPETROL BOLIVIA CORPORATION S.A.\",\"email\":\"xtavera@pluspetrol.net\",\"phone\":\"3594000\",\"address\":\"Calle Los Lirios Esquina Avenida San Mart\\u00edn 1700,\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1015459027\",\"primary_external_code\":\"121\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"507\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"PORZIO, R\\u00cdOS, GARC\\u00cdA \\u0026 ASOCIADOS. LTDA.\",\"trade_name\":\"PORZIO, R\\u00cdOS, GARC\\u00cdA \\u0026 ASOCIADOS. LTDA.\",\"displayName\":\"588 - PORZIO, R\\u00cdOS, GARC\\u00cdA \\u0026 ASOCIADOS. LTDA.\",\"email\":\"asistente@porzio.cl\",\"phone\":\"56227290600\",\"address\":\"Cerro el Plomo 680, oficina 1903, Las Condes-CHILE\",\"city\":\"\",\"state\":\"\",\"country\":\"Chile\",\"postal_code\":\"\",\"nit\":\"76.423.608.4\",\"primary_external_code\":\"588\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":17,\"username\":\"aaraoz@emba.com\",\"email\":\"aaraoz@emba.com\",\"fullName\":\"Alvaro Araoz Ardaya\",\"shortName\":\"aaraoz\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-12-04 15:29:19\",\"daysAllow\":302}},{\"id\":\"508\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"POTENZA SRL\",\"trade_name\":\"POTENZA SRL\",\"displayName\":\"313 - POTENZA SRL\",\"email\":\"dhurtado@bpocenter.com.bo\",\"phone\":\"3338181\",\"address\":\"Calle Horacio R\\u00edos No. 54 (Entre Av. Trinidad y Be\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"173550023\",\"primary_external_code\":\"313\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"509\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"PRECISION SPA\",\"trade_name\":\"PRECISION SPA\",\"displayName\":\"536 - PRECISION SPA\",\"email\":\"gustavo.leo.e@gmail.com\",\"phone\":\"(56) 9342 76742\",\"address\":\"Av El Salto 4291 8580641 Santiago Huechuraba Chile\",\"city\":\"\",\"state\":\"\",\"country\":\"Chile\",\"postal_code\":\"\",\"nit\":\"536\",\"primary_external_code\":\"536\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"510\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"PREMIER INTERNACIONAL S.R.L.\",\"trade_name\":\"PREMIER INTERNACIONAL S.R.L.\",\"displayName\":\"277 - PREMIER INTERNACIONAL S.R.L.\",\"email\":\"amilicovsky@premier-internacional.com\",\"phone\":\"4797000\",\"address\":\"Calle Pedro Borda # 917, Edif. Conseso, Piso 3\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1020905022\",\"primary_external_code\":\"277\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":20,\"username\":\"jpzegada@emba.com\",\"email\":\"jpzegada@emba.com\",\"fullName\":\"Juan Pablo Zegada\",\"shortName\":\"jzegada\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"511\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"PREMOLTEC S.R.L.\",\"trade_name\":\"PREMOLTEC S.R.L.\",\"displayName\":\"462 - PREMOLTEC S.R.L.\",\"email\":\"premoltec@cotas.com.bo\",\"phone\":\"\",\"address\":\"Tercer Anillo esq. Av. Cristo Redentor\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"462\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"512\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"PREMONOR BOLIVIA S.R.L\",\"trade_name\":\"PREMONOR BOLIVIA S.R.L\",\"displayName\":\"388 - PREMONOR BOLIVIA S.R.L\",\"email\":\"despinoza@promonor.com\",\"phone\":\"72130900\",\"address\":\"Calle Hugo Wast N\\u00b0 502 ZONA: Equipetrol\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"351486025\",\"primary_external_code\":\"388\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"513\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"PREVITEC SRL\",\"trade_name\":\"PREVITEC SRL\",\"displayName\":\"324 - PREVITEC SRL\",\"email\":\"luiss63507@gmail.com\",\"phone\":\"70559186\",\"address\":\"Calle Espa\\u00f1a entre delfin pino y Belgrano N\\u00b0 0340\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"196628027\",\"primary_external_code\":\"324\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"514\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"PRIMER ANILLO BIENES RAICES S.A.\",\"trade_name\":\"PRIMER ANILLO BIENES RAICES S.A.\",\"displayName\":\"183 - PRIMER ANILLO BIENES RAICES S.A.\",\"email\":\"c.h.fernandez@mac.com\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"351245023\",\"primary_external_code\":\"183\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"517\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"PROMOCIONES ESTRAT\\u00c9GICAS S.R.L. (GRUPO LUCKY)\",\"trade_name\":\"PROMOCIONES ESTRAT\\u00c9GICAS S.R.L. (GRUPO LUCKY)\",\"displayName\":\"906 - PROMOCIONES ESTRAT\\u00c9GICAS S.R.L. (GRUPO LUCKY)\",\"email\":\"amontesinos@grupolucky.com\",\"phone\":\"+51 943 791 834\",\"address\":\"Calle La Riva Nro. 58\",\"city\":\"\",\"state\":\"\",\"country\":\"Per\\u00fa\",\"postal_code\":\"\",\"nit\":\"402254026\",\"primary_external_code\":\"906\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"518\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"QUANVENTURES S.R.L.\",\"trade_name\":\"QUANVENTURES S.R.L.\",\"displayName\":\"366 - QUANVENTURES S.R.L.\",\"email\":\"antonio.portugal@quan.bo\",\"phone\":\"76570109\",\"address\":\"c. Los Claveles, #508, edific\\u00f3. Puerto Madero, dpt\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"366\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"519\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"RADIO CADENA NACIONAL S.R.L\",\"trade_name\":\"RADIO CADENA NACIONAL S.R.L\",\"displayName\":\"144 - RADIO CADENA NACIONAL S.R.L\",\"email\":\"juan.puna@redbolivision.tv.bo\",\"phone\":\"2409062\",\"address\":\"Av. Uyuni este N\\u00ba 1029 entre Aurelio Garcia y Mon\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"128343023\",\"primary_external_code\":\"144\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"520\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"RADIO FIDES ACTIVOS SRL\",\"trade_name\":\"RADIO FIDES ACTIVOS SRL\",\"displayName\":\"385 - RADIO FIDES ACTIVOS SRL\",\"email\":\"cmerino@emba.com.bo\",\"phone\":\"72538166\",\"address\":\"Genaro Sanjines 799\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"126911020\",\"primary_external_code\":\"385\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"521\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"RADIO FIDES LA PAZ SRL\",\"trade_name\":\"RADIO FIDES LA PAZ SRL\",\"displayName\":\"380 - RADIO FIDES LA PAZ SRL\",\"email\":\"contactos@radiofides.com\",\"phone\":\"2167700\",\"address\":\"calle Genaro Sanjinez 781 esquina Sucre\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1020523021\",\"primary_external_code\":\"380\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"522\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"RADIO FIDES SANTA CRUZ SRL\",\"trade_name\":\"RADIO FIDES SANTA CRUZ SRL\",\"displayName\":\"911 - RADIO FIDES SANTA CRUZ SRL\",\"email\":\"charo@radiofides.com\",\"phone\":\"3337 2424\",\"address\":\"c\\/ Mercado # 457 entre Vallegrande e Isoso\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1012669020\",\"primary_external_code\":\"911\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"523\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"RADIO FIDES TRINIDAD S.R.L.\",\"trade_name\":\"RADIO FIDES TRINIDAD S.R.L.\",\"displayName\":\"151 - RADIO FIDES TRINIDAD S.R.L.\",\"email\":\"trinidad@radiofides.com\",\"phone\":\"76200428\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1015833020\",\"primary_external_code\":\"151\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"524\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"RADIODIFUSORAS POPULARES S.A.\",\"trade_name\":\"RADIODIFUSORAS POPULARES S.A.\",\"displayName\":\"337 - RADIODIFUSORAS POPULARES S.A.\",\"email\":\"rtp@rtpbolivia.com.bo\",\"phone\":\"2203339\",\"address\":\"Calle Ju\\u00e1n de la Riva Nro. 1527\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1020441026\",\"primary_external_code\":\"337\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"525\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"RAICES IMPORT EXPORT SRL\",\"trade_name\":\"RAICES IMPORT EXPORT SRL\",\"displayName\":\"148 - RAICES IMPORT EXPORT SRL\",\"email\":\"raices@cotas.com.bo\",\"phone\":\"333-4040\",\"address\":\"Casa Matriz: Calle La Riva # 364 Santa Cruz\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1027943022\",\"primary_external_code\":\"148\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"526\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"REEGRECHTSANW\\u00c4LTE\",\"trade_name\":\"REEGRECHTSANW\\u00c4LTE\",\"displayName\":\"622 - REEGRECHTSANW\\u00c4LTE\",\"email\":\"reeg@reeglaw.com\",\"phone\":\"49 (0) 621-12717-0\",\"address\":\"Speicher 7 Rheinvorlandstr. 7\",\"city\":\"\",\"state\":\"\",\"country\":\"Alemania\",\"postal_code\":\"\",\"nit\":\"622\",\"primary_external_code\":\"622\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"528\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"REPSOL E\\u0026P BOLIVIA SA\",\"trade_name\":\"REPSOL E\\u0026P BOLIVIA SA\",\"displayName\":\"272 - REPSOL E\\u0026P BOLIVIA SA\",\"email\":\"rmb@emba.com.bo\",\"phone\":\"\",\"address\":\"AV LAS RAMPLAS N\\u00ba 100 SANTA CRUZ\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1027373022\",\"primary_external_code\":\"272\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"529\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"REPSOL EXPLIORACION ATLAS SA SUCURSAL BOLIVIA\",\"trade_name\":\"REPSOL EXPLIORACION ATLAS SA SUCURSAL BOLIVIA\",\"displayName\":\"233 - REPSOL EXPLIORACION ATLAS SA SUCURSAL BOLIVIA\",\"email\":\"jbrinckhauso@repsol.com\",\"phone\":\"3660000\",\"address\":\"AV. LAS RAMBLAS N\\u00b0 100 EDIFICIO ITC TOWER\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1028549026\",\"primary_external_code\":\"233\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"530\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"RIDETECH BOL S.R.L.\",\"trade_name\":\"RIDETECH BOL S.R.L.\",\"displayName\":\"525 - RIDETECH BOL S.R.L.\",\"email\":\"natafriedman@yandex-team.com\",\"phone\":\"59122791554\",\"address\":\"Torre CAinco piso 15\",\"city\":\"Santa CRuz\",\"state\":\"SAnta Cruz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"469172024\",\"primary_external_code\":\"525\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":13,\"username\":\"cdelgado@emba.com\",\"email\":\"cdelgado@emba.com\",\"fullName\":\"Cristhian Delgado Ramirez\",\"shortName\":\"cdelgado\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"531\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"RIPIO HOLDING INC\",\"trade_name\":\"RIPIO HOLDING INC\",\"displayName\":\"550 - RIPIO HOLDING INC\",\"email\":\"pablo.cabiati@ripio.com\",\"phone\":\"\",\"address\":\"Panama\",\"city\":\"\",\"state\":\"\",\"country\":\"Argentina\",\"postal_code\":\"\",\"nit\":\"550\",\"primary_external_code\":\"550\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"532\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Robalino Law\",\"trade_name\":\"Robalino Law\",\"displayName\":\"584 - Robalino Law\",\"email\":\"pcordova@robalinolaw.com\",\"phone\":\"+593 98 264 7371\",\"address\":\"Ecuador\",\"city\":\"\",\"state\":\"\",\"country\":\"Ecuador\",\"postal_code\":\"\",\"nit\":\"584\",\"primary_external_code\":\"584\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"533\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Robit S.A.C.\",\"trade_name\":\"Robit S.A.C.\",\"displayName\":\"415 - Robit S.A.C.\",\"email\":\"jose.cisneros@robitgroup.com\",\"phone\":\"+51 1 469 2967\",\"address\":\"Lima\",\"city\":\"\",\"state\":\"\",\"country\":\"Per\\u00fa\",\"postal_code\":\"\",\"nit\":\"415\",\"primary_external_code\":\"415\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"534\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"RODAMIENTIN - JAIME BENIGNO TORRICO ANTEZANA\",\"trade_name\":\"RODAMIENTIN - JAIME BENIGNO TORRICO ANTEZANA\",\"displayName\":\"122 - RODAMIENTIN - JAIME BENIGNO TORRICO ANTEZANA\",\"email\":\"ventas@rodamientin.com\",\"phone\":\"46663341\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"2451920011\",\"primary_external_code\":\"122\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"535\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Rodrigo Campero\",\"trade_name\":\"Rodrigo Campero\",\"displayName\":\"332 - Rodrigo Campero\",\"email\":\"rodrigocampero@hotmail.com\",\"phone\":\"\",\"address\":\"La Paz\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"332\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"536\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"RODRIGO, EL\\u00ccAS \\u0026 MEDRANO\",\"trade_name\":\"RODRIGO, EL\\u00ccAS \\u0026 MEDRANO\",\"displayName\":\"123 - RODRIGO, EL\\u00ccAS \\u0026 MEDRANO\",\"email\":\"Fmolina@estudiorodrigo.com\",\"phone\":\"[+511] 619-1900\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"123\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"537\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Rolls-Royce Brasil\",\"trade_name\":\"Rolls-Royce Brasil\",\"displayName\":\"759 - Rolls-Royce Brasil\",\"email\":\"Ivan.Dilly@rolls-royce.com\",\"phone\":\"55 (21) 98145-6015\",\"address\":\"Rua Eteno 2198, Cama\\u00e7ari - BA, 42810-000, Brazil\",\"city\":\"\",\"state\":\"\",\"country\":\"Brasil\",\"postal_code\":\"\",\"nit\":\"759\",\"primary_external_code\":\"759\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"538\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"RONDO (FECOTEL)\",\"trade_name\":\"RONDO (FECOTEL)\",\"displayName\":\"176 - RONDO (FECOTEL)\",\"email\":\"grondo.fecotel@gmail.com\",\"phone\":\"2352006\",\"address\":\"Av. 16 de Julio (El Prado) N\\u00b0 1566, Edificio 16 de\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"280608012\",\"primary_external_code\":\"176\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"539\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"SAAINSA S.A. (GRUPO EL DEBER)\",\"trade_name\":\"SAAINSA S.A. (GRUPO EL DEBER)\",\"displayName\":\"472 - SAAINSA S.A. (GRUPO EL DEBER)\",\"email\":\"mirian.bejarano@grupoeldeber.com\",\"phone\":\"71347920\",\"address\":\"Av. El Trompillo Edificio EL DEBER\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"174790026\",\"primary_external_code\":\"472\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"540\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"SABORES BOLIVIANOS ALEMANES S.R.L.\",\"trade_name\":\"SABORES BOLIVIANOS ALEMANES S.R.L.\",\"displayName\":\"195 - SABORES BOLIVIANOS ALEMANES S.R.L.\",\"email\":\"guido.muehr@sba.bo\",\"phone\":\"76604937\",\"address\":\"Valle Sanchez N\\u00b0 S\\/n Edificio: Condominio Polo\",\"city\":\"Santa Cruz\",\"state\":\"Santa Cruz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"251644025\",\"primary_external_code\":\"195\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"542\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"SAMSUNG ENGINEERING BOLIVIA S.A.\",\"trade_name\":\"SAMSUNG ENGINEERING BOLIVIA S.A.\",\"displayName\":\"245 - SAMSUNG ENGINEERING BOLIVIA S.A.\",\"email\":\"bd05.lee@samsung.com\",\"phone\":\"71650135\",\"address\":\"Calle Julio Rodr\\u00cdguez Morales, Esq. Ca\\/ Miguel CBB\",\"city\":\"Cochabamba\",\"state\":\"Bolivia\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"198702026\",\"primary_external_code\":\"245\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"543\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"SAMSUNG KDB\",\"trade_name\":\"SAMSUNG KDB\",\"displayName\":\"694 - SAMSUNG KDB\",\"email\":\"taejoon00.park@samsung.com\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"694\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"544\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"San Miguel Industrias\",\"trade_name\":\"San Miguel Industrias\",\"displayName\":\"795 - San Miguel Industrias\",\"email\":\"karpe@smi.com.pe\",\"phone\":\"5113365100\",\"address\":\"AV. MATERIALES 2354 CERCADO DE LIMA\",\"city\":\"\",\"state\":\"\",\"country\":\"Per\\u00fa\",\"postal_code\":\"\",\"nit\":\"99011\",\"primary_external_code\":\"795\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"545\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"SANTA MARIA FINANCIAL S.A.\",\"trade_name\":\"SANTA MARIA FINANCIAL S.A.\",\"displayName\":\"139 - SANTA MARIA FINANCIAL S.A.\",\"email\":\"pablo.chacon@sayc.com.bo\",\"phone\":\"2752003\",\"address\":\"Calle 12_de Obrajes Esq Ormachea N\\u00b0 315 Edificio:\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1004109028\",\"primary_external_code\":\"139\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"546\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"SATVA S.R.L\",\"trade_name\":\"SATVA S.R.L\",\"displayName\":\"460 - SATVA S.R.L\",\"email\":\"vania.200986@hotmail.com\",\"phone\":\"70688244\",\"address\":\"C. Jos\\u00e9 Mar\\u00eda Zalles N.915 Z.San Miguel\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"346316025\",\"primary_external_code\":\"460\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":17,\"username\":\"aaraoz@emba.com\",\"email\":\"aaraoz@emba.com\",\"fullName\":\"Alvaro Araoz Ardaya\",\"shortName\":\"aaraoz\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-12-04 15:29:19\",\"daysAllow\":302}},{\"id\":\"547\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"SAWALIFE SRL\",\"trade_name\":\"SAWALIFE SRL\",\"displayName\":\"486 - SAWALIFE SRL\",\"email\":\"xophera@gmail.com\",\"phone\":\"69758233\",\"address\":\"-\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"376382025\",\"primary_external_code\":\"486\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":17,\"username\":\"aaraoz@emba.com\",\"email\":\"aaraoz@emba.com\",\"fullName\":\"Alvaro Araoz Ardaya\",\"shortName\":\"aaraoz\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-12-04 15:29:19\",\"daysAllow\":302}},{\"id\":\"548\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"SCALA HIGHER EDUCATION SC\",\"trade_name\":\"SCALA HIGHER EDUCATION SC\",\"displayName\":\"384 - SCALA HIGHER EDUCATION SC\",\"email\":\"daniel.lazaro@utel.edu.mx\",\"phone\":\"52 1 55 4836 7339\",\"address\":\"Calzada de la Naranja 159 piso 4\",\"city\":\"\",\"state\":\"\",\"country\":\"M\\u00e9xico\",\"postal_code\":\"\",\"nit\":\"384\",\"primary_external_code\":\"384\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"549\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"SCALAOPM BOLIVIA S.R.L.\",\"trade_name\":\"SCALAOPM BOLIVIA S.R.L.\",\"displayName\":\"904 - SCALAOPM BOLIVIA S.R.L.\",\"email\":\"rosario.brazzini@utel.edu.mx\",\"phone\":\"51933030888\",\"address\":\"Cochabamba no.715\",\"city\":\"La Paz\",\"state\":\"La Paz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"400931023\",\"primary_external_code\":\"904\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":13,\"username\":\"cdelgado@emba.com\",\"email\":\"cdelgado@emba.com\",\"fullName\":\"Cristhian Delgado Ramirez\",\"shortName\":\"cdelgado\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"550\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"SEGURITECH PRIVADA S.A. de C.V.\",\"trade_name\":\"SEGURITECH PRIVADA S.A. de C.V.\",\"displayName\":\"705 - SEGURITECH PRIVADA S.A. de C.V.\",\"email\":\"emmanuel.cardenas@seguritech.com\",\"phone\":\"52-5550830000\",\"address\":\"Lago Bolsena No. 277 Int. 1 An\\u00e1huac II Secci\\u00f3n, Mi\",\"city\":\"\",\"state\":\"\",\"country\":\"M\\u00e9xico\",\"postal_code\":\"\",\"nit\":\"705\",\"primary_external_code\":\"705\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"551\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Sergio Patricio Araya Pacheco\",\"trade_name\":\"Sergio Patricio Araya Pacheco\",\"displayName\":\"331 - Sergio Patricio Araya Pacheco\",\"email\":\"spatricio71@hotmail.com\",\"phone\":\"56956811081\",\"address\":\"Chile\",\"city\":\"\",\"state\":\"\",\"country\":\"Chile\",\"postal_code\":\"\",\"nit\":\"331\",\"primary_external_code\":\"331\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"552\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"SERPROYTEC S.A.C.\",\"trade_name\":\"SERPROYTEC S.A.C.\",\"displayName\":\"526 - SERPROYTEC S.A.C.\",\"email\":\"gerardo.virla@serprotechenergy.com\",\"phone\":\"58414600000000000\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Per\\u00fa\",\"postal_code\":\"\",\"nit\":\"526\",\"primary_external_code\":\"526\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"553\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"SERVECO\",\"trade_name\":\"SERVECO\",\"displayName\":\"627 - SERVECO\",\"email\":\"serveco@serveco.com.bo\",\"phone\":\"71735572\",\"address\":\"calle 23 de marzo No.45, zona hip\\u00f3dromo Cochabamba\",\"city\":\"Cochabamba\",\"state\":\"Cochabamba\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"924725010\",\"primary_external_code\":\"627\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":17,\"username\":\"aaraoz@emba.com\",\"email\":\"aaraoz@emba.com\",\"fullName\":\"Alvaro Araoz Ardaya\",\"shortName\":\"aaraoz\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-12-04 15:29:19\",\"daysAllow\":302}},{\"id\":\"554\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"SERVICIOS DE ALQUILERES PHOENIXTOWER S.A.\",\"trade_name\":\"SERVICIOS DE ALQUILERES PHOENIXTOWER S.A.\",\"displayName\":\"894 - SERVICIOS DE ALQUILERES PHOENIXTOWER S.A.\",\"email\":\"cugarte@phoenixintnl.com\",\"phone\":\"70518989\",\"address\":\"santa cruz\",\"city\":\"Santa CRuz\",\"state\":\"Santa Cruz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"375279029\",\"primary_external_code\":\"894\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"555\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"SGS Argentina S.A.\",\"trade_name\":\"SGS Argentina S.A.\",\"displayName\":\"531 - SGS Argentina S.A.\",\"email\":\"Matias.Rainone@sgs.com\",\"phone\":\"+54 2944-532073\",\"address\":\"Tronador 4890, piso 9, Buenos Aires, Argentina\",\"city\":\"\",\"state\":\"\",\"country\":\"Argentina\",\"postal_code\":\"\",\"nit\":\"30547110427\",\"primary_external_code\":\"531\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":19,\"username\":\"iayala@emba.com\",\"email\":\"iayala@emba.com\",\"fullName\":\"Ines Ayala\",\"shortName\":\"iayala\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"556\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"SICURAINV SOCIEDAD DE INVERSIONES SA\",\"trade_name\":\"SICURAINV SOCIEDAD DE INVERSIONES SA\",\"displayName\":\"448 - SICURAINV SOCIEDAD DE INVERSIONES SA\",\"email\":\"amorenog@emba.com.bo\",\"phone\":\"2791554\",\"address\":\"Av. Sanchez Bustamante 977\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"394032022\",\"primary_external_code\":\"448\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"557\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"SIEMENS ENERGY S.A.\",\"trade_name\":\"SIEMENS ENERGY S.A.\",\"displayName\":\"188 - SIEMENS ENERGY S.A.\",\"email\":\"margarita.cespedes@siemens-energy.com\",\"phone\":\"78511410\",\"address\":\"AV SAN MARTIN CALLE I EDIFICIO ONNKI\",\"city\":\"Santa Cruz\",\"state\":\"Bolivia\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"146438029\",\"primary_external_code\":\"188\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"558\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Siemens Ltda. (Siemens Brasil)\",\"trade_name\":\"Siemens Ltda. (Siemens Brasil)\",\"displayName\":\"352 - Siemens Ltda. (Siemens Brasil)\",\"email\":\"andre.araujo@siemens.com\",\"phone\":\"Tel.: +55 11 4585-46\",\"address\":\"Av. Eng. Jo\\u00e3o Fernandes Gimenes Molina, 1745 13213\",\"city\":\"\",\"state\":\"\",\"country\":\"Brasil\",\"postal_code\":\"\",\"nit\":\"352\",\"primary_external_code\":\"352\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"559\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"trade_name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"displayName\":\"234 - SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"email\":\"lizette.molina_ribera@siemens-energy.com\",\"phone\":\"78511408\",\"address\":\"Equipetrol Norte, Ed.Omnea Dei Planta Baja\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"234\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"560\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"SIEMPRESALUD \\u2013 GRUPO FIDES\",\"trade_name\":\"SIEMPRESALUD \\u2013 GRUPO FIDES\",\"displayName\":\"412 - SIEMPRESALUD \\u2013 GRUPO FIDES\",\"email\":\"clinica@radiofide.com\",\"phone\":\"2846415\",\"address\":\"Av. Sucre Edificio Fides Mater Televisi\\u00f3n\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"412\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"561\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Sika Bolivia SA\",\"trade_name\":\"Sika Bolivia SA\",\"displayName\":\"609 - Sika Bolivia SA\",\"email\":\"vacaflor.bismark@bo.sika.com\",\"phone\":\"591 62149065\",\"address\":\"Parque Industrial Latinoamericano, PILAT UI-6\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1006905020\",\"primary_external_code\":\"609\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"562\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"SILOS CORDOBA S.L. (SUCURSAL BOLIVIA)\",\"trade_name\":\"SILOS CORDOBA S.L. (SUCURSAL BOLIVIA)\",\"displayName\":\"125 - SILOS CORDOBA S.L. (SUCURSAL BOLIVIA)\",\"email\":\"federico@siloscordoba.com\",\"phone\":\"54 911 541 36553\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"333408029\",\"primary_external_code\":\"125\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"563\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"SIMECORTEX SRL\",\"trade_name\":\"SIMECORTEX SRL\",\"displayName\":\"308 - SIMECORTEX SRL\",\"email\":\"cmerino@emba.com.bo\",\"phone\":\"65159033\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"308\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"564\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Skadden, Arps, Slate, Meagher \\u0026 Flom LLP\",\"trade_name\":\"Skadden, Arps, Slate, Meagher \\u0026 Flom LLP\",\"displayName\":\"845 - Skadden, Arps, Slate, Meagher \\u0026 Flom LLP\",\"email\":\"cecelia.macdonald@skadden.com\",\"phone\":\"12127352912\",\"address\":\"One Manhattan West, New York, 10001-8602\",\"city\":\"\",\"state\":\"\",\"country\":\"Estados Unidos\",\"postal_code\":\"\",\"nit\":\"845\",\"primary_external_code\":\"845\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"565\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"SMI ENVASES INDUSTRIAS BOLIVIA SA\",\"trade_name\":\"SMI ENVASES INDUSTRIAS BOLIVIA SA\",\"displayName\":\"325 - SMI ENVASES INDUSTRIAS BOLIVIA SA\",\"email\":\"fzentenof@yahoo.es\",\"phone\":\"5286247\",\"address\":\"Av. Sanchez Bustamante 977 calacoto calle 16\",\"city\":\"La PAz\",\"state\":\"La PAz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"388444020\",\"primary_external_code\":\"325\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"566\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"SOBOCE\",\"trade_name\":\"SOBOCE\",\"displayName\":\"338 - SOBOCE\",\"email\":\"ssoliz@soboce.com\",\"phone\":\"75260784\",\"address\":\"PLAZA ISABELLA CATOLICA NUEVAS TORRES MALL\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1020235024\",\"primary_external_code\":\"338\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":6,\"username\":\"darredondo@emba.com.bo\",\"email\":\"nicoln042001@gmail.com\",\"fullName\":\"Daniel Marcelo Arredondo Zelada\",\"shortName\":\"darredon\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-03 11:43:07\",\"daysAllow\":302}},{\"id\":\"567\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"SOCIEDAD ACEITERA DEL ORIENTE S.R.L - ADM SAO\",\"trade_name\":\"SOCIEDAD ACEITERA DEL ORIENTE S.R.L - ADM SAO\",\"displayName\":\"628 - SOCIEDAD ACEITERA DEL ORIENTE S.R.L - ADM SAO\",\"email\":\"ecarpio@alicorp.com.bo\",\"phone\":\"71625082\",\"address\":\"AV CRISTO REDENTOR ENTRE 7MO Y 8VO ANILLO\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1028167028\",\"primary_external_code\":\"628\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"568\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"SOCIEDAD DE SERVICIOS LOGISTICOS DELTAEXPRESS S.A.\",\"trade_name\":\"SOCIEDAD DE SERVICIOS LOGISTICOS DELTAEXPRESS S.A.\",\"displayName\":\"505 - SOCIEDAD DE SERVICIOS LOGISTICOS DELTAEXPRESS S.A.\",\"email\":\"mdorado@deltax.la\",\"phone\":\"60003006\",\"address\":\"Teniente Walter Vega 360, Santa Cruz - Bolivia\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"373968026\",\"primary_external_code\":\"505\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":18,\"username\":\"flanda@emba.com\",\"email\":\"flanda@emba.com\",\"fullName\":\"Carlos Fernando Landa Alejandro\",\"shortName\":\"flanda\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"569\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"SOCIEDAD INMOBILIARIA SNR S.A.\",\"trade_name\":\"SOCIEDAD INMOBILIARIA SNR S.A.\",\"displayName\":\"172 - SOCIEDAD INMOBILIARIA SNR S.A.\",\"email\":\"rmb@emba.com.bo\",\"phone\":\"22791554\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"327948023\",\"primary_external_code\":\"172\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"570\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"SOCIEDAD INVERSIONES INMOBILIARIAS SOUTH VALLEYS S.A.\",\"trade_name\":\"SOCIEDAD INVERSIONES INMOBILIARIAS SOUTH VALLEYS S.A.\",\"displayName\":\"459 - SOCIEDAD INVERSIONES INMOBILIARIAS SOUTH VALLEYS S.A.\",\"email\":\"lchalco@emba.com.bo\",\"phone\":\"69999136\",\"address\":\"Av. Sanchez Bustamante 977\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"41866827\",\"primary_external_code\":\"459\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"571\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"SOCI\\u00c9T\\u00c9 DE PROMOTION ET DE PARTICIPATION POUR LA COOP\\u00c9RATION \\u00c9CONOMIQUE S.A. (PROPARCO)\",\"trade_name\":\"SOCI\\u00c9T\\u00c9 DE PROMOTION ET DE PARTICIPATION POUR LA COOP\\u00c9RATION \\u00c9CONOMIQUE S.A. (PROPARCO)\",\"displayName\":\"879 - SOCI\\u00c9T\\u00c9 DE PROMOTION ET DE PARTICIPATION POUR LA COOP\\u00c9RATION \\u00c9CONOMIQUE S.A. (PROPARCO)\",\"email\":\"greindelsantorob@proparco.fr\",\"phone\":\"+ 33 1 53 44 87 13\",\"address\":\"151, rue Saint-Honor\\u00e9 - 75001 Paris | FRANCE\",\"city\":\"\",\"state\":\"\",\"country\":\"Francia\",\"postal_code\":\"\",\"nit\":\"879\",\"primary_external_code\":\"879\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":12,\"username\":\"tmercado@emba.com\",\"email\":\"tmercado@emba.com\",\"fullName\":\"Teddy Alberto Mercado Carrion\",\"shortName\":\"tmercado\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"572\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"SOLARIS BOLIVIA SRL\",\"trade_name\":\"SOLARIS BOLIVIA SRL\",\"displayName\":\"126 - SOLARIS BOLIVIA SRL\",\"email\":\"fsiredey@pharmarisparaguay.com\",\"phone\":\"70454927 - 33448220\",\"address\":\"San Miguel C. Horacio Ferrecio # 1154 Edif. Mundi\",\"city\":\"La Paz\",\"state\":\"La Paz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"369597029\",\"primary_external_code\":\"126\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"573\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"SONIA FALCONE\",\"trade_name\":\"SONIA FALCONE\",\"displayName\":\"180 - SONIA FALCONE\",\"email\":\"\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"180\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"575\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"SPC Impresores S.A.\",\"trade_name\":\"SPC Impresores S.A.\",\"displayName\":\"236 - SPC Impresores S.A.\",\"email\":\"amorenog@emba.com.bo\",\"phone\":\"2111121\",\"address\":\"Final avenida saavedra N\\u00ba 2411 Miraflores\",\"city\":\"La PAz\",\"state\":\"La Paz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"1029191028\",\"primary_external_code\":\"236\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"576\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"STE ENERGY SUCURSAL BOLIVIA\",\"trade_name\":\"STE ENERGY SUCURSAL BOLIVIA\",\"displayName\":\"127 - STE ENERGY SUCURSAL BOLIVIA\",\"email\":\"f.mery@ste-energy.com\",\"phone\":\"56 2 29519262\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"321194029\",\"primary_external_code\":\"127\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"577\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"STE ENERTGY S.p.A.\",\"trade_name\":\"STE ENERTGY S.p.A.\",\"displayName\":\"634 - STE ENERTGY S.p.A.\",\"email\":\"f.mery@ste-energy.com\",\"phone\":\"56 2 29519262\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"634\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"578\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"SUBWAY INTERNATIONAL B.V. SUCURSAL BOLIVIA\",\"trade_name\":\"SUBWAY INTERNATIONAL B.V. SUCURSAL BOLIVIA\",\"displayName\":\"506 - SUBWAY INTERNATIONAL B.V. SUCURSAL BOLIVIA\",\"email\":\"silvia.choque@sayc.com.bo\",\"phone\":\"\",\"address\":\"Calle 12 de obrajes, Edificio Ignacio de Loyola N\",\"city\":\"\",\"state\":\"\",\"country\":\"Pa\\u00edses Bajos\",\"postal_code\":\"\",\"nit\":\"235720020\",\"primary_external_code\":\"506\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":12,\"username\":\"tmercado@emba.com\",\"email\":\"tmercado@emba.com\",\"fullName\":\"Teddy Alberto Mercado Carrion\",\"shortName\":\"tmercado\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"579\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Super Abasto Sur Ltda. SAS\",\"trade_name\":\"Super Abasto Sur Ltda. SAS\",\"displayName\":\"613 - Super Abasto Sur Ltda. SAS\",\"email\":\"gerencia@sas.com.bo\",\"phone\":\"\",\"address\":\"Juan Jos\\u00e9 Perez 331 - Sucre\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1000465024\",\"primary_external_code\":\"613\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":16,\"username\":\"rburgos@emba.com\",\"email\":\"rburgos@emba.com\",\"fullName\":\"Edwin Rodrigo Burgos Fernandez\",\"shortName\":\"rburgos\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"580\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"SUPER MERCADO AMERICA S.R.L.\",\"trade_name\":\"SUPER MERCADO AMERICA S.R.L.\",\"displayName\":\"227 - SUPER MERCADO AMERICA S.R.L.\",\"email\":\"atorrez@supermercadoamerica.com.bo\",\"phone\":\"4 4249127\",\"address\":\"AV AMERICA 131 ZONA CALA CALA\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1008565022\",\"primary_external_code\":\"227\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"581\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Susana Barbery\",\"trade_name\":\"Susana Barbery\",\"displayName\":\"382 - Susana Barbery\",\"email\":\"nellybwwptg@gmail.com\",\"phone\":\"76009408\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"382\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"582\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Susana Prudencio\",\"trade_name\":\"Susana Prudencio\",\"displayName\":\"395 - Susana Prudencio\",\"email\":\"susypru2004@yahoo.com\",\"phone\":\"72035333\",\"address\":\"Calle 3 No. 240 - Obrajes\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"107782\",\"primary_external_code\":\"395\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}}]}}}\n","time":"2025-07-30T10:49:09-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: POST https://apinewtm.com/graphql/\nHeaders: map[Accept:[application/json] Authorization:[Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJpYXQiOjE3NTM4ODY1MjIsImV4cCI6MTc1Mzk2NjUyMiwiaWQiOjEwNSwidXNlcm5hbWUiOiJpbnRlZ3JhY2lvbmVzQGVtYmEuYm8iLCJhcGlrZXkiOiI5Yzg0ZjYzZTRlMzk2ZGZmOWU5ZjU3NDI5OGRmZWUzOSIsImFwaWtleUNyZWF0ZWRBdCI6eyJkYXRlIjoiMjAyNS0wNy0xNyAxMDo0MToyNS4wMDAwMDAiLCJ0aW1lem9uZV90eXBlIjozLCJ0aW1lem9uZSI6IkFtZXJpY2EvQm9nb3RhIn0sImZ1bGxOYW1lIjoiSW50ZWdyYWNpw7NuIEVNQkEiLCJlbWFpbCI6ImludGVncmFjaW9uZXNAZW1iYS5ibyIsImxvY2FsZSI6ImVzIiwiZGF5c0FsbG93ZWQiOjMwLCJpc0Nvb3JkaW5hdG9yIjpmYWxzZSwidHlwZVRhc2tWaWV3IjoibGlzdHMiLCJkYXlzYWxsb3ciOjMwLCJyb2xlcyI6e30sInNob3J0X25hbWUiOiJJTi5FTUJBIiwicGVybWlzc2lvbnMiOlsic3luY19leHRlcm5hbF9idXNpbmVzcyIsInN5bmNfZXh0ZXJuYWxfY3VzdG9tZXIiLCJzeW5jX2V4dGVybmFsX21pbGVzdG9uZSIsImFic2VuY2VfYXBwcm92ZSIsImFic2VuY2VfY3JlYXRlX2FsbCIsImFic2VuY2VfY3JlYXRlX293biIsImFic2VuY2VfbWVudSIsImFjY291bnRpbmdfYnVzaW5lc3NfbGlzdCIsImFjY291bnRpbmdfY3VzdG9tZXJfbGlzdCIsImJpbGxpbmdfcGVyaW9kX2RlbGV0ZV9hbGwiLCJiaWxsaW5nX3BlcmlvZF9lZGl0X2FsbCIsImJpbGxpbmdfcGVyaW9kX2xpc3QiLCJiaWxsaW5nX3BlcmlvZF9yZWFjdGl2YXRlIiwiYm9hcmRfcmF0ZV91c2VyX2NyZWF0ZSIsImJvYXJkX3JhdGVfdXNlcl9lZGl0IiwiYnVzaW5lc3NfY3JlYXRlIiwiYnVzaW5lc3NfZGVzY3JpcHRpb25fc2F2ZSIsImJ1c2luZXNzX2VkaXQiLCJidXNpbmVzc19saXN0X2FsbCIsImJ1c2luZXNzX21lbnUiLCJidXNpbmVzc19yZXNwb25zaWJsZV9saXN0X2FsbCIsImJ1c2luZXNzX3NlZV9iaWxsaW5nX2luZm8iLCJidXNpbmVzc2VzX2FsbG93ZWRfdXNlcl9jcmVhdGUiLCJidXNpbmVzc2VzX2FsbG93ZWRfdXNlcl9kZWxldGUiLCJjb21wYW55X2Rpc2FibGUiLCJjb21wYW55X2VkaXQiLCJjb21wYW55X2xpc3QiLCJjb25jZXB0X2NyZWF0ZSIsImNvbmNlcHRfZWRpdCIsImNvbmNlcHRfbWVudSIsImNvbnRhY3RfY3JlYXRlIiwiY29udGFjdF9jcmVhdGVfZmFzdCIsImNvbnRhY3RfZWRpdCIsImNvbnRhY3RfbGlzdCIsImNvbnRhY3RfbWVudSIsImN1c3RvbWVyX2NyZWF0ZSIsImN1c3RvbWVyX2NyZWF0ZV9mYXN0IiwiY3VzdG9tZXJfZWRpdCIsImN1c3RvbWVyX2xpc3QiLCJjdXN0b21lcl9saXN0X2FsbCIsImN1c3RvbWVyX21lbnUiLCJleHBlbnNlX2NyZWF0ZV9hbGwiLCJleHBlbnNlX2RlbGV0ZV9hbGwiLCJleHBlbnNlX2R1cGxpY2F0ZSIsImV4cGVuc2VfZWRpdF9hbGwiLCJleHBlbnNlX2xpc3RfYWxsIiwiZXhwZW5zZV9tZW51IiwiZXhwZW5zZV9yZWplY3RfYWxsIiwiZmFiX3Nob3ciLCJmaWxlX21lbnUiLCJnZW9yZWZlcmVuY2VfY3JlYXRlIiwiZ2VvcmVmZXJlbmNlX2VkaXQiLCJnZW9yZWZlcmVuY2VfbWVudSIsImdvX3RvX2xlZ2FjeSIsImluZGljYXRvcnNfbWVudSIsImludm9pY2VfY3JlYXRlIiwiaW52b2ljZV9kZXRhaWxfbGlzdF9hbGwiLCJpbnZvaWNlX2ZpeF90aW1lc19jdXN0b21fdmFsdWUiLCJpbnZvaWNlX2xpc3RfYWxsIiwiaW52b2ljZWFkdmFuY2VfY3JlYXRlIiwiaW52b2ljZWFkdmFuY2VfbGlzdCIsImludm9pY2VhZHZhbmNlX3VwZGF0ZSIsImxvZ19saXN0X2FsbCIsImxvZ19saXN0X293biIsIm1pbGVzdG9uZV9jcmVhdGUiLCJtaWxlc3RvbmVfZGVsZXRlIiwibWlsZXN0b25lX2VkaXQiLCJtb250aGx5X2ZpeF9yYXRlX2dyb3VwX2NyZWF0ZSIsIm1vbnRobHlfZml4X3JhdGVfZ3JvdXBfZWRpdCIsIm1vbnRobHlfdXNlcl9jb3N0X2NyZWF0ZSIsIm1vbnRobHlfdXNlcl9jb3N0X2VkaXQiLCJwYXltZW50X2NyZWF0ZSIsInBheW1lbnRfZGVsZXRlIiwicGF5bWVudF9lZGl0IiwicGF5bWVudF9tZW51IiwicHJvY2VkdXJlX21lbnUiLCJwcm9jZWR1cmVfcmF0ZV9jcmVhdGUiLCJwcm9jZWR1cmVfcmF0ZV9kZXRhaWxfY3JlYXRlIiwicHJvY2VkdXJlX3JhdGVfZGV0YWlsX2VkaXQiLCJwcm9jZWR1cmVfcmF0ZV9kZXRhaWxfbGlzdCIsInByb2NlZHVyZV9yYXRlX2VkaXQiLCJwcm9jZWR1cmVfcmF0ZV9saXN0IiwicHJvY2VkdXJlX3JhdGVfbWVudSIsInByb2NlZHVyZV90cmFuc2FjdGlvbl9saXN0IiwicHJvamVjdF9hcmNoaXZlX2Nhc2NhZGVfYWxsIiwicHJvamVjdF9kZWxldGVfY2FzY2FkZV9hbGwiLCJwcm9qZWN0X3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInJhdGVfYnVzaW5lc3NfY2F0ZWdvcnlfY3JlYXRlIiwicmF0ZV9idXNpbmVzc19jYXRlZ29yeV9lZGl0IiwicmF0ZV9idXNpbmVzc191c2VyX2NyZWF0ZSIsInJhdGVfYnVzaW5lc3NfdXNlcl9lZGl0IiwicmF0ZV9leGNoYW5nZV9jcmVhdGUiLCJyYXRlX2V4Y2hhbmdlX2VkaXQiLCJyYXRlX2V4Y2hhbmdlX2xpc3QiLCJyYXRlX3VzZXJfY3JlYXRlIiwicmF0ZV91c2VyX2VkaXQiLCJyb2xlX2NyZWF0ZSIsInJvbGVfZWRpdF9hbGwiLCJyb2xlX2xpc3RfYWxsIiwic2VjdGlvbl9hcmNoaXZlX2Nhc2NhZGVfYWxsIiwic2VjdGlvbl9kZWxldGVfY2FzY2FkZV9hbGwiLCJzZWN0aW9uX3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInNlZV9tZW51X3JhdGVfZXhjaGFuZ2UiLCJzZXJpZV9jcmVhdGUiLCJzZXJpZV9lZGl0Iiwic2VyaWVfbWVudSIsInNldHRpbmdzX3ZpZXciLCJzdXBwbGllcl9jcmVhdGUiLCJ0YXNrX2FkZF90aW1lX2FsbCIsInRhc2tfYWRkX3RpbWVfb3duIiwidGFza19hc3NpZ25lZF91c2VyX2VtYWlsIiwidGFza19jbG9zZWRfZW1haWwiLCJ0YXNrX2NyZWF0ZV9hbGwiLCJ0YXNrX2NyZWF0ZV9jb21tZW50X2VtYWlsIiwidGFza19jcmVhdGVfc2VsZiIsInRhc2tfY3JlYXRlX3RlYW0iLCJ0YXNrX2RlbGV0ZV9hbGwiLCJ0YXNrX2RlbGV0ZV9vd24iLCJ0YXNrX2RlbGV0ZV90ZWFtIiwidGFza19lZGl0X2FsbCIsInRhc2tfZWRpdF9kdWVfZGF0ZSIsInRhc2tfZWRpdF9vd24iLCJ0YXNrX2VkaXRfdGVhbSIsInRhc2tfbGlzdF9hbGwiLCJ0YXNrX2xpc3Rfb3duIiwidGFza19saXN0X3RlYW0iLCJ0YXNrX21hc3NpdmVpbXBvcnQiLCJ0YXNrX21lbnUiLCJ0YXNrX21pZ3JhdGlvbiIsInRhc2tfc2V0X2FkZGl0aW9uYWxfYXNzaWduZWVzIiwidGFza19zZXRfZHVlX2RhdGUiLCJ0YXNrX3NldF9lc3RpbWF0ZWRfdGltZSIsInRhc2tfc2V0X3ByaW9yaXR5IiwidGFza19zZXRfcHJvZ3Jlc3MiLCJ0YXhfZWRpdF9hbGwiLCJ0YXhfbGlzdF9hbGwiLCJ0ZWFtX2FyY2hpdmVfY2FzY2FkZV9hbGwiLCJ0ZWFtX2NyZWF0ZV9hbGwiLCJ0ZWFtX2RlbGV0ZV9hbGwiLCJ0ZWFtX2VkaXRfYWxsIiwidGVhbV9saXN0X2FsbCIsInRlYW1fbGlzdF9vd24iLCJ0ZWFtX3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInRpbWVfYWNjZXB0X2FsbCIsInRpbWVfYWNjZXB0X293biIsInRpbWVfYXBwcm92ZV9hbGwiLCJ0aW1lX2FwcHJvdmVfb3duIiwidGltZV9jcmVhdGVfYWxsIiwidGltZV9jcmVhdGVfb3duIiwidGltZV9kZWxldGVfYWxsIiwidGltZV9kZWxldGVfb3duIiwidGltZV9kZW55X2FsbCIsInRpbWVfZGVueV9vd24iLCJ0aW1lX2Rvd25sb2FkZmlsZV9hbGwiLCJ0aW1lX2Rvd25sb2FkZmlsZV9vd24iLCJ0aW1lX2VkaXRfYWxsIiwidGltZV9lZGl0X2Nsb3NlX3BlcmlvZF9hbGwiLCJ0aW1lX2VkaXRfY2xvc2VfcGVyaW9kX293biIsInRpbWVfZWRpdF9vd24iLCJ0aW1lX2xpc3RfYWxsIiwidGltZV9saXN0X293biIsInRpbWVfbWVudSIsInRpbWVfbWludXRlc196ZXJvIiwidGltZV9yZWplY3RfYWxsIiwidGltZV9yZXN0cmljdGVkX3BlcmlvZF9jcmVhdGUiLCJ0aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX2VkaXQiLCJ0aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX21lbnUiLCJ0aW1lX3NoYXJlX2FsbCIsInRpbWVfc2hhcmVfb3duIiwidGltZV9zaG93X2NhbGVuZGFyX3ZpZXciLCJ0aW1lX3VwbG9hZGZpbGVfYWxsIiwidGltZV91cGxvYWRmaWxlX293biIsInRyYW5zYWN0aW9uX2FkYXB0ZXJfbGlzdCIsInRyYW5zYWN0aW9uX2xpc3QiLCJ1c2VyX2Fic2VuY2VzX3Nob3ciLCJ1c2VyX2Nvc3RfY3JlYXRlIiwidXNlcl9jb3N0X2VkaXQiLCJ1c2VyX2Nvc3RfbGlzdCIsInVzZXJfY29zdF9tZW51IiwidXNlcl9jb3N0X3JhdGVfY3JlYXRlIiwidXNlcl9jb3N0X3JhdGVfZWRpdCIsInVzZXJfY29zdF9yYXRlX2xpc3QiLCJ1c2VyX2NyZWF0ZSIsInVzZXJfZGlzYWJsZSIsInVzZXJfZWRpdCIsInVzZXJfZWRpdF9kYXlzX2FsbG93X29ubHkiLCJ1c2VyX2dyb3VwX3JvbGVfY3JlYXRlX2FsbCIsInVzZXJfZ3JvdXBfcm9sZV9kZWxldGVfYWxsIiwidXNlcl9ncm91cF9yb2xlX2VkaXRfYWxsIiwidXNlcl9ncm91cF9yb2xlc19saXN0X2FsbCIsInVzZXJfbGlzdCIsInVzZXJfbGlzdF9hbGwiLCJ1c2VyX21hc3NfYWN0aXZhdGlvbiIsInVzZXJfcHJvZHVjdGl2aXR5X2NyZWF0ZSIsInVzZXJfcHJvZHVjdGl2aXR5X2Rpc2FibGUiLCJ1c2VyX3Byb2R1Y3Rpdml0eV9lZGl0IiwidXNlcl9wcm9kdWN0aXZpdHlfZW5hYmxlIiwidXNlcl9wcm9kdWN0aXZpdHlfbWVudSIsInVzZXJfdGltZV9yZXN0cmljdGVkX3BlcmlvZF9jcmVhdGUiLCJ1c2VyX3RpbWVfcmVzdHJpY3RlZF9wZXJpb2RfZGVsZXRlIiwidXNlcl90aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX2VkaXQiLCJ1c2VyZ3JvdXBfY3JlYXRlX2FsbCIsInVzZXJncm91cF9kZWxldGVfYWxsIiwidXNlcmdyb3VwX2VkaXRfYWxsIiwidXNlcmdyb3VwX2xpc3RfYWxsIiwidXNlcmdyb3VwX21lbnUiLCJ1c2Vyc191c2VyX2dyb3VwX2NyZWF0ZV9hbGwiLCJ1c2Vyc191c2VyX2dyb3VwX2RlbGV0ZV9hbGwiLCJ1c2Vyc191c2VyX2dyb3VwX2VkaXRfYWxsIiwidXNlcnNfdXNlcl9ncm91cHNfbGlzdF9hbGwiXSwiaG9tZXBhZ2UiOm51bGx9.kShN7NXGoaz1oFro-yYNyIpIEcnNpo1GiB8SFGKFUJtDQoqyp1I1w-CMA8Kta3vWXnUZwx-y2z1yVSJaMpZbqQgKFlakpcf6351bZSL8IAUPExSfLz0HYYCWFx-Usx94BBTqosKsRhnT8PkPN3dGxs8-XTIEDi9gN-Pk9OSHmM5mPkTsaaxTY40M-F7Y0Up2y6s_lwFaX13CmstiYZSXzyKL9SUBBx-E6-8qQAfuKPIoZ_50jSGPW98-IkAcWwqO6yGf-M07dSfFZ2vLfwc3ulHm2p8jVSmRxJ_O43BEWQD5cvqGbVIvSMXkS4y98DL4Vencjjg27iu3CUJsDNBBTg] Content-Type:[application/json] Origin:[https://azure-function.timemanagerweb.com] Tenant-Name:[pruebas-dos] User-Agent:[Mozilla/5.0 (X11; Linux x86_64)...]]\nBody: map[query:query ($limit: Int, $orderBy: String, $orderDesc: Boolean, $page: Int) {\n CustomersMeta(limit: $limit, orderBy: $orderBy, orderDesc: $orderDesc, page: $page) {\n meta {\n hasNextPage\n hasPreviousPage\n limit\n next\n page\n pages\n previous\n total\n }\n rows {\n id\n code\n number\n color\n name\n trade_name\n displayName\n email\n phone\n address\n city\n state\n country\n postal_code\n nit\n primary_external_code\n status\n statusMarking\n billingLimitDate\n recepctionLimitDate\n dmsIntegration\n cmrRequiredDocuments\n cmrPayTms\n enabled\n created_at\n updated_at\n valueTax\n withIva\n paymentDays\n national\n enterpriseGroup\n responsiblePartner {\n id\n username\n email\n fullName\n shortName\n locale\n userType\n superAdmin\n enabled\n created_at\n updated_at\n daysAllow\n }\n }\n }\n} variables:map[limit:100 orderBy:orderBy orderDesc:true page:7]]\n","time":"2025-07-30T10:49:09-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: POST https://apinewtm.com/graphql/ | Status: 200 | Duration: 422.8759ms\nHeaders: map[Access-Control-Allow-Credentials:[true] Access-Control-Allow-Origin:[https://azure-function.timemanagerweb.com] Access-Control-Expose-Headers:[link, access-control-allow-credentials] Cache-Control:[no-cache, private] Content-Type:[application/json] Date:[Wed, 30 Jul 2025 14:49:09 GMT] Server:[] Vary:[Authorization]]\nBody: {\"data\":{\"CustomersMeta\":{\"meta\":{\"hasNextPage\":true,\"hasPreviousPage\":true,\"limit\":100,\"next\":8,\"page\":7,\"pages\":10,\"previous\":6,\"total\":919},\"rows\":[{\"id\":\"583\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"INVERSIONES TL S.A.\",\"trade_name\":\"INVERSIONES TL S.A.\",\"displayName\":\"530 - INVERSIONES TL S.A.\",\"email\":\"mhuarcaya@tailoy.com.pe\",\"phone\":\"+51 (1)998 125 545\",\"address\":\"Jr. Mariano Odicio N\\u00b0 153 - Surquillo - Lima - Per\",\"city\":\"Santa Cruz\",\"state\":\"Santa Cruz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"480546020\",\"primary_external_code\":\"530\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"584\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"TECHINT ING. Y CONST. BOLIVIA S.A.\",\"trade_name\":\"TECHINT ING. Y CONST. BOLIVIA S.A.\",\"displayName\":\"134 - TECHINT ING. Y CONST. BOLIVIA S.A.\",\"email\":\"mdiaz@techint.com\",\"phone\":\"3561291\",\"address\":\"Av.jose Estensoro (3\\u00b0 Anillo Externo) N\\u00b0 250 Edifi\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"166524027\",\"primary_external_code\":\"134\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"585\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"TECNOLOG\\u00cdA COLABORATIVA EXPORT S.R.L.\",\"trade_name\":\"TECNOLOG\\u00cdA COLABORATIVA EXPORT S.R.L.\",\"displayName\":\"430 - TECNOLOG\\u00cdA COLABORATIVA EXPORT S.R.L.\",\"email\":\"marcelo.zenzano@dharbor.com\",\"phone\":\"76971010\",\"address\":\"Av. Salamanca casi Quintanilla, Torre 51, P-1,of.1\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"404059028\",\"primary_external_code\":\"430\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":20,\"username\":\"jpzegada@emba.com\",\"email\":\"jpzegada@emba.com\",\"fullName\":\"Juan Pablo Zegada\",\"shortName\":\"jzegada\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"586\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"TECTONIQ BOLIVIA SRL\",\"trade_name\":\"TECTONIQ BOLIVIA SRL\",\"displayName\":\"533 - TECTONIQ BOLIVIA SRL\",\"email\":\"rob.schaefer@tectoniq.com\",\"phone\":\"+61 427 95 817\",\"address\":\"Australia\",\"city\":\"La PAZ\",\"state\":\"La PAz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"478765020\",\"primary_external_code\":\"533\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":6,\"username\":\"darredondo@emba.com.bo\",\"email\":\"nicoln042001@gmail.com\",\"fullName\":\"Daniel Marcelo Arredondo Zelada\",\"shortName\":\"darredon\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-03 11:43:07\",\"daysAllow\":302}},{\"id\":\"587\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"TELEPERFORMANCE COLOMBIA\",\"trade_name\":\"TELEPERFORMANCE COLOMBIA\",\"displayName\":\"468 - TELEPERFORMANCE COLOMBIA\",\"email\":\"Carlos.MorenoAlzate@teleperformance.com\",\"phone\":\"57350500000000000\",\"address\":\"Bogot\\u00e1 Colombia\",\"city\":\"\",\"state\":\"\",\"country\":\"Colombia\",\"postal_code\":\"\",\"nit\":\"468\",\"primary_external_code\":\"468\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"588\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"TELXIUS CABLE BOLIVIA S.A.\",\"trade_name\":\"TELXIUS CABLE BOLIVIA S.A.\",\"displayName\":\"262 - TELXIUS CABLE BOLIVIA S.A.\",\"email\":\"lucia.escobar@hoganlovells.com\",\"phone\":\"3419565\",\"address\":\"av. 20 de octubre N\\u00b0 2665 Torre Azul piso 17\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"353561025\",\"primary_external_code\":\"262\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":23,\"username\":\"fsanchez@emba.com\",\"email\":\"fsanchez@emba.com\",\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"shortName\":\"fsanchez\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"589\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"TEOMA BOLIVIA S.R.L.\",\"trade_name\":\"TEOMA BOLIVIA S.R.L.\",\"displayName\":\"370 - TEOMA BOLIVIA S.R.L.\",\"email\":\"roberto.celis@teomaglobal.com\",\"phone\":\"70000172\",\"address\":\"AV SAN MARTIN # 10 ENTRE 2DO Y 3RO ANILLO EQUIPETR\",\"city\":\"\",\"state\":\"\",\"country\":\"Per\\u00fa\",\"postal_code\":\"\",\"nit\":\"296898021\",\"primary_external_code\":\"370\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"590\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"TEPROVID SRL\",\"trade_name\":\"TEPROVID SRL\",\"displayName\":\"305 - TEPROVID SRL\",\"email\":\"teprovidinfo@gmail.com\",\"phone\":\"2445005\",\"address\":\"Av. Cap. Ravelo N\\u00b0 2104 Zona: Sopocachi\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"351612028\",\"primary_external_code\":\"305\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"591\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"TERAPEUTICA BOLIVIANA S.A. TERBOL S.A.\",\"trade_name\":\"TERAPEUTICA BOLIVIANA S.A. TERBOL S.A.\",\"displayName\":\"374 - TERAPEUTICA BOLIVIANA S.A. TERBOL S.A.\",\"email\":\"rmquijano@terbol.com\",\"phone\":\"3426767\",\"address\":\"B. Hamacas c. 2 Este Nro. 3205 de la Sierra\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1028129026\",\"primary_external_code\":\"374\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":16,\"username\":\"rburgos@emba.com\",\"email\":\"rburgos@emba.com\",\"fullName\":\"Edwin Rodrigo Burgos Fernandez\",\"shortName\":\"rburgos\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"592\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"TEXTILES LAFAYETTE BOLIVIA S.A.\",\"trade_name\":\"TEXTILES LAFAYETTE BOLIVIA S.A.\",\"displayName\":\"128 - TEXTILES LAFAYETTE BOLIVIA S.A.\",\"email\":\"gherrera@lafayette.com\",\"phone\":\"(57) 7 6300340\",\"address\":\"Av. Grigota 8960\",\"city\":\"Santa CRuz\",\"state\":\"Santa Cruz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"357358029\",\"primary_external_code\":\"128\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"593\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"TIENDA AMIGA ER S.A.\",\"trade_name\":\"TIENDA AMIGA ER S.A.\",\"displayName\":\"428 - TIENDA AMIGA ER S.A.\",\"email\":\"franz.carvajal@tiendaamiga.com.bo\",\"phone\":\"3-435000\",\"address\":\"Av. 4\\u00b0 Anillo N\\u00b04165 Barrio 2 de Abril\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"176592023\",\"primary_external_code\":\"428\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":12,\"username\":\"tmercado@emba.com\",\"email\":\"tmercado@emba.com\",\"fullName\":\"Teddy Alberto Mercado Carrion\",\"shortName\":\"tmercado\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"594\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"TIGO - Telef\\u00f3nica Celular de Bolivia S.A.\",\"trade_name\":\"TIGO - Telef\\u00f3nica Celular de Bolivia S.A.\",\"displayName\":\"237 - TIGO - Telef\\u00f3nica Celular de Bolivia S.A.\",\"email\":\"sanchezju@tigo.net.bo\",\"phone\":\"3365003\",\"address\":\"AV.DOBLE VIA LA GUARDIA,5TO ANILLO C\\/SANTA TERESA\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1020255020\",\"primary_external_code\":\"237\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"595\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"TJC BOLIVIA S.A.\",\"trade_name\":\"TJC BOLIVIA S.A.\",\"displayName\":\"189 - TJC BOLIVIA S.A.\",\"email\":\"andres.puentes@tjcbolivia.com\",\"phone\":\"3331118\",\"address\":\"CELULAR 77690490\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1026901020\",\"primary_external_code\":\"189\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"596\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"TKFSTORES SRL\",\"trade_name\":\"TKFSTORES SRL\",\"displayName\":\"401 - TKFSTORES SRL\",\"email\":\"andres.puentes@tkfbolivia.com\",\"phone\":\"77690490\",\"address\":\"Calle Ballivian 241\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"401\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"597\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"TMF Bolivia SRL.\",\"trade_name\":\"TMF Bolivia SRL.\",\"displayName\":\"358 - TMF Bolivia SRL.\",\"email\":\"Javier.Grau@tmf-group.com\",\"phone\":\"(+51) 01 612 4406\",\"address\":\"Av. Emilio Cavenecia 151, Torre Cavenecia, Of. 701\",\"city\":\"\",\"state\":\"\",\"country\":\"Per\\u00fa\",\"postal_code\":\"\",\"nit\":\"144414026\",\"primary_external_code\":\"358\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":9,\"username\":\"paramayo@emba.com\",\"email\":\"paramayo@emba.com\",\"fullName\":\"Paul Aramayo Salinas\",\"shortName\":\"paramayo\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"598\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"TMF GROUP\",\"trade_name\":\"TMF GROUP\",\"displayName\":\"884 - TMF GROUP\",\"email\":\"angelica.arteta@tmf-group.com\",\"phone\":\"(+569) 95396169\",\"address\":\"Mariano S\\u00e1nchez Fontecilla 310, Piso 2, Ofic. 201\",\"city\":\"\",\"state\":\"\",\"country\":\"Chile\",\"postal_code\":\"\",\"nit\":\"884\",\"primary_external_code\":\"884\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"599\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"TORRE PACIFICO\",\"trade_name\":\"TORRE PACIFICO\",\"displayName\":\"303 - TORRE PACIFICO\",\"email\":\"grosazza@bmcs.com.bo\",\"phone\":\"71547762\",\"address\":\"AV SANCHEZ BUSTAMANTE N\\u00ba 977\",\"city\":\"La Paz\",\"state\":\"La Paz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"99002\",\"primary_external_code\":\"303\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"601\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Tradecorp SRL\",\"trade_name\":\"Tradecorp SRL\",\"displayName\":\"353 - Tradecorp SRL\",\"email\":\"corp.kev21@gmail.com\",\"phone\":\"75444437\",\"address\":\"AVENIDA ARQUIMEDES N\\u00b0 658 LA CHIMBA\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"376201021\",\"primary_external_code\":\"353\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"602\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"TRANSBEL S.A.\",\"trade_name\":\"TRANSBEL S.A.\",\"displayName\":\"203 - TRANSBEL S.A.\",\"email\":\"anbustamante@belcorp.biz\",\"phone\":\"3142500\",\"address\":\"4TO ANILLO ENTRE PARAGUA Y MUTUALISTA\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1028501021\",\"primary_external_code\":\"203\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"603\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"TRAXYS GROUP\",\"trade_name\":\"TRAXYS GROUP\",\"displayName\":\"822 - TRAXYS GROUP\",\"email\":\"mirari.barriola@traxys.com\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Estados Unidos\",\"postal_code\":\"\",\"nit\":\"822\",\"primary_external_code\":\"822\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"604\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"TUVES TV SATELITAL BOLIVIA S.A.\",\"trade_name\":\"TUVES TV SATELITAL BOLIVIA S.A.\",\"displayName\":\"345 - TUVES TV SATELITAL BOLIVIA S.A.\",\"email\":\"ealiaga@tuves.com.bo\",\"phone\":\"76787362\",\"address\":\"Av. Sanchez Lima Nro. 2329\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"166134029\",\"primary_external_code\":\"345\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"605\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"TYPSA - T\\u00e9cnica y proyectos S.A., Sucursal Bolivia\",\"trade_name\":\"TYPSA - T\\u00e9cnica y proyectos S.A., Sucursal Bolivia\",\"displayName\":\"198 - TYPSA - T\\u00e9cnica y proyectos S.A., Sucursal Bolivia\",\"email\":\"maolguin@typsa.es\",\"phone\":\"123123123\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1026735026\",\"primary_external_code\":\"198\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"606\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"U.S. Department of Justice - Civil Division - Office of Foreign Litigation\",\"trade_name\":\"U.S. Department of Justice - Civil Division - Office of Foreign Litigation\",\"displayName\":\"585 - U.S. Department of Justice - Civil Division - Office of Foreign Litigation\",\"email\":\"brennancd@state.gov\",\"phone\":\"50769211224\",\"address\":\"1100 L Street, NW, Washington, DC 20530\",\"city\":\"Washington D. C\",\"state\":\"Washington D. C\",\"country\":\"USA\",\"postal_code\":\"1\",\"nit\":\"585\",\"primary_external_code\":\"585\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"607\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"UBS\",\"trade_name\":\"UBS\",\"displayName\":\"692 - UBS\",\"email\":\"\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"692\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"608\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"UNION AGRONEGOCIOS\",\"trade_name\":\"UNION AGRONEGOCIOS\",\"displayName\":\"479 - UNION AGRONEGOCIOS\",\"email\":\"gvillagomez@union.com.bo\",\"phone\":\"76333310\",\"address\":\"3er Anillo Interno - (C\\/ Jes\\u00fas G\\u00f3mez)\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"479\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":8,\"username\":\"lmorenog@emba.com\",\"email\":\"lmorenog@emba.com\",\"fullName\":\"Luis Moreno Gutierrez\",\"shortName\":\"lmoreno\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"609\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"UNIVERSIDAD CATOLICA BOLIVIANA\",\"trade_name\":\"UNIVERSIDAD CATOLICA BOLIVIANA\",\"displayName\":\"438 - UNIVERSIDAD CATOLICA BOLIVIANA\",\"email\":\"gaguirre@ucb.edu.bo\",\"phone\":\"2782222\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"438\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":16,\"username\":\"rburgos@emba.com\",\"email\":\"rburgos@emba.com\",\"fullName\":\"Edwin Rodrigo Burgos Fernandez\",\"shortName\":\"rburgos\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"610\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Universidad cat\\u00f3lica Boliviana San Pablo\",\"trade_name\":\"Universidad cat\\u00f3lica Boliviana San Pablo\",\"displayName\":\"484 - Universidad cat\\u00f3lica Boliviana San Pablo\",\"email\":\"naldunate@ucb.edu.bo\",\"phone\":\"2782222\",\"address\":\"Zona Sur\",\"city\":\"La Paz\",\"state\":\"La Paz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"99001\",\"primary_external_code\":\"484\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":16,\"username\":\"rburgos@emba.com\",\"email\":\"rburgos@emba.com\",\"fullName\":\"Edwin Rodrigo Burgos Fernandez\",\"shortName\":\"rburgos\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"611\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"UNIVERSIDAD PRIVADA FRANZ TAMAYO S.A.\",\"trade_name\":\"UNIVERSIDAD PRIVADA FRANZ TAMAYO S.A.\",\"displayName\":\"431 - UNIVERSIDAD PRIVADA FRANZ TAMAYO S.A.\",\"email\":\"oagreda@unifranz.edu.bo\",\"phone\":\"76203980\",\"address\":\"Calle H\\u00e9roes Del Acre, Esquina Landaeta Abd\\u00f3n Saav\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1020233028\",\"primary_external_code\":\"431\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":12,\"username\":\"tmercado@emba.com\",\"email\":\"tmercado@emba.com\",\"fullName\":\"Teddy Alberto Mercado Carrion\",\"shortName\":\"tmercado\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"612\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"UPM Sales Oy\",\"trade_name\":\"UPM Sales Oy\",\"displayName\":\"273 - UPM Sales Oy\",\"email\":\"daniela.siegismund@upm.com\",\"phone\":\"+358 2041 48070\",\"address\":\"P.O. Box 835, Tulli Business Park, 3rd floor, \\u00c5ker\",\"city\":\"\",\"state\":\"\",\"country\":\"Finlandia\",\"postal_code\":\"\",\"nit\":\"273\",\"primary_external_code\":\"273\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"613\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Urbanizaciones del Norte S.A.\",\"trade_name\":\"Urbanizaciones del Norte S.A.\",\"displayName\":\"597 - Urbanizaciones del Norte S.A.\",\"email\":\"jpsaavedra@condominioasai.com\",\"phone\":\"3180800\",\"address\":\"Parque Industrial S\\/N\",\"city\":\"Santa Cruz\",\"state\":\"Santa Cruz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"317038022\",\"primary_external_code\":\"597\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"614\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"VALORIZA SERVICIOS MEDIOAMBIENTALES BOLIVIA S.R.L.\",\"trade_name\":\"VALORIZA SERVICIOS MEDIOAMBIENTALES BOLIVIA S.R.L.\",\"displayName\":\"129 - VALORIZA SERVICIOS MEDIOAMBIENTALES BOLIVIA S.R.L.\",\"email\":\"zandrade@sacyr.com\",\"phone\":\"71844140\",\"address\":\"B\\/ Sirari C\\/ Las Violetas N\\u00b0 S\\/n Edificio: Tacuara\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"295450029\",\"primary_external_code\":\"129\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"615\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Vecinos de la Urbanizaci\\u00f3n Bosques de la Colina\",\"trade_name\":\"Vecinos de la Urbanizaci\\u00f3n Bosques de la Colina\",\"displayName\":\"899 - Vecinos de la Urbanizaci\\u00f3n Bosques de la Colina\",\"email\":\"e_ingvar@hotmail.com\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"899\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"616\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"VEMASSA (GRUPO VENADO)\",\"trade_name\":\"VEMASSA (GRUPO VENADO)\",\"displayName\":\"562 - VEMASSA (GRUPO VENADO)\",\"email\":\"felipevillarroel@grupovenado.com\",\"phone\":\"77700255\",\"address\":\"CALLE SANTA GEMA ESQ. CALLE 3\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"562\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"617\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Vertiv Cono Sur Ltda.\",\"trade_name\":\"Vertiv Cono Sur Ltda.\",\"displayName\":\"254 - Vertiv Cono Sur Ltda.\",\"email\":\"asotomayor@porzio.cl\",\"phone\":\"56227290600\",\"address\":\"Cerro El Plomo 5680, piso 19, Las Condes (Porzio R\",\"city\":\"\",\"state\":\"\",\"country\":\"Chile\",\"postal_code\":\"\",\"nit\":\"254\",\"primary_external_code\":\"254\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"618\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"trade_name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"displayName\":\"130 - VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"email\":\"mchca@vestas.com\",\"phone\":\"52.55.49737400\",\"address\":\"COCHABAMBA, ESQUINA SAAVEDRA. EDIF. TORRE EMPRESAR\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"355345029\",\"primary_external_code\":\"130\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"619\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"VICENTE SCAVONE \\u0026 CIA S.A.E. SUCURSAL BOLIVIA\",\"trade_name\":\"VICENTE SCAVONE \\u0026 CIA S.A.E. SUCURSAL BOLIVIA\",\"displayName\":\"569 - VICENTE SCAVONE \\u0026 CIA S.A.E. SUCURSAL BOLIVIA\",\"email\":\"hernan.gutierrez@lasca.com.py\",\"phone\":\"72157909\",\"address\":\"Av. Bush #520, edificio Equanta, piso 3, of. 1\",\"city\":\"Asuncion\",\"state\":\"Paraguay\",\"country\":\"Paraguay\",\"postal_code\":\"05689\",\"nit\":\"134619029\",\"primary_external_code\":\"569\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":14.94,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":19,\"username\":\"iayala@emba.com\",\"email\":\"iayala@emba.com\",\"fullName\":\"Ines Ayala\",\"shortName\":\"iayala\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"620\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Villegas Pareja\",\"trade_name\":\"Villegas Pareja\",\"displayName\":\"409 - Villegas Pareja\",\"email\":\"michelpareja@gmail.com\",\"phone\":\"774444033\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"409\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":17,\"username\":\"aaraoz@emba.com\",\"email\":\"aaraoz@emba.com\",\"fullName\":\"Alvaro Araoz Ardaya\",\"shortName\":\"aaraoz\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-12-04 15:29:19\",\"daysAllow\":302}},{\"id\":\"621\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"VILTE \\u0026 FLORES ICC SRL\",\"trade_name\":\"VILTE \\u0026 FLORES ICC SRL\",\"displayName\":\"519 - VILTE \\u0026 FLORES ICC SRL\",\"email\":\"nzegarra@emba.com.bo\",\"phone\":\"77277163\",\"address\":\"Av. Arce Edificio Priscila\",\"city\":\"La Paz\",\"state\":\"La Paz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"300502026\",\"primary_external_code\":\"519\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"622\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"VISI\\u00d3N MUNDIAL BOLIVIA\",\"trade_name\":\"VISI\\u00d3N MUNDIAL BOLIVIA\",\"displayName\":\"471 - VISI\\u00d3N MUNDIAL BOLIVIA\",\"email\":\"rosario_moreno@wvi.org\",\"phone\":\"591 72016177\",\"address\":\"CAlle 15 de obrajes\",\"city\":\"La PAz\",\"state\":\"La Paz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"1005307027\",\"primary_external_code\":\"471\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"623\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Vivian Aguirre\",\"trade_name\":\"Vivian Aguirre\",\"displayName\":\"548 - Vivian Aguirre\",\"email\":\"licviviaguirre@gmail.com\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"548\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":8,\"username\":\"lmorenog@emba.com\",\"email\":\"lmorenog@emba.com\",\"fullName\":\"Luis Moreno Gutierrez\",\"shortName\":\"lmoreno\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"624\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"VOITH HYDRA\",\"trade_name\":\"VOITH HYDRA\",\"displayName\":\"689 - VOITH HYDRA\",\"email\":\"Cibele.Barbara@voith.com\",\"phone\":\"4532688\",\"address\":\"Av. Oquendo N\\u00b0 1080 Edificio: Los Tiempos Torre Ii\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"689\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"625\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"VOITH HYDRO LTDA. SUCURSAL BOLIVIA\",\"trade_name\":\"VOITH HYDRO LTDA. SUCURSAL BOLIVIA\",\"displayName\":\"131 - VOITH HYDRO LTDA. SUCURSAL BOLIVIA\",\"email\":\"thiago.tavares@voith.com\",\"phone\":\"4532688\",\"address\":\"Av. Oquendo N\\u00b0 1080 Edificio: Los Tiempos Torre Ii\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"316988023\",\"primary_external_code\":\"131\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"627\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Walter Camacho\",\"trade_name\":\"Walter Camacho\",\"displayName\":\"514 - Walter Camacho\",\"email\":\"oo@gmail.com\",\"phone\":\"79960430\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"514\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":16,\"username\":\"rburgos@emba.com\",\"email\":\"rburgos@emba.com\",\"fullName\":\"Edwin Rodrigo Burgos Fernandez\",\"shortName\":\"rburgos\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"628\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"WALTER GUERRERO\",\"trade_name\":\"WALTER GUERRERO\",\"displayName\":\"439 - WALTER GUERRERO\",\"email\":\"JRIVERA2613@GMAIL.COM\",\"phone\":\"72985250\",\"address\":\"TARIJA\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"439\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":16,\"username\":\"rburgos@emba.com\",\"email\":\"rburgos@emba.com\",\"fullName\":\"Edwin Rodrigo Burgos Fernandez\",\"shortName\":\"rburgos\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"630\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"We Work\",\"trade_name\":\"We Work\",\"displayName\":\"228 - We Work\",\"email\":\"jaime.orvananos@wework.com\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"M\\u00e9xico\",\"postal_code\":\"\",\"nit\":\"228\",\"primary_external_code\":\"228\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":8,\"username\":\"lmorenog@emba.com\",\"email\":\"lmorenog@emba.com\",\"fullName\":\"Luis Moreno Gutierrez\",\"shortName\":\"lmoreno\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"631\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"WESTLAND CONSTRUCTION BOLIVIA S.R.L.\",\"trade_name\":\"WESTLAND CONSTRUCTION BOLIVIA S.R.L.\",\"displayName\":\"617 - WESTLAND CONSTRUCTION BOLIVIA S.R.L.\",\"email\":\"samantha@westlandconstruction.com\",\"phone\":\"+591 2 2791554\",\"address\":\"Torre Pacifico, Piso 8, Av. S\\u00e1nchez Bustamante.\",\"city\":\"La PAz\",\"state\":\"La PAz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"504893023\",\"primary_external_code\":\"617\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":13,\"username\":\"cdelgado@emba.com\",\"email\":\"cdelgado@emba.com\",\"fullName\":\"Cristhian Delgado Ramirez\",\"shortName\":\"cdelgado\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"632\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Wholesale Borthers\",\"trade_name\":\"Wholesale Borthers\",\"displayName\":\"518 - Wholesale Borthers\",\"email\":\"jazmin.franco@wholesalebrothers.com.py\",\"phone\":\"59598400000000000\",\"address\":\"Paraguay\",\"city\":\"\",\"state\":\"\",\"country\":\"Paraguay\",\"postal_code\":\"\",\"nit\":\"518\",\"primary_external_code\":\"518\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":8,\"username\":\"lmorenog@emba.com\",\"email\":\"lmorenog@emba.com\",\"fullName\":\"Luis Moreno Gutierrez\",\"shortName\":\"lmoreno\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"633\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"WIKA ARGENTINA S.A.\",\"trade_name\":\"WIKA ARGENTINA S.A.\",\"displayName\":\"760 - WIKA ARGENTINA S.A.\",\"email\":\"dbidjimenian@wika.com.ar\",\"phone\":\"54 11 5442 00 00\",\"address\":\"Cte.Benjam\\u00edn Franklin 600 (B1603BRL)Villa Martelli\",\"city\":\"\",\"state\":\"\",\"country\":\"Argentina\",\"postal_code\":\"\",\"nit\":\"760\",\"primary_external_code\":\"760\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"634\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Wilfred Hoedt\",\"trade_name\":\"Wilfred Hoedt\",\"displayName\":\"350 - Wilfred Hoedt\",\"email\":\"adolfo@ppm.com.uy\",\"phone\":\"(+598) 2622 4276\",\"address\":\"Montevideo - Uruguay\",\"city\":\"\",\"state\":\"\",\"country\":\"Uruguay\",\"postal_code\":\"\",\"nit\":\"350\",\"primary_external_code\":\"350\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"635\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Wood PLC\",\"trade_name\":\"Wood PLC\",\"displayName\":\"326 - Wood PLC\",\"email\":\"jessica.guevara@woodplc.com\",\"phone\":\"Direct: +1 (770) 360\",\"address\":\"1105 Lakewood Parkway, Suite 300 Alpharetta, GA 30\",\"city\":\"\",\"state\":\"\",\"country\":\"Reino Unido\",\"postal_code\":\"\",\"nit\":\"326\",\"primary_external_code\":\"326\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":12,\"username\":\"tmercado@emba.com\",\"email\":\"tmercado@emba.com\",\"fullName\":\"Teddy Alberto Mercado Carrion\",\"shortName\":\"tmercado\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"636\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"YANAPA - PERCY MANRIQUEZ\",\"trade_name\":\"YANAPA - PERCY MANRIQUEZ\",\"displayName\":\"255 - YANAPA - PERCY MANRIQUEZ\",\"email\":\"dg772@hotmail.com\",\"phone\":\"75267277\",\"address\":\"Chasquipampa c\\/53 N\\u00ba7\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"6100847011\",\"primary_external_code\":\"255\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"637\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"YANDEX\",\"trade_name\":\"YANDEX\",\"displayName\":\"503 - YANDEX\",\"email\":\"nlbelikova@yandex-team.com\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Rusia\",\"postal_code\":\"\",\"nit\":\"503\",\"primary_external_code\":\"503\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":8,\"username\":\"lmorenog@emba.com\",\"email\":\"lmorenog@emba.com\",\"fullName\":\"Luis Moreno Gutierrez\",\"shortName\":\"lmoreno\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"638\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"YANGO DELIVERY BOLIVIA S.R.L.\",\"trade_name\":\"YANGO DELIVERY BOLIVIA S.R.L.\",\"displayName\":\"544 - YANGO DELIVERY BOLIVIA S.R.L.\",\"email\":\"natafriedman@yandex-team.com\",\"phone\":\"591 2 2791554\",\"address\":\"Calacoto, Calle: Inofuentes, Nro. 1348.\",\"city\":\"Santa Cruz\",\"state\":\"Santa CRuz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"479066022\",\"primary_external_code\":\"544\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":13,\"username\":\"cdelgado@emba.com\",\"email\":\"cdelgado@emba.com\",\"fullName\":\"Cristhian Delgado Ramirez\",\"shortName\":\"cdelgado\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"639\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"YANGO RUSIA\",\"trade_name\":\"YANGO RUSIA\",\"displayName\":\"612 - YANGO RUSIA\",\"email\":\"olgatyangaeva@yango.com\",\"phone\":\"15152356\",\"address\":\"RUSIA\",\"city\":\"Santa Cruz\",\"state\":\"Santa Cruz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"612\",\"primary_external_code\":\"612\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"640\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"YASMANI ESTIVEN BALANZA MIRANDA\",\"trade_name\":\"YASMANI ESTIVEN BALANZA MIRANDA\",\"displayName\":\"212 - YASMANI ESTIVEN BALANZA MIRANDA\",\"email\":\"\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"5055541015\",\"primary_external_code\":\"212\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"641\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"YOLANDA BAUTISTA DE SARDES\",\"trade_name\":\"YOLANDA BAUTISTA DE SARDES\",\"displayName\":\"697 - YOLANDA BAUTISTA DE SARDES\",\"email\":\"\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"697\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"642\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"YPO BOLIVIA\",\"trade_name\":\"YPO BOLIVIA\",\"displayName\":\"251 - YPO BOLIVIA\",\"email\":\"sashamostajo@gmail.com\",\"phone\":\"76385900\",\"address\":\"Calle Los Flamboyanes No. 17 piso 2 Barrio Equipet\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"251\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"643\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"ZHEJIANG PROVINCIAL NO.1 WATER CONSERVANCY \\u0026 ELECTRIC POWER CONSTRUCTION GROUP HOLDINGS CO S.A. (SUC\",\"trade_name\":\"ZHEJIANG PROVINCIAL NO.1 WATER CONSERVANCY \\u0026 ELECTRIC POWER CONSTRUCTION GROUP HOLDINGS CO S.A. (SUC\",\"displayName\":\"357 - ZHEJIANG PROVINCIAL NO.1 WATER CONSERVANCY \\u0026 ELECTRIC POWER CONSTRUCTION GROUP HOLDINGS CO S.A. (SUC\",\"email\":\"patricia.liquitaya@gmail.com\",\"phone\":\"22788142\",\"address\":\"cochabamba\",\"city\":\"\",\"state\":\"\",\"country\":\"China\",\"postal_code\":\"\",\"nit\":\"290058028\",\"primary_external_code\":\"357\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"644\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"ZTE BOLIVIA S.R.L.\",\"trade_name\":\"ZTE BOLIVIA S.R.L.\",\"displayName\":\"132 - ZTE BOLIVIA S.R.L.\",\"email\":\"elu.shubiao@zte.com.cn\",\"phone\":\"2155700\",\"address\":\"Av. Ballivian Esq. Calle 13 No. 7975\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"154370023\",\"primary_external_code\":\"132\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"645\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Zurich Insurance Company Ltd\",\"trade_name\":\"Zurich Insurance Company Ltd\",\"displayName\":\"546 - Zurich Insurance Company Ltd\",\"email\":\"julrich@whitecase.com\",\"phone\":\"12026263600\",\"address\":\"EEUU\",\"city\":\"La PAz\",\"state\":\"La PAZ\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"546\",\"primary_external_code\":\"546\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"742\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"LG ELECTRONICS INC. CHILE LIMITADA\",\"trade_name\":\"LG ELECTRONICS INC. CHILE LIMITADA\",\"displayName\":\"752 - LG ELECTRONICS INC. CHILE LIMITADA\",\"email\":\"felipe.barrera@lge.com\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Chile\",\"postal_code\":\"\",\"nit\":\"752\",\"primary_external_code\":\"752\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"815\",\"code\":\"\",\"number\":null,\"color\":\"#ffb79e\",\"name\":\"Richline Group, Inc.\",\"trade_name\":\"Richline Group, Inc.\",\"displayName\":\"224 - Richline Group, Inc.\",\"email\":\"amorenog@emba.com.bo\",\"phone\":\"954-718-3200\",\"address\":\"6701 Nob Hill Road Tamarac, FL 33321\",\"city\":\"\",\"state\":\"\",\"country\":\"USA\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"224\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":0,\"recepctionLimitDate\":0,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2018-12-19 05:00:00\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"816\",\"code\":\"\",\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"CARLA PATRICIA CHAVEZ VALENCIA\",\"trade_name\":\"CARLA PATRICIA CHAVEZ VALENCIA\",\"displayName\":\"912 - CARLA PATRICIA CHAVEZ VALENCIA\",\"email\":\"\",\"phone\":\"77787910\",\"address\":\"Rue du Rhone 8\",\"city\":\"La Paz\",\"state\":\"La Paz\",\"country\":\"Bolivia\",\"postal_code\":null,\"nit\":\"2283608\",\"primary_external_code\":\"912\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":null,\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-01-18 05:00:00\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"818\",\"code\":\"\",\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"GABRIEL PATENT AND TRADEMARK OFFICE S.R.L.\",\"trade_name\":\"GABRIEL PATENT AND TRADEMARK OFFICE S.R.L.\",\"displayName\":\"914 - GABRIEL PATENT AND TRADEMARK OFFICE S.R.L.\",\"email\":\"\",\"phone\":\"\",\"address\":\"\",\"city\":null,\"state\":null,\"country\":\"\",\"postal_code\":null,\"nit\":\"328926026\",\"primary_external_code\":\"914\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":null,\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-01-18 05:00:00\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"819\",\"code\":\"\",\"number\":null,\"color\":\"#BADDE9\",\"name\":\"BLENASTOR\",\"trade_name\":\"BLENASTOR\",\"displayName\":\"836 - BLENASTOR\",\"email\":\"nrosas@blenastor.com\",\"phone\":\"59323949880\",\"address\":\"Sanchez Bustamante n 977 Edificio Pacifico Piso 8\",\"city\":\"\",\"state\":\"\",\"country\":\"Ecuador\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"836\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":0,\"recepctionLimitDate\":0,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2020-04-11 05:00:00\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"820\",\"code\":\"\",\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"AGROINDUSTRIAS BUNGE BOLIVIA S.A.\",\"trade_name\":\"AGROINDUSTRIAS BUNGE BOLIVIA S.A.\",\"displayName\":\"915 - AGROINDUSTRIAS BUNGE BOLIVIA S.A.\",\"email\":\"paola.silva@bunge.com\",\"phone\":\"3450172\",\"address\":\"Carretera A Cotoca Km14 1\\/2\",\"city\":\"Santa Cruz\",\"state\":\"Bolivia\",\"country\":\"Bolivia\",\"postal_code\":null,\"nit\":\"176198029\",\"primary_external_code\":\"915\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":null,\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2019-03-15 05:00:00\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"821\",\"code\":\"\",\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"INVERSIONES INMOBILIARIAS INIMBOL SA\",\"trade_name\":\"INVERSIONES INMOBILIARIAS INIMBOL SA\",\"displayName\":\"916 - INVERSIONES INMOBILIARIAS INIMBOL SA\",\"email\":\"\",\"phone\":\"2491554\",\"address\":\"La Paz\",\"city\":\"La Paz\",\"state\":\"Bolivia\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"099001\",\"primary_external_code\":\"916\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":null,\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-01-18 05:00:00\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":14.94,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"822\",\"code\":\"\",\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"EDUCTRADE S.A. - SUCURSAL BOLIVIA\",\"trade_name\":\"EDUCTRADE S.A. - SUCURSAL BOLIVIA\",\"displayName\":\"917 - EDUCTRADE S.A. - SUCURSAL BOLIVIA\",\"email\":\"mario.previtera@eductrade.es\",\"phone\":\"27915545\",\"address\":\"Av. julio pati\\u00f1o, edif.: EDUARDO SAENZ PISO 1 of.B\",\"city\":\"La Paz\",\"state\":\"La Paz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"382411021\",\"primary_external_code\":\"917\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":null,\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-21 05:00:00\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":14.94,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"823\",\"code\":\"\",\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"AON CONSULTING SRL\",\"trade_name\":\"AON CONSULTING SRL\",\"displayName\":\"918 - AON CONSULTING SRL\",\"email\":\"eder.vazquez@aon.com\",\"phone\":\"2790955\",\"address\":\"Calle 13 N S\\/n Edificio: Torre Lucia Piso: 3 Zona:\",\"city\":\"La Paz\",\"state\":\"La Paz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"122711027\",\"primary_external_code\":\"918\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":null,\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2019-04-22 05:00:00\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":14.94,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"824\",\"code\":\"\",\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"TECNOFARMA SA\",\"trade_name\":\"TECNOFARMA SA\",\"displayName\":\"919 - TECNOFARMA SA\",\"email\":\"hernan.gutierrez@tecnofarma.com.bo\",\"phone\":\"\",\"address\":\"Av. Velarde N\\u00b0 500 esquina av. Trompillo casi segu\",\"city\":null,\"state\":null,\"country\":\"Bolivia\",\"postal_code\":null,\"nit\":\"1020627026\",\"primary_external_code\":\"919\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":null,\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2021-04-09 05:00:00\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"825\",\"code\":\"\",\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Farmex S.R.L.\",\"trade_name\":\"Farmex S.R.L.\",\"displayName\":\"814 - Farmex S.R.L.\",\"email\":\"azarate@farmex.com.pe\",\"phone\":\"(511) 630 6400 Anexo\",\"address\":\"Calle Dean Valdivia 148 Piso 7, San Isidro\",\"city\":\"Lima\",\"state\":\"Lima\",\"country\":\"Peru\",\"postal_code\":\"091\",\"nit\":\"2010014158\",\"primary_external_code\":\"814\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":null,\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2019-06-27 05:00:00\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":16,\"username\":\"rburgos@emba.com\",\"email\":\"rburgos@emba.com\",\"fullName\":\"Edwin Rodrigo Burgos Fernandez\",\"shortName\":\"rburgos\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"826\",\"code\":\"\",\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"SACYR\",\"trade_name\":\"SACYR\",\"displayName\":\"782 - SACYR\",\"email\":\"acastillo@sacyr.com\",\"phone\":\"71880530\",\"address\":\"Av Sanchez Bustamante 977 Edificio Torre Pacifico Piso 3\",\"city\":\"la PAz\",\"state\":\"La PAz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"329520021\",\"primary_external_code\":\"782\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":null,\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2018-10-31 05:00:00\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"828\",\"code\":null,\"number\":null,\"color\":\"#00826D\",\"name\":\"JARDECOM S.A.\",\"trade_name\":\"JARDECOM S.A.\",\"displayName\":\"926 - JARDECOM S.A.\",\"email\":null,\"phone\":\"2431673\",\"address\":\"Av. Arce esq. Cordero #123.La Paz\",\"city\":\"La Paz\",\"state\":\"Bolivia\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"288728029\",\"primary_external_code\":\"926\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-01-30 20:19:26\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":14.94,\"withIva\":1,\"paymentDays\":null,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"830\",\"code\":null,\"number\":null,\"color\":\"#00826D\",\"name\":\"BBA BARZALLO ABOGADOS\",\"trade_name\":\"BBA BARZALLO ABOGADOS\",\"displayName\":\"928 - BBA BARZALLO ABOGADOS\",\"email\":null,\"phone\":\"593 2 25444464\",\"address\":\"Av. Col\\u00f3n y 6 de Diciembr, Ed. Crist\\u00f3bal Col\\u00f3n, Quito, Pichincha EC\",\"city\":\"Quito\",\"state\":\"Ecuador\",\"country\":\"Ecuador\",\"postal_code\":\"0\",\"nit\":\"1792250994001\",\"primary_external_code\":\"928\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-02-01 12:33:35\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":14.94,\"withIva\":1,\"paymentDays\":null,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"831\",\"code\":null,\"number\":null,\"color\":\"#00826D\",\"name\":\"Asociaci\\u00f3n de L\\u00edderes Haggai Bolivia\",\"trade_name\":\"Asociaci\\u00f3n de L\\u00edderes Haggai Bolivia\",\"displayName\":\"929 - Asociaci\\u00f3n de L\\u00edderes Haggai Bolivia\",\"email\":null,\"phone\":\"76003301\",\"address\":\"La Paz no se ibica direccion\",\"city\":\"La Paz\",\"state\":\"Bolivia\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"0123\",\"primary_external_code\":\"929\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-02-01 12:46:48\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":14.94,\"withIva\":1,\"paymentDays\":null,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"833\",\"code\":null,\"number\":null,\"color\":\"#00826D\",\"name\":\"Gast\\u00f3n Parra\",\"trade_name\":\"Gast\\u00f3n Parra\",\"displayName\":\"920 - Gast\\u00f3n Parra\",\"email\":null,\"phone\":\"73349479\",\"address\":\"La Paz\",\"city\":\"La Paz\",\"state\":\"Bolivia\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"4887003\",\"primary_external_code\":\"920\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-02-05 17:25:31\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":14.94,\"withIva\":1,\"paymentDays\":null,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"836\",\"code\":null,\"number\":null,\"color\":\"#00826D\",\"name\":\"SIERRA TRADING COMPANY S.R.L.\",\"trade_name\":\"SIERRA TRADING COMPANY S.R.L.\",\"displayName\":\"933 - SIERRA TRADING COMPANY S.R.L.\",\"email\":null,\"phone\":\"75011503\",\"address\":\"8R3P+W2H, Las Orquideas, Santa Cruz de la Sierra\",\"city\":\"Santa Cruz\",\"state\":\"Santa Cruz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"277848022\",\"primary_external_code\":\"933\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-02-16 19:03:54\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":14.94,\"withIva\":1,\"paymentDays\":null,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"837\",\"code\":null,\"number\":null,\"color\":\"#00826D\",\"name\":\"Servicio de Intermediaci\\u00f3n Comercial Loyalty Club S.R.L.\",\"trade_name\":\"Servicio de Intermediaci\\u00f3n Comercial Loyalty Club S.R.L.\",\"displayName\":\"934 - Servicio de Intermediaci\\u00f3n Comercial Loyalty Club S.R.L.\",\"email\":null,\"phone\":\"3346770\",\"address\":\"Calle 21 De Mayo N\\u00b0 90 Edificio: Edificio Paz Stelzer Piso: 1 Oficina: 1 Zona: Centro\",\"city\":\"Santa Cruz\",\"state\":\"Santa Cruz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"183682020\",\"primary_external_code\":\"934\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-02-16 19:52:54\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":14.94,\"withIva\":1,\"paymentDays\":null,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"838\",\"code\":null,\"number\":null,\"color\":\"#00c200\",\"name\":\"La Asociaci\\u00f3n de Productores de Oleaginosas y Trigo- ANAPO\",\"trade_name\":\"La Asociaci\\u00f3n de Productores de Oleaginosas y Trigo- ANAPO\",\"displayName\":\"935 - La Asociaci\\u00f3n de Productores de Oleaginosas y Trigo- ANAPO\",\"email\":null,\"phone\":\"(591-3) 342-3030\",\"address\":\"Av. Ovidio Barbery esq. Calle Jaime Mendoza (Barrio Avaroa)\",\"city\":\"Santa Cruz de la Sierra\",\"state\":\"SANTA CRUZ\",\"country\":\"Bolivia\",\"postal_code\":null,\"nit\":\"1027319027\",\"primary_external_code\":\"935\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-02-19 23:16:00\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":14.94,\"withIva\":1,\"paymentDays\":null,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"839\",\"code\":null,\"number\":null,\"color\":\"#9b0000\",\"name\":\"Cl\\u00ednica Angel Foianini S.R.L\",\"trade_name\":\"Cl\\u00ednica Angel Foianini S.R.L\",\"displayName\":\"936 - Cl\\u00ednica Angel Foianini S.R.L\",\"email\":null,\"phone\":\"3362211\",\"address\":\"Av. Irala N\\u00b0 468 Zona Sur\",\"city\":\"Santa Cr\",\"state\":\"Santa Cruz\",\"country\":\"Bolivia\",\"postal_code\":null,\"nit\":\"1028455022\",\"primary_external_code\":\"936\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-02-20 18:37:50\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":14.94,\"withIva\":1,\"paymentDays\":null,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"842\",\"code\":null,\"number\":null,\"color\":\"#ccff99\",\"name\":\"CREA BOLIVIA\",\"trade_name\":\"CREA BOLIVIA\",\"displayName\":\"939 - CREA BOLIVIA\",\"email\":null,\"phone\":\"73611887\",\"address\":\"Gral. Guilarte 63B Esq. Costa Rica\",\"city\":\"Santa Cruz de la Sierra\",\"state\":\"Santa Cruz\",\"country\":\"Bolivia\",\"postal_code\":null,\"nit\":\"201534025\",\"primary_external_code\":\"939\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-02-21 14:52:57\",\"updated_at\":\"2024-05-28 17:14:02\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":null,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"843\",\"code\":null,\"number\":null,\"color\":\"#cb4f89\",\"name\":\"Ardonagh Specialty\",\"trade_name\":\"Ardonagh Specialty\",\"displayName\":\"940 - Ardonagh Specialty\",\"email\":null,\"phone\":\"+447801576083\",\"address\":\"55, Bishopsgate, City Of London EC2N 3AS\",\"city\":\"Londres\",\"state\":\"Londres\",\"country\":\"United Kingdom\",\"postal_code\":null,\"nit\":\"990012\",\"primary_external_code\":\"940\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-02-21 20:34:02\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":14.94,\"withIva\":1,\"paymentDays\":null,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"844\",\"code\":null,\"number\":null,\"color\":\"#665782\",\"name\":\"COSAPI S.A. - SUCURSAL BOLIVIA\",\"trade_name\":\"COSAPI S.A.\",\"displayName\":\"941 - COSAPI S.A.\",\"email\":null,\"phone\":\"+51953421290\",\"address\":\"AV. REPUBLICA DE COLOMBIA 791 EDIFICIO PLAZA REPUBLICA-LIMA 27, PER\\u00da\",\"city\":\"La Paz\",\"state\":\"La Paz\",\"country\":\"Bolivia\",\"postal_code\":\"0000\",\"nit\":\"328736029\",\"primary_external_code\":\"941\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":30,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"contacto en Bolivia Maria Nela, Segundo Fernandez, correo sfernandez@cosapi.com.pe,\",\"enabled\":true,\"created_at\":\"2024-02-23 19:11:21\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":14.94,\"withIva\":1,\"paymentDays\":30,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"847\",\"code\":null,\"number\":null,\"color\":\"#9b0000\",\"name\":\"RENACER BOLIVIA\",\"trade_name\":\"RENACER BOLIVIA\",\"displayName\":\"949 - RENACER BOLIVIA\",\"email\":null,\"phone\":\"76346060\",\"address\":\"Av. Beni entre 3er y 4to anillo, C\\/7 Este Bolpebra, Edificio T.E.O. 3er piso, Oficina 5.\",\"city\":\"Santa Cruz de la Sierra\",\"state\":\"SANTA CRUZ\",\"country\":\"Bolivia\",\"postal_code\":null,\"nit\":\"6328411\",\"primary_external_code\":\"949\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"SERVICIO PRO BONO\",\"enabled\":true,\"created_at\":\"2024-02-29 21:16:22\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":14.94,\"withIva\":1,\"paymentDays\":null,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"850\",\"code\":null,\"number\":null,\"color\":\"#00826D\",\"name\":\"Mar\\u00eda Inmaculada Pintos V\\u00e1zquez Figueroa\",\"trade_name\":\"Mar\\u00eda Inmaculada Pintos V\\u00e1zquez Figueroa\",\"displayName\":\"952 - Mar\\u00eda Inmaculada Pintos V\\u00e1zquez Figueroa\",\"email\":null,\"phone\":\"79592839\",\"address\":\"Urbanizaci\\u00f3n Colinas del Urub\\u00f3 Sector I, Avda 6ta S\\/n.\",\"city\":\"Santa Cruz de la Sierra\",\"state\":\"Santa Cruz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"191140027\",\"primary_external_code\":\"952\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"inmaculada.pintos@maec.es\",\"enabled\":true,\"created_at\":\"2024-03-06 14:35:37\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":14.94,\"withIva\":1,\"paymentDays\":null,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"851\",\"code\":null,\"number\":null,\"color\":\"#cb4f89\",\"name\":\"Orquesta Filarm\\u00f3nica de Santa Cruz de la Sierra\",\"trade_name\":\"Orquesta Filarm\\u00f3nica de Santa Cruz de la Sierra\",\"displayName\":\"953 - Orquesta Filarm\\u00f3nica de Santa Cruz de la Sierra\",\"email\":null,\"phone\":\"(+591) 77336957\",\"address\":\"Torre Empresarial CAINCO, Piso 15 Calle Cochabamba No. 710\",\"city\":\"Santa Cruz de la Sierra\",\"state\":\"Santa Cruz\",\"country\":\"Bolivia\",\"postal_code\":null,\"nit\":\"359681028\",\"primary_external_code\":\"953\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"claudiasalek@hotmail.com, Claudia Salek\",\"enabled\":true,\"created_at\":\"2024-03-06 15:01:43\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":14.94,\"withIva\":1,\"paymentDays\":null,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"852\",\"code\":null,\"number\":null,\"color\":\"#3e6038\",\"name\":\"Yuchan Agropecuaria S.A.\",\"trade_name\":\"Yuchan Agropecuaria S.A.\",\"displayName\":\"954 - Yuchan Agropecuaria S.A.\",\"email\":null,\"phone\":\"5511 3900-5413\",\"address\":\"Av. Las Ramblas Edificio: Cubo Ii Piso: 1 Oficina: 1b Zona: Equipetrol\",\"city\":\"Santa Cruz de la Sierra\",\"state\":\"Santa Cruz\",\"country\":\"Bolivia\",\"postal_code\":null,\"nit\":\"159910023\",\"primary_external_code\":\"954\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"humberto.melo@brasil-agro.com\\/ Humberto Peres Carvalho Lemos de Melo\",\"enabled\":true,\"created_at\":\"2024-03-07 22:40:31\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":14.94,\"withIva\":1,\"paymentDays\":null,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"854\",\"code\":null,\"number\":null,\"color\":\"#000082\",\"name\":\"OLC Ingenieros EIRL\",\"trade_name\":\"OLC Ingenieros EIRL\",\"displayName\":\"956 - OLC Ingenieros EIRL\",\"email\":null,\"phone\":\"+51 990 325 722\",\"address\":\"Avenida Arambur\\u00fa 878, Surquillo - 15047, Per\\u00fa\",\"city\":\"Lima\",\"state\":\"Lima\",\"country\":\"Peru\",\"postal_code\":\"00051\",\"nit\":\"20254356051\",\"primary_external_code\":\"956\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"Christian Alv\\u00e1n\\/ calvan@estudioalvan.com\",\"enabled\":true,\"created_at\":\"2024-03-15 18:41:03\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":14.94,\"withIva\":1,\"paymentDays\":null,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"855\",\"code\":null,\"number\":null,\"color\":\"#00826D\",\"name\":\"Industrias Alimenticias Colombina de Bolivia S.A.\",\"trade_name\":\"Industrias Alimenticias Colombina de Bolivia S.A.\",\"displayName\":\"957 - Industrias Alimenticias Colombina de Bolivia S.A.\",\"email\":null,\"phone\":\"(+56)2 24813570\",\"address\":\"Calle Cochabamba, nro. 710,Edificio Torre Empresarial Cainco, Piso 15\",\"city\":\"Santa Cruz de la Sierra\",\"state\":\"Santa Cruz\",\"country\":\"Bolivia\",\"postal_code\":null,\"nit\":\"527790029\",\"primary_external_code\":\"957\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"Juan Sebastian Valencia Ceballos, jsvalencia@colombina.com, Gerente Administrativo y Financiero Colombina de Chile\",\"enabled\":true,\"created_at\":\"2024-03-15 18:51:21\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":14.94,\"withIva\":1,\"paymentDays\":null,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"856\",\"code\":null,\"number\":null,\"color\":\"#ff9a00\",\"name\":\"CERVECER\\u00cdA BOLIVIANA NACIONAL S.A.\",\"trade_name\":\"CERVECER\\u00cdA BOLIVIANA NACIONAL S.A.\",\"displayName\":\"958 - CERVECER\\u00cdA BOLIVIANA NACIONAL S.A.\",\"email\":null,\"phone\":\"65176414\",\"address\":\"Edificio Manzana 40 Piso 21\",\"city\":\"Santa Cruz de la Sierra\",\"state\":\"Santa Cruz\",\"country\":\"Bolivia\",\"postal_code\":null,\"nit\":\"1020229024\",\"primary_external_code\":\"958\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"Rodrigo Valda\\/Legal Manager\\/roavalda@cbn.com.bo\",\"enabled\":true,\"created_at\":\"2024-03-19 19:03:52\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":14.94,\"withIva\":1,\"paymentDays\":null,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"857\",\"code\":null,\"number\":null,\"color\":\"#00826D\",\"name\":\"TECNOLOGIA EN PREFABRICADOS PARA LA CONSTRUCCION TECNOPRECO S.R.L\",\"trade_name\":\"TECNOLOGIA EN PREFABRICADOS PARA LA CONSTRUCCION TECNOPRECO S.R.L\",\"displayName\":\"959 - TECNOLOGIA EN PREFABRICADOS PARA LA CONSTRUCCION TECNOPRECO S.R.L\",\"email\":null,\"phone\":\"70119915\",\"address\":\"ZONA: MIRAFLORES, AVENIDA: CALLE CASIMIRO CORRALES, NRO. 1237, EDIFICIO: CASSO\",\"city\":\"La Paz\",\"state\":\"La Paz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"1003245025\",\"primary_external_code\":\"959\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"Lucio Aparicio Aramayo\\/ Gerente Administrativo y Comercial \\/ lucioaparicioaramayo@gmail.com\",\"enabled\":true,\"created_at\":\"2024-03-25 16:40:07\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":14.94,\"withIva\":1,\"paymentDays\":null,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"858\",\"code\":null,\"number\":null,\"color\":\"#ccff99\",\"name\":\"C\\u00c1MARA DE INDUSTRIA, COMERCIO, SERVICIOS Y TURISMO -CAINCO\",\"trade_name\":\"C\\u00c1MARA DE INDUSTRIA, COMERCIO, SERVICIOS Y TURISMO -CAINCO\",\"displayName\":\"960 - C\\u00c1MARA DE INDUSTRIA, COMERCIO, SERVICIOS Y TURISMO -CAINCO\",\"email\":null,\"phone\":\"62152965\",\"address\":\"Av. Las Am\\u00e9ricas # 7 esq. calle Saavedra\",\"city\":\"Santa Cruz\",\"state\":\"Santa Cruz de la Sierra\",\"country\":\"Bolivia\",\"postal_code\":null,\"nit\":\"1028437029\",\"primary_external_code\":\"960\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"Sergio Angulo Numbela\\/sergio.angulo@cainco.org.bo\\/62152965\\/Subgerente de Desarrollo Sectorial\",\"enabled\":true,\"created_at\":\"2024-03-25 16:42:48\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":14.94,\"withIva\":1,\"paymentDays\":null,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"861\",\"code\":null,\"number\":null,\"color\":\"#3875db\",\"name\":\"RPC PAR\",\"trade_name\":\"RPC PAR\",\"displayName\":\"963 - RPC PAR\",\"email\":null,\"phone\":\"981413454\",\"address\":\"RUA AMAURI 255 2B\",\"city\":\"Sao Paulo\",\"state\":\"Sao Paulo\",\"country\":\"Brazil\",\"postal_code\":null,\"nit\":\"99001\",\"primary_external_code\":\"963\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"tachibana@rpcpar.com\\/GUSTAVO TACHIBANA\\/https:\\/\\/www.linkedin.com\\/in\\/gustavo-tachibana-410701225\\/\",\"enabled\":true,\"created_at\":\"2024-03-25 22:29:56\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":14.94,\"withIva\":1,\"paymentDays\":null,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"862\",\"code\":null,\"number\":null,\"color\":\"#ccff99\",\"name\":\"Alejandro Yaffar\",\"trade_name\":\"Alejandro Yaffar\",\"displayName\":\"964 - Alejandro Yaffar\",\"email\":null,\"phone\":\"77792655\",\"address\":\"C. Andres Bello No. 2723, Cota Cota\",\"city\":\"La Paz\",\"state\":\"La Paz\",\"country\":\"Bolivia\",\"postal_code\":null,\"nit\":\"179550\",\"primary_external_code\":\"964\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"Alejandro Yaffar\\/ accionista\\/ alejandroyaffar@gmail.com\",\"enabled\":true,\"created_at\":\"2024-03-26 19:47:35\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":14.94,\"withIva\":1,\"paymentDays\":null,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"864\",\"code\":null,\"number\":null,\"color\":\"#9b0000\",\"name\":\"EXPOCEAVET S.R.L.\",\"trade_name\":\"EXPOCEAVET S.R.L.\",\"displayName\":\"966 - EXPOCEAVET S.R.L.\",\"email\":null,\"phone\":\"75227362\",\"address\":\"El Alto s\\/n\",\"city\":\"La Paz\",\"state\":\"La Paz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"529173022\",\"primary_external_code\":\"966\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-03-27 12:46:10\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":14.94,\"withIva\":1,\"paymentDays\":null,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"866\",\"code\":null,\"number\":null,\"color\":\"#00826D\",\"name\":\"RADIO FIDES TARIJA S.R.L.\",\"trade_name\":\"RADIO FIDES TARIJA S.R.L.\",\"displayName\":\"968 - RADIO FIDES TARIJA S.R.L.\",\"email\":null,\"phone\":\"2840108\",\"address\":\"Calle Ingavi N\\u00b0 492 Edificio: Radio Fides\",\"city\":\"La Paz\",\"state\":\"La Paz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"1024051026\",\"primary_external_code\":\"968\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-04-01 20:42:02\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":14.94,\"withIva\":1,\"paymentDays\":null,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"867\",\"code\":null,\"number\":null,\"color\":\"#00826D\",\"name\":\"KARIN MARIA EUGENIA EULERT VON NAGY\",\"trade_name\":\"KARIN MARIA EUGENIA EULERT VON NAGY\",\"displayName\":\"969 - KARIN MARIA EUGENIA EULERT VON NAGY\",\"email\":null,\"phone\":\"2791554\",\"address\":\"Calle 10 Esquina Pati\\u00f1o N 479 Zona Calacoto\",\"city\":\"La Paz\",\"state\":\"La Paz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"2284041\",\"primary_external_code\":\"969\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-04-01 21:56:45\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":14.94,\"withIva\":1,\"paymentDays\":null,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"868\",\"code\":null,\"number\":null,\"color\":\"#ccff99\",\"name\":\"MARCELINO\",\"trade_name\":\"MARCELINO\",\"displayName\":\"970 - MARCELINO\",\"email\":null,\"phone\":\"77397977\",\"address\":\"Calle Cochabamba N\\u00b0 710 Edificio: Torre Empresarial Cainco Piso: 15 Zona: Central\",\"city\":\"Santa Cruz de la Sierra\",\"state\":\"Santa Cruz\",\"country\":\"Bolivia\",\"postal_code\":null,\"nit\":\"1114881\",\"primary_external_code\":\"970\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-04-05 16:12:23\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":14.94,\"withIva\":1,\"paymentDays\":null,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"869\",\"code\":null,\"number\":null,\"color\":\"#00826D\",\"name\":\"ROGHUR S.A.\",\"trade_name\":\"ROGHUR S.A.\",\"displayName\":\"971 - ROGHUR S.A.\",\"email\":null,\"phone\":\"71658585\",\"address\":\"Calle Arenales #451\",\"city\":\"Santa Cruz de la Sierra\",\"state\":\"Santa Cruz\",\"country\":\"Bolivia\",\"postal_code\":null,\"nit\":\"1028445023\",\"primary_external_code\":\"971\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-04-05 18:36:36\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":14.94,\"withIva\":1,\"paymentDays\":null,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"870\",\"code\":null,\"number\":null,\"color\":\"#00826D\",\"name\":\"GRAMAR S.A.\",\"trade_name\":\"GRAMAR S.A.\",\"displayName\":\"972 - GRAMAR S.A.\",\"email\":null,\"phone\":\"+5717245120\",\"address\":\"Cra 73 # 60 A - 41 Sur\",\"city\":\"Bogota\",\"state\":\"Bogot\\u00e1\",\"country\":\"Colombia\",\"postal_code\":null,\"nit\":\"99001\",\"primary_external_code\":\"972\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-04-08 14:05:28\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":14.94,\"withIva\":1,\"paymentDays\":null,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null}]}}}\n","time":"2025-07-30T10:49:09-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: POST https://apinewtm.com/graphql/\nHeaders: map[Accept:[application/json] Authorization:[Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJpYXQiOjE3NTM4ODY1MjIsImV4cCI6MTc1Mzk2NjUyMiwiaWQiOjEwNSwidXNlcm5hbWUiOiJpbnRlZ3JhY2lvbmVzQGVtYmEuYm8iLCJhcGlrZXkiOiI5Yzg0ZjYzZTRlMzk2ZGZmOWU5ZjU3NDI5OGRmZWUzOSIsImFwaWtleUNyZWF0ZWRBdCI6eyJkYXRlIjoiMjAyNS0wNy0xNyAxMDo0MToyNS4wMDAwMDAiLCJ0aW1lem9uZV90eXBlIjozLCJ0aW1lem9uZSI6IkFtZXJpY2EvQm9nb3RhIn0sImZ1bGxOYW1lIjoiSW50ZWdyYWNpw7NuIEVNQkEiLCJlbWFpbCI6ImludGVncmFjaW9uZXNAZW1iYS5ibyIsImxvY2FsZSI6ImVzIiwiZGF5c0FsbG93ZWQiOjMwLCJpc0Nvb3JkaW5hdG9yIjpmYWxzZSwidHlwZVRhc2tWaWV3IjoibGlzdHMiLCJkYXlzYWxsb3ciOjMwLCJyb2xlcyI6e30sInNob3J0X25hbWUiOiJJTi5FTUJBIiwicGVybWlzc2lvbnMiOlsic3luY19leHRlcm5hbF9idXNpbmVzcyIsInN5bmNfZXh0ZXJuYWxfY3VzdG9tZXIiLCJzeW5jX2V4dGVybmFsX21pbGVzdG9uZSIsImFic2VuY2VfYXBwcm92ZSIsImFic2VuY2VfY3JlYXRlX2FsbCIsImFic2VuY2VfY3JlYXRlX293biIsImFic2VuY2VfbWVudSIsImFjY291bnRpbmdfYnVzaW5lc3NfbGlzdCIsImFjY291bnRpbmdfY3VzdG9tZXJfbGlzdCIsImJpbGxpbmdfcGVyaW9kX2RlbGV0ZV9hbGwiLCJiaWxsaW5nX3BlcmlvZF9lZGl0X2FsbCIsImJpbGxpbmdfcGVyaW9kX2xpc3QiLCJiaWxsaW5nX3BlcmlvZF9yZWFjdGl2YXRlIiwiYm9hcmRfcmF0ZV91c2VyX2NyZWF0ZSIsImJvYXJkX3JhdGVfdXNlcl9lZGl0IiwiYnVzaW5lc3NfY3JlYXRlIiwiYnVzaW5lc3NfZGVzY3JpcHRpb25fc2F2ZSIsImJ1c2luZXNzX2VkaXQiLCJidXNpbmVzc19saXN0X2FsbCIsImJ1c2luZXNzX21lbnUiLCJidXNpbmVzc19yZXNwb25zaWJsZV9saXN0X2FsbCIsImJ1c2luZXNzX3NlZV9iaWxsaW5nX2luZm8iLCJidXNpbmVzc2VzX2FsbG93ZWRfdXNlcl9jcmVhdGUiLCJidXNpbmVzc2VzX2FsbG93ZWRfdXNlcl9kZWxldGUiLCJjb21wYW55X2Rpc2FibGUiLCJjb21wYW55X2VkaXQiLCJjb21wYW55X2xpc3QiLCJjb25jZXB0X2NyZWF0ZSIsImNvbmNlcHRfZWRpdCIsImNvbmNlcHRfbWVudSIsImNvbnRhY3RfY3JlYXRlIiwiY29udGFjdF9jcmVhdGVfZmFzdCIsImNvbnRhY3RfZWRpdCIsImNvbnRhY3RfbGlzdCIsImNvbnRhY3RfbWVudSIsImN1c3RvbWVyX2NyZWF0ZSIsImN1c3RvbWVyX2NyZWF0ZV9mYXN0IiwiY3VzdG9tZXJfZWRpdCIsImN1c3RvbWVyX2xpc3QiLCJjdXN0b21lcl9saXN0X2FsbCIsImN1c3RvbWVyX21lbnUiLCJleHBlbnNlX2NyZWF0ZV9hbGwiLCJleHBlbnNlX2RlbGV0ZV9hbGwiLCJleHBlbnNlX2R1cGxpY2F0ZSIsImV4cGVuc2VfZWRpdF9hbGwiLCJleHBlbnNlX2xpc3RfYWxsIiwiZXhwZW5zZV9tZW51IiwiZXhwZW5zZV9yZWplY3RfYWxsIiwiZmFiX3Nob3ciLCJmaWxlX21lbnUiLCJnZW9yZWZlcmVuY2VfY3JlYXRlIiwiZ2VvcmVmZXJlbmNlX2VkaXQiLCJnZW9yZWZlcmVuY2VfbWVudSIsImdvX3RvX2xlZ2FjeSIsImluZGljYXRvcnNfbWVudSIsImludm9pY2VfY3JlYXRlIiwiaW52b2ljZV9kZXRhaWxfbGlzdF9hbGwiLCJpbnZvaWNlX2ZpeF90aW1lc19jdXN0b21fdmFsdWUiLCJpbnZvaWNlX2xpc3RfYWxsIiwiaW52b2ljZWFkdmFuY2VfY3JlYXRlIiwiaW52b2ljZWFkdmFuY2VfbGlzdCIsImludm9pY2VhZHZhbmNlX3VwZGF0ZSIsImxvZ19saXN0X2FsbCIsImxvZ19saXN0X293biIsIm1pbGVzdG9uZV9jcmVhdGUiLCJtaWxlc3RvbmVfZGVsZXRlIiwibWlsZXN0b25lX2VkaXQiLCJtb250aGx5X2ZpeF9yYXRlX2dyb3VwX2NyZWF0ZSIsIm1vbnRobHlfZml4X3JhdGVfZ3JvdXBfZWRpdCIsIm1vbnRobHlfdXNlcl9jb3N0X2NyZWF0ZSIsIm1vbnRobHlfdXNlcl9jb3N0X2VkaXQiLCJwYXltZW50X2NyZWF0ZSIsInBheW1lbnRfZGVsZXRlIiwicGF5bWVudF9lZGl0IiwicGF5bWVudF9tZW51IiwicHJvY2VkdXJlX21lbnUiLCJwcm9jZWR1cmVfcmF0ZV9jcmVhdGUiLCJwcm9jZWR1cmVfcmF0ZV9kZXRhaWxfY3JlYXRlIiwicHJvY2VkdXJlX3JhdGVfZGV0YWlsX2VkaXQiLCJwcm9jZWR1cmVfcmF0ZV9kZXRhaWxfbGlzdCIsInByb2NlZHVyZV9yYXRlX2VkaXQiLCJwcm9jZWR1cmVfcmF0ZV9saXN0IiwicHJvY2VkdXJlX3JhdGVfbWVudSIsInByb2NlZHVyZV90cmFuc2FjdGlvbl9saXN0IiwicHJvamVjdF9hcmNoaXZlX2Nhc2NhZGVfYWxsIiwicHJvamVjdF9kZWxldGVfY2FzY2FkZV9hbGwiLCJwcm9qZWN0X3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInJhdGVfYnVzaW5lc3NfY2F0ZWdvcnlfY3JlYXRlIiwicmF0ZV9idXNpbmVzc19jYXRlZ29yeV9lZGl0IiwicmF0ZV9idXNpbmVzc191c2VyX2NyZWF0ZSIsInJhdGVfYnVzaW5lc3NfdXNlcl9lZGl0IiwicmF0ZV9leGNoYW5nZV9jcmVhdGUiLCJyYXRlX2V4Y2hhbmdlX2VkaXQiLCJyYXRlX2V4Y2hhbmdlX2xpc3QiLCJyYXRlX3VzZXJfY3JlYXRlIiwicmF0ZV91c2VyX2VkaXQiLCJyb2xlX2NyZWF0ZSIsInJvbGVfZWRpdF9hbGwiLCJyb2xlX2xpc3RfYWxsIiwic2VjdGlvbl9hcmNoaXZlX2Nhc2NhZGVfYWxsIiwic2VjdGlvbl9kZWxldGVfY2FzY2FkZV9hbGwiLCJzZWN0aW9uX3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInNlZV9tZW51X3JhdGVfZXhjaGFuZ2UiLCJzZXJpZV9jcmVhdGUiLCJzZXJpZV9lZGl0Iiwic2VyaWVfbWVudSIsInNldHRpbmdzX3ZpZXciLCJzdXBwbGllcl9jcmVhdGUiLCJ0YXNrX2FkZF90aW1lX2FsbCIsInRhc2tfYWRkX3RpbWVfb3duIiwidGFza19hc3NpZ25lZF91c2VyX2VtYWlsIiwidGFza19jbG9zZWRfZW1haWwiLCJ0YXNrX2NyZWF0ZV9hbGwiLCJ0YXNrX2NyZWF0ZV9jb21tZW50X2VtYWlsIiwidGFza19jcmVhdGVfc2VsZiIsInRhc2tfY3JlYXRlX3RlYW0iLCJ0YXNrX2RlbGV0ZV9hbGwiLCJ0YXNrX2RlbGV0ZV9vd24iLCJ0YXNrX2RlbGV0ZV90ZWFtIiwidGFza19lZGl0X2FsbCIsInRhc2tfZWRpdF9kdWVfZGF0ZSIsInRhc2tfZWRpdF9vd24iLCJ0YXNrX2VkaXRfdGVhbSIsInRhc2tfbGlzdF9hbGwiLCJ0YXNrX2xpc3Rfb3duIiwidGFza19saXN0X3RlYW0iLCJ0YXNrX21hc3NpdmVpbXBvcnQiLCJ0YXNrX21lbnUiLCJ0YXNrX21pZ3JhdGlvbiIsInRhc2tfc2V0X2FkZGl0aW9uYWxfYXNzaWduZWVzIiwidGFza19zZXRfZHVlX2RhdGUiLCJ0YXNrX3NldF9lc3RpbWF0ZWRfdGltZSIsInRhc2tfc2V0X3ByaW9yaXR5IiwidGFza19zZXRfcHJvZ3Jlc3MiLCJ0YXhfZWRpdF9hbGwiLCJ0YXhfbGlzdF9hbGwiLCJ0ZWFtX2FyY2hpdmVfY2FzY2FkZV9hbGwiLCJ0ZWFtX2NyZWF0ZV9hbGwiLCJ0ZWFtX2RlbGV0ZV9hbGwiLCJ0ZWFtX2VkaXRfYWxsIiwidGVhbV9saXN0X2FsbCIsInRlYW1fbGlzdF9vd24iLCJ0ZWFtX3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInRpbWVfYWNjZXB0X2FsbCIsInRpbWVfYWNjZXB0X293biIsInRpbWVfYXBwcm92ZV9hbGwiLCJ0aW1lX2FwcHJvdmVfb3duIiwidGltZV9jcmVhdGVfYWxsIiwidGltZV9jcmVhdGVfb3duIiwidGltZV9kZWxldGVfYWxsIiwidGltZV9kZWxldGVfb3duIiwidGltZV9kZW55X2FsbCIsInRpbWVfZGVueV9vd24iLCJ0aW1lX2Rvd25sb2FkZmlsZV9hbGwiLCJ0aW1lX2Rvd25sb2FkZmlsZV9vd24iLCJ0aW1lX2VkaXRfYWxsIiwidGltZV9lZGl0X2Nsb3NlX3BlcmlvZF9hbGwiLCJ0aW1lX2VkaXRfY2xvc2VfcGVyaW9kX293biIsInRpbWVfZWRpdF9vd24iLCJ0aW1lX2xpc3RfYWxsIiwidGltZV9saXN0X293biIsInRpbWVfbWVudSIsInRpbWVfbWludXRlc196ZXJvIiwidGltZV9yZWplY3RfYWxsIiwidGltZV9yZXN0cmljdGVkX3BlcmlvZF9jcmVhdGUiLCJ0aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX2VkaXQiLCJ0aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX21lbnUiLCJ0aW1lX3NoYXJlX2FsbCIsInRpbWVfc2hhcmVfb3duIiwidGltZV9zaG93X2NhbGVuZGFyX3ZpZXciLCJ0aW1lX3VwbG9hZGZpbGVfYWxsIiwidGltZV91cGxvYWRmaWxlX293biIsInRyYW5zYWN0aW9uX2FkYXB0ZXJfbGlzdCIsInRyYW5zYWN0aW9uX2xpc3QiLCJ1c2VyX2Fic2VuY2VzX3Nob3ciLCJ1c2VyX2Nvc3RfY3JlYXRlIiwidXNlcl9jb3N0X2VkaXQiLCJ1c2VyX2Nvc3RfbGlzdCIsInVzZXJfY29zdF9tZW51IiwidXNlcl9jb3N0X3JhdGVfY3JlYXRlIiwidXNlcl9jb3N0X3JhdGVfZWRpdCIsInVzZXJfY29zdF9yYXRlX2xpc3QiLCJ1c2VyX2NyZWF0ZSIsInVzZXJfZGlzYWJsZSIsInVzZXJfZWRpdCIsInVzZXJfZWRpdF9kYXlzX2FsbG93X29ubHkiLCJ1c2VyX2dyb3VwX3JvbGVfY3JlYXRlX2FsbCIsInVzZXJfZ3JvdXBfcm9sZV9kZWxldGVfYWxsIiwidXNlcl9ncm91cF9yb2xlX2VkaXRfYWxsIiwidXNlcl9ncm91cF9yb2xlc19saXN0X2FsbCIsInVzZXJfbGlzdCIsInVzZXJfbGlzdF9hbGwiLCJ1c2VyX21hc3NfYWN0aXZhdGlvbiIsInVzZXJfcHJvZHVjdGl2aXR5X2NyZWF0ZSIsInVzZXJfcHJvZHVjdGl2aXR5X2Rpc2FibGUiLCJ1c2VyX3Byb2R1Y3Rpdml0eV9lZGl0IiwidXNlcl9wcm9kdWN0aXZpdHlfZW5hYmxlIiwidXNlcl9wcm9kdWN0aXZpdHlfbWVudSIsInVzZXJfdGltZV9yZXN0cmljdGVkX3BlcmlvZF9jcmVhdGUiLCJ1c2VyX3RpbWVfcmVzdHJpY3RlZF9wZXJpb2RfZGVsZXRlIiwidXNlcl90aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX2VkaXQiLCJ1c2VyZ3JvdXBfY3JlYXRlX2FsbCIsInVzZXJncm91cF9kZWxldGVfYWxsIiwidXNlcmdyb3VwX2VkaXRfYWxsIiwidXNlcmdyb3VwX2xpc3RfYWxsIiwidXNlcmdyb3VwX21lbnUiLCJ1c2Vyc191c2VyX2dyb3VwX2NyZWF0ZV9hbGwiLCJ1c2Vyc191c2VyX2dyb3VwX2RlbGV0ZV9hbGwiLCJ1c2Vyc191c2VyX2dyb3VwX2VkaXRfYWxsIiwidXNlcnNfdXNlcl9ncm91cHNfbGlzdF9hbGwiXSwiaG9tZXBhZ2UiOm51bGx9.kShN7NXGoaz1oFro-yYNyIpIEcnNpo1GiB8SFGKFUJtDQoqyp1I1w-CMA8Kta3vWXnUZwx-y2z1yVSJaMpZbqQgKFlakpcf6351bZSL8IAUPExSfLz0HYYCWFx-Usx94BBTqosKsRhnT8PkPN3dGxs8-XTIEDi9gN-Pk9OSHmM5mPkTsaaxTY40M-F7Y0Up2y6s_lwFaX13CmstiYZSXzyKL9SUBBx-E6-8qQAfuKPIoZ_50jSGPW98-IkAcWwqO6yGf-M07dSfFZ2vLfwc3ulHm2p8jVSmRxJ_O43BEWQD5cvqGbVIvSMXkS4y98DL4Vencjjg27iu3CUJsDNBBTg] Content-Type:[application/json] Origin:[https://azure-function.timemanagerweb.com] Tenant-Name:[pruebas-dos] User-Agent:[Mozilla/5.0 (X11; Linux x86_64)...]]\nBody: map[query:query ($limit: Int, $orderBy: String, $orderDesc: Boolean, $page: Int) {\n CustomersMeta(limit: $limit, orderBy: $orderBy, orderDesc: $orderDesc, page: $page) {\n meta {\n hasNextPage\n hasPreviousPage\n limit\n next\n page\n pages\n previous\n total\n }\n rows {\n id\n code\n number\n color\n name\n trade_name\n displayName\n email\n phone\n address\n city\n state\n country\n postal_code\n nit\n primary_external_code\n status\n statusMarking\n billingLimitDate\n recepctionLimitDate\n dmsIntegration\n cmrRequiredDocuments\n cmrPayTms\n enabled\n created_at\n updated_at\n valueTax\n withIva\n paymentDays\n national\n enterpriseGroup\n responsiblePartner {\n id\n username\n email\n fullName\n shortName\n locale\n userType\n superAdmin\n enabled\n created_at\n updated_at\n daysAllow\n }\n }\n }\n} variables:map[limit:100 orderBy:orderBy orderDesc:true page:8]]\n","time":"2025-07-30T10:49:09-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: POST https://apinewtm.com/graphql/ | Status: 200 | Duration: 539.8615ms\nHeaders: map[Access-Control-Allow-Credentials:[true] Access-Control-Allow-Origin:[https://azure-function.timemanagerweb.com] Access-Control-Expose-Headers:[link, access-control-allow-credentials] Cache-Control:[no-cache, private] Content-Type:[application/json] Date:[Wed, 30 Jul 2025 14:49:10 GMT] Server:[] Vary:[Authorization]]\nBody: {\"data\":{\"CustomersMeta\":{\"meta\":{\"hasNextPage\":true,\"hasPreviousPage\":true,\"limit\":100,\"next\":9,\"page\":8,\"pages\":10,\"previous\":7,\"total\":919},\"rows\":[{\"id\":\"871\",\"code\":null,\"number\":null,\"color\":\"#cb4f89\",\"name\":\"MISTURA S.R.L.\",\"trade_name\":\"MISTURA S.R.L.\",\"displayName\":\"973 - MISTURA S.R.L.\",\"email\":null,\"phone\":\"75852500\",\"address\":\"Calle Sagarnaga N\\u00b0 163 Edificio: Hostal Naira Piso: P.b Oficina: 01 Zona: Central\",\"city\":\"La Paz\",\"state\":\"La Paz\",\"country\":\"Bolivia\",\"postal_code\":null,\"nit\":\"227206024\",\"primary_external_code\":\"973\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-04-08 20:06:57\",\"updated_at\":\"2024-04-22 22:18:58\",\"valueTax\":14.94,\"withIva\":1,\"paymentDays\":null,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"883\",\"code\":null,\"number\":null,\"color\":\"#9b384d\",\"name\":\"pruebas17\",\"trade_name\":\"pruebas17\",\"displayName\":\"985 - pruebas17\",\"email\":null,\"phone\":\"0000000\",\"address\":\"pruebas17\",\"city\":\"Bogota\",\"state\":\"Bogot\\u00e1\",\"country\":\"Colombia\",\"postal_code\":\"000000\",\"nit\":null,\"primary_external_code\":\"985\",\"status\":\"1\",\"statusMarking\":\"pending_completion\",\"billingLimitDate\":0,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-05-17 20:47:02\",\"updated_at\":\"2024-05-17 20:47:02\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"885\",\"code\":null,\"number\":null,\"color\":\"#e3c1f6\",\"name\":\"TOTTO COL\",\"trade_name\":\"TOTTO COL\",\"displayName\":\"987 - TOTTO COL\",\"email\":null,\"phone\":\"0000000\",\"address\":\"CRA. 1 # 23-9\",\"city\":\"La Paz\",\"state\":\"La Paz\",\"country\":\"Bolivia\",\"postal_code\":\"000000\",\"nit\":null,\"primary_external_code\":\"987\",\"status\":\"1\",\"statusMarking\":\"pending_completion\",\"billingLimitDate\":0,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-05-20 21:14:08\",\"updated_at\":\"2024-05-20 21:14:08\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"887\",\"code\":null,\"number\":null,\"color\":\"#ca9351\",\"name\":\"PACE\\u00d1A\",\"trade_name\":\"PACE\\u00d1A\",\"displayName\":\"989 - PACE\\u00d1A\",\"email\":null,\"phone\":\"0000000\",\"address\":\"BLA BLA\",\"city\":\"BLA BLA\",\"state\":\"BLA BLA\",\"country\":\"Antigua\\/Barbuda\",\"postal_code\":\"000000\",\"nit\":null,\"primary_external_code\":\"989\",\"status\":\"1\",\"statusMarking\":\"pending_completion\",\"billingLimitDate\":0,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-05-22 20:13:29\",\"updated_at\":\"2024-05-22 20:18:00\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"899\",\"code\":null,\"number\":null,\"color\":\"#00826D\",\"name\":\"Davivienda\",\"trade_name\":\"Davivienda\",\"displayName\":\"1001 - Davivienda\",\"email\":null,\"phone\":\"3125263\",\"address\":\"calle 55 a 20\",\"city\":\"Bolivia\",\"state\":\"Activo\",\"country\":\"Bolivia\",\"postal_code\":\"888888\",\"nit\":\"1030666\",\"primary_external_code\":\"1001\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-07-05 15:53:49\",\"updated_at\":\"2024-07-05 15:59:06\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":20,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"902\",\"code\":null,\"number\":null,\"color\":\"#00826D\",\"name\":\"pruebas\",\"trade_name\":\"pruebas\",\"displayName\":\"1004 - pruebas\",\"email\":null,\"phone\":\"2323\",\"address\":\"calle123\",\"city\":\"Bogota\",\"state\":\"Bogot\\u00e1\",\"country\":\"Colombia\",\"postal_code\":\"1111\",\"nit\":\"1001010111\",\"primary_external_code\":\"1004\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-07-26 19:58:55\",\"updated_at\":\"2024-08-09 21:14:41\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":null,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"903\",\"code\":null,\"number\":null,\"color\":\"#520681\",\"name\":\"PRUEBAS QA PAOLITA\",\"trade_name\":\"PRUEBAS QA PAOLITA\",\"displayName\":\"1005 - PRUEBAS QA PAOLITA\",\"email\":null,\"phone\":\"2332233\",\"address\":\"LA PAZ\",\"city\":\"LA PAZ\",\"state\":\"LA PAZ\",\"country\":\"Bolivia\",\"postal_code\":\"000000\",\"nit\":null,\"primary_external_code\":\"1005\",\"status\":\"1\",\"statusMarking\":\"pending_completion\",\"billingLimitDate\":0,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-09-02 15:07:34\",\"updated_at\":\"2024-09-02 15:07:34\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"904\",\"code\":null,\"number\":null,\"color\":\"#4be64d\",\"name\":\"PRUEBA DE RESPONSABLES\",\"trade_name\":\"PRUEBA DE RESPONSABLES\",\"displayName\":\"1006 - PRUEBA DE RESPONSABLES\",\"email\":null,\"phone\":\"12243445\",\"address\":\"CALLE124\",\"city\":\"Bogota\",\"state\":\"Bogot\\u00e1\",\"country\":\"Colombia\",\"postal_code\":\"000000\",\"nit\":\"123456\",\"primary_external_code\":\"1006\",\"status\":\"1\",\"statusMarking\":\"pending_completion\",\"billingLimitDate\":0,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-09-02 15:14:48\",\"updated_at\":\"2024-09-10 09:59:57\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":1,\"responsiblePartner\":{\"id\":6,\"username\":\"darredondo@emba.com.bo\",\"email\":\"nicoln042001@gmail.com\",\"fullName\":\"Daniel Marcelo Arredondo Zelada\",\"shortName\":\"darredon\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-03 11:43:07\",\"daysAllow\":302}},{\"id\":\"905\",\"code\":null,\"number\":null,\"color\":\"#def9c6\",\"name\":\"PRUEBA 2 RESPONSABLES\",\"trade_name\":\"PRUEBA 2 RESPONSABLES\",\"displayName\":\"1007 - PRUEBA 2 RESPONSABLES\",\"email\":null,\"phone\":\"123456\",\"address\":\"CALLE123\",\"city\":\"BOLIVIA\",\"state\":\"BOLIVIA\",\"country\":\"Bolivia\",\"postal_code\":\"000000\",\"nit\":null,\"primary_external_code\":\"1007\",\"status\":\"1\",\"statusMarking\":\"pending_completion\",\"billingLimitDate\":0,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-09-02 15:41:02\",\"updated_at\":\"2024-09-02 15:41:02\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":5,\"username\":\"amorenog@emba.com\",\"email\":\"amorenog@emba.com\",\"fullName\":\"Andres Moreno Gutierrez\",\"shortName\":\"amoreno\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"906\",\"code\":null,\"number\":null,\"color\":\"#7d5d93\",\"name\":\"prueba con sergio\",\"trade_name\":\"prueba con sergio\",\"displayName\":\"1008 - prueba con sergio\",\"email\":null,\"phone\":\"123456\",\"address\":\"calle123\",\"city\":\"bolivia\",\"state\":\"bolivia\",\"country\":\"Bolivia\",\"postal_code\":\"000000\",\"nit\":null,\"primary_external_code\":\"1008\",\"status\":\"1\",\"statusMarking\":\"pending_completion\",\"billingLimitDate\":0,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-09-02 15:47:00\",\"updated_at\":\"2024-09-02 15:52:02\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":17,\"username\":\"aaraoz@emba.com\",\"email\":\"aaraoz@emba.com\",\"fullName\":\"Alvaro Araoz Ardaya\",\"shortName\":\"aaraoz\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-12-04 15:29:19\",\"daysAllow\":302}},{\"id\":\"907\",\"code\":null,\"number\":null,\"color\":\"#828c2b\",\"name\":\"EMPRESA 123\",\"trade_name\":\"EMPRESA 123\",\"displayName\":\"1009 - EMPRESA 123\",\"email\":null,\"phone\":\"574745\",\"address\":\"Calle 4 # 53 B 78\",\"city\":\"Bogot\\u00e1\",\"state\":\"Cundinamarca\",\"country\":\"Andorra\",\"postal_code\":\"000000\",\"nit\":null,\"primary_external_code\":\"1009\",\"status\":\"1\",\"statusMarking\":\"pending_completion\",\"billingLimitDate\":0,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-09-02 16:01:38\",\"updated_at\":\"2024-09-02 16:01:38\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":5,\"username\":\"amorenog@emba.com\",\"email\":\"amorenog@emba.com\",\"fullName\":\"Andres Moreno Gutierrez\",\"shortName\":\"amoreno\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"908\",\"code\":null,\"number\":null,\"color\":\"#ec0690\",\"name\":\"EMPRESA 123456\",\"trade_name\":\"EMPRESA 123456\",\"displayName\":\"1010 - EMPRESA 123456\",\"email\":null,\"phone\":\"45745754\",\"address\":\"Calle 4 # 53 B 78\",\"city\":\"DFHDFH\",\"state\":\"DFHFHF\",\"country\":\"Afghanistan\",\"postal_code\":\"000000\",\"nit\":null,\"primary_external_code\":\"1010\",\"status\":\"1\",\"statusMarking\":\"pending_completion\",\"billingLimitDate\":0,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-09-02 16:03:09\",\"updated_at\":\"2024-09-02 16:03:09\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":8,\"username\":\"lmorenog@emba.com\",\"email\":\"lmorenog@emba.com\",\"fullName\":\"Luis Moreno Gutierrez\",\"shortName\":\"lmoreno\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"909\",\"code\":null,\"number\":null,\"color\":\"#ead5fe\",\"name\":\"dfhdfhdf\",\"trade_name\":\"dfhdfhdf\",\"displayName\":\"1011 - dfhdfhdf\",\"email\":null,\"phone\":\"48586\",\"address\":\"dfhdfhd\",\"city\":\"dfhdfh\",\"state\":\"dfhdfh\",\"country\":\"United Arab Emir.\",\"postal_code\":\"000000\",\"nit\":null,\"primary_external_code\":\"1011\",\"status\":\"1\",\"statusMarking\":\"pending_completion\",\"billingLimitDate\":0,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-09-02 16:30:23\",\"updated_at\":\"2024-09-02 16:30:23\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":5,\"username\":\"amorenog@emba.com\",\"email\":\"amorenog@emba.com\",\"fullName\":\"Andres Moreno Gutierrez\",\"shortName\":\"amoreno\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"910\",\"code\":null,\"number\":null,\"color\":\"#eb4cc2\",\"name\":\"EMPRESA FINALISSIMA\",\"trade_name\":\"EMPRESA FINALISSIMA\",\"displayName\":\"1012 - EMPRESA FINALISSIMA\",\"email\":null,\"phone\":\"4745747\",\"address\":\"Calle 19 Sur # 50 - 14\",\"city\":\"Bogota\",\"state\":\"Bogot\\u00e1\",\"country\":\"Colombia\",\"postal_code\":\"000000\",\"nit\":null,\"primary_external_code\":\"1012\",\"status\":\"1\",\"statusMarking\":\"pending_completion\",\"billingLimitDate\":0,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-09-02 16:32:13\",\"updated_at\":\"2024-09-02 16:32:13\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":5,\"username\":\"amorenog@emba.com\",\"email\":\"amorenog@emba.com\",\"fullName\":\"Andres Moreno Gutierrez\",\"shortName\":\"amoreno\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"911\",\"code\":null,\"number\":null,\"color\":\"#cdfe1d\",\"name\":\"PRUEBA LOCAL\",\"trade_name\":\"PRUEBA LOCAL\",\"displayName\":\"1013 - PRUEBA LOCAL\",\"email\":null,\"phone\":\"1234567\",\"address\":\"Calle 19 Sur # 50 - 14\",\"city\":\"Bogota\",\"state\":\"Bogot\\u00e1\",\"country\":\"Colombia\",\"postal_code\":\"000000\",\"nit\":null,\"primary_external_code\":\"1013\",\"status\":\"1\",\"statusMarking\":\"pending_completion\",\"billingLimitDate\":0,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-09-02 16:44:24\",\"updated_at\":\"2024-09-02 16:44:24\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":5,\"username\":\"amorenog@emba.com\",\"email\":\"amorenog@emba.com\",\"fullName\":\"Andres Moreno Gutierrez\",\"shortName\":\"amoreno\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"912\",\"code\":null,\"number\":null,\"color\":\"#6e54d2\",\"name\":\"PRUEBA RESTART\",\"trade_name\":\"PRUEBA RESTART\",\"displayName\":\"1014 - PRUEBA RESTART\",\"email\":null,\"phone\":\"5457\",\"address\":\"Calle 123\",\"city\":\"Bogota\",\"state\":\"Bogot\\u00e1\",\"country\":\"Colombia\",\"postal_code\":\"000000\",\"nit\":null,\"primary_external_code\":\"1014\",\"status\":\"1\",\"statusMarking\":\"pending_completion\",\"billingLimitDate\":0,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-09-02 17:07:38\",\"updated_at\":\"2024-09-02 17:08:20\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":17,\"username\":\"aaraoz@emba.com\",\"email\":\"aaraoz@emba.com\",\"fullName\":\"Alvaro Araoz Ardaya\",\"shortName\":\"aaraoz\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-12-04 15:29:19\",\"daysAllow\":302}},{\"id\":\"913\",\"code\":null,\"number\":null,\"color\":\"#c8286f\",\"name\":\"PRUEBA LANZA\",\"trade_name\":\"PRUEBA LANZA\",\"displayName\":\"1015 - PRUEBA LANZA\",\"email\":null,\"phone\":\"457457\",\"address\":\"Av 12334534\",\"city\":\"Bogota\",\"state\":\"Bogot\\u00e1\",\"country\":\"Colombia\",\"postal_code\":\"000000\",\"nit\":null,\"primary_external_code\":\"1015\",\"status\":\"1\",\"statusMarking\":\"pending_completion\",\"billingLimitDate\":0,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-09-02 17:11:51\",\"updated_at\":\"2024-09-02 17:17:34\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":17,\"username\":\"aaraoz@emba.com\",\"email\":\"aaraoz@emba.com\",\"fullName\":\"Alvaro Araoz Ardaya\",\"shortName\":\"aaraoz\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-12-04 15:29:19\",\"daysAllow\":302}},{\"id\":\"914\",\"code\":null,\"number\":null,\"color\":\"#3f6d47\",\"name\":\"PRUEBA FRONT\",\"trade_name\":\"PRUEBA FRONT\",\"displayName\":\"1016 - PRUEBA FRONT\",\"email\":null,\"phone\":\"474747\",\"address\":\"GSDDSG\",\"city\":\"Barranquilla\",\"state\":\"Atl\\u00e1ntico\",\"country\":\"Colombia\",\"postal_code\":\"000000\",\"nit\":null,\"primary_external_code\":\"1016\",\"status\":\"1\",\"statusMarking\":\"pending_completion\",\"billingLimitDate\":0,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-09-02 17:21:02\",\"updated_at\":\"2024-09-02 17:21:02\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":5,\"username\":\"amorenog@emba.com\",\"email\":\"amorenog@emba.com\",\"fullName\":\"Andres Moreno Gutierrez\",\"shortName\":\"amoreno\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"915\",\"code\":null,\"number\":null,\"color\":\"#920508\",\"name\":\"PRUEBA 346\",\"trade_name\":\"PRUEBA 346\",\"displayName\":\"1017 - PRUEBA 346\",\"email\":null,\"phone\":\"47457\",\"address\":\"CLIENTES SANTA CRUZ\",\"city\":\"Barranquilla\",\"state\":\"Atl\\u00e1ntico\",\"country\":\"Colombia\",\"postal_code\":\"000000\",\"nit\":null,\"primary_external_code\":\"1017\",\"status\":\"1\",\"statusMarking\":\"pending_completion\",\"billingLimitDate\":0,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-09-02 17:33:35\",\"updated_at\":\"2024-09-02 17:33:35\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":5,\"username\":\"amorenog@emba.com\",\"email\":\"amorenog@emba.com\",\"fullName\":\"Andres Moreno Gutierrez\",\"shortName\":\"amoreno\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"916\",\"code\":null,\"number\":null,\"color\":\"#707f40\",\"name\":\"prueba de responsabless\",\"trade_name\":\"prueba de responsabless\",\"displayName\":\"1018 - prueba de responsabless\",\"email\":null,\"phone\":\"12345\",\"address\":\"cakke123\",\"city\":\"ciudad\",\"state\":\"ciudad\",\"country\":\"United Arab Emir.\",\"postal_code\":\"000000\",\"nit\":null,\"primary_external_code\":\"1018\",\"status\":\"1\",\"statusMarking\":\"pending_completion\",\"billingLimitDate\":0,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-09-03 11:43:53\",\"updated_at\":\"2024-09-03 11:43:53\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":5,\"username\":\"amorenog@emba.com\",\"email\":\"amorenog@emba.com\",\"fullName\":\"Andres Moreno Gutierrez\",\"shortName\":\"amoreno\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"917\",\"code\":null,\"number\":null,\"color\":\"#c8c15c\",\"name\":\"LOLIS S.A\",\"trade_name\":\"LOLIS S.A\",\"displayName\":\"1019 - LOLIS S.A\",\"email\":null,\"phone\":\"333223\",\"address\":\"AV 1 CL1\",\"city\":\"La Paz\",\"state\":\"La Paz\",\"country\":\"Bolivia\",\"postal_code\":\"000000\",\"nit\":null,\"primary_external_code\":\"1019\",\"status\":\"1\",\"statusMarking\":\"pending_completion\",\"billingLimitDate\":0,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-09-04 12:36:30\",\"updated_at\":\"2024-09-04 12:36:30\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":6,\"username\":\"darredondo@emba.com.bo\",\"email\":\"nicoln042001@gmail.com\",\"fullName\":\"Daniel Marcelo Arredondo Zelada\",\"shortName\":\"darredon\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-03 11:43:07\",\"daysAllow\":302}},{\"id\":\"918\",\"code\":null,\"number\":null,\"color\":\"#cb4f89\",\"name\":\"ESIKA\",\"trade_name\":\"ESIKA\",\"displayName\":\"1020 - ESIKA\",\"email\":null,\"phone\":\"1233223\",\"address\":\"9080808\",\"city\":\"LA PAZ\",\"state\":\"LA PAZ\",\"country\":\"Bolivia\",\"postal_code\":\"000000\",\"nit\":\"77889987\",\"primary_external_code\":\"1020\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":0,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-09-10 10:27:07\",\"updated_at\":\"2024-09-10 10:30:10\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":77,\"username\":\"pcorredor26@gmail.com\",\"email\":\"pcorredor26@gmail.com\",\"fullName\":\"AMTM Pruebas\",\"shortName\":\"AM\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":true,\"enabled\":true,\"created_at\":\"2021-05-11 23:40:08\",\"updated_at\":\"2025-07-21 10:12:54\",\"daysAllow\":302}},{\"id\":\"919\",\"code\":null,\"number\":null,\"color\":\"#17484e\",\"name\":\"LENOVO\",\"trade_name\":\"LENOVO\",\"displayName\":\"1021 - LENOVO\",\"email\":null,\"phone\":\"5323333\",\"address\":null,\"city\":\"Bogota\",\"state\":\"Bogot\\u00e1\",\"country\":\"Colombia\",\"postal_code\":\"000000\",\"nit\":null,\"primary_external_code\":\"1021\",\"status\":\"1\",\"statusMarking\":\"pending_completion\",\"billingLimitDate\":0,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-09-10 11:22:45\",\"updated_at\":\"2024-09-10 11:22:45\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":77,\"username\":\"pcorredor26@gmail.com\",\"email\":\"pcorredor26@gmail.com\",\"fullName\":\"AMTM Pruebas\",\"shortName\":\"AM\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":true,\"enabled\":true,\"created_at\":\"2021-05-11 23:40:08\",\"updated_at\":\"2025-07-21 10:12:54\",\"daysAllow\":302}},{\"id\":\"927\",\"code\":null,\"number\":null,\"color\":\"#00826D\",\"name\":\"MARCELO DAVILA\",\"trade_name\":\"MARCELO DAVILA\",\"displayName\":\"1029 - MARCELO DAVILA\",\"email\":null,\"phone\":\"3447188\",\"address\":\"Condominio Santos Dumont A - 205,\\u00a0Santa Cruz, Boli\",\"city\":\"LA PAZ\",\"state\":\"LA PAZ\",\"country\":\"Bolivia\",\"postal_code\":\"11001\",\"nit\":\"9887789000\",\"primary_external_code\":\"1029\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2025-03-13 15:08:27\",\"updated_at\":\"2025-03-13 15:08:27\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":null,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"290\",\"code\":null,\"number\":null,\"color\":\"#00c200\",\"name\":\"GLOBAL PARTNERSHIPS\",\"trade_name\":\"GLOBAL PARTNERSHIPS\",\"displayName\":\"632 - GLOBAL PARTNERSHIPS\",\"email\":\"aalor@globalpartnerships.org\",\"phone\":\"(+1)206.6528773\",\"address\":\"1201 Western Avenue, Suite 410, Seattle, WA 98101\",\"city\":\"Seattle\",\"state\":\"Washington\",\"country\":\"USA\",\"postal_code\":\"98101\",\"nit\":\"632\",\"primary_external_code\":\"632\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"info@globalpartnerships.org \\/ Angela Escobar\\/ aescobar@globalpartnerships.org\\/\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":null,\"withIva\":0,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"574\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Space X\",\"trade_name\":\"Space X\",\"displayName\":\"545 - Space X\",\"email\":\"Emmanuel.Cardenas2@spacex.com\",\"phone\":\"3102197861\",\"address\":\"1 Rocket Road, Hawthorne, CA, 90250\",\"city\":\"\",\"state\":\"\",\"country\":\"Estados Unidos\",\"postal_code\":\"\",\"nit\":\"545\",\"primary_external_code\":\"545\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":18,\"username\":\"flanda@emba.com\",\"email\":\"flanda@emba.com\",\"fullName\":\"Carlos Fernando Landa Alejandro\",\"shortName\":\"flanda\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"626\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Votorantin Cimentos\",\"trade_name\":\"Votorantin Cimentos\",\"displayName\":\"813 - Votorantin Cimentos\",\"email\":\"Tom.Hosted@CliffordChance.com\",\"phone\":\"+55 11 3019 6056\",\"address\":\"RUA GOMES DE CARVALHO 1999 11\\u00aa ANDAR 04547-006\",\"city\":\"SAO PAULO\",\"state\":\"SAO PAULO\",\"country\":\"Brazil\",\"postal_code\":null,\"nit\":\"813\",\"primary_external_code\":\"813\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":12,\"username\":\"tmercado@emba.com\",\"email\":\"tmercado@emba.com\",\"fullName\":\"Teddy Alberto Mercado Carrion\",\"shortName\":\"tmercado\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"646\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"5CGroup Global Asset Management Co., Ltd.\",\"trade_name\":\"5CGroup Global Asset Management Co., Ltd.\",\"displayName\":\"743 - 5CGroup Global Asset Management Co., Ltd.\",\"email\":\"info@5cgroupcapital.com\",\"phone\":\"(86) 571-8738-5327\",\"address\":\"#833 Jinsha Avenue, Qiantang New Area, Hangzhou,\",\"city\":\"LA\",\"state\":\"LA\",\"country\":\"China\",\"postal_code\":\"11111\",\"nit\":\"743\",\"primary_external_code\":\"743\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-06-22 03:36:14\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"647\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Abeledo Gottheil Abogados\",\"trade_name\":\"Abeledo Gottheil Abogados\",\"displayName\":\"721 - Abeledo Gottheil Abogados\",\"email\":\"erize@abeledogottheil.com.ar\",\"phone\":\"54 11 4516 1500\",\"address\":\"1020 5to. Piso, ACX, Av. Eduardo Madero, C1106 CAB\",\"city\":\"\",\"state\":\"\",\"country\":\"Argentina\",\"postal_code\":\"\",\"nit\":\"721\",\"primary_external_code\":\"721\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"648\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"ACI Systems\",\"trade_name\":\"ACI Systems\",\"displayName\":\"788 - ACI Systems\",\"email\":\"stefan.kosel@aci-grooup.de\",\"phone\":\"+49 741 17529930\",\"address\":\"Albring 18, 78658 Zimmern ob Rottweil, Alemania\",\"city\":\"\",\"state\":\"\",\"country\":\"Alemania\",\"postal_code\":\"\",\"nit\":\"788\",\"primary_external_code\":\"788\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"649\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"ACRON\",\"trade_name\":\"ACRON\",\"displayName\":\"825 - ACRON\",\"email\":\"Dynkin@acron.ru\",\"phone\":\"3447188\",\"address\":\"Condominio Santos Dumont A - 205,\\u00a0Santa Cruz, Boli\",\"city\":\"Estado\",\"state\":\"Estado\",\"country\":\"Bolivia\",\"postal_code\":\"000000\",\"nit\":\"99001\",\"primary_external_code\":\"825\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2025-03-13 09:02:22\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"650\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"ACTIVE RE\",\"trade_name\":\"ACTIVE RE\",\"displayName\":\"870 - ACTIVE RE\",\"email\":\"cvergara@acreinsurance.com\",\"phone\":\"50766137147\",\"address\":\"Barbados\",\"city\":\"\",\"state\":\"\",\"country\":\"Panam\\u00e1\",\"postal_code\":\"\",\"nit\":\"870\",\"primary_external_code\":\"870\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"651\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"ADM\",\"trade_name\":\"ADM\",\"displayName\":\"826 - ADM\",\"email\":\"eulloar@alicorp.com.bo\",\"phone\":\"3460888\",\"address\":\"Bolivia, \\u00a0Santa Cruz, \\u00a0Santa Cruz de la Sierra, \\u00a0P\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"826\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":16,\"username\":\"rburgos@emba.com\",\"email\":\"rburgos@emba.com\",\"fullName\":\"Edwin Rodrigo Burgos Fernandez\",\"shortName\":\"rburgos\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"652\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Airbus SAS\",\"trade_name\":\"Airbus SAS\",\"displayName\":\"739 - Airbus SAS\",\"email\":\"customersupport.helicopters@airbus.com\",\"phone\":\"33 (0)4 42 85 97 97\",\"address\":\"Calle Florida 84597 FP\",\"city\":\"Miami\",\"state\":\"Miami\",\"country\":\"USA\",\"postal_code\":\"33101\",\"nit\":\"739\",\"primary_external_code\":\"739\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"653\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"ALFONSO IBA\\u00d1EZ\",\"trade_name\":\"ALFONSO IBA\\u00d1EZ\",\"displayName\":\"648 - ALFONSO IBA\\u00d1EZ\",\"email\":\"aibanez@grupobisa.com\",\"phone\":\"77787910\",\"address\":\"Rue du Rhone 8\",\"city\":\"La Paz\",\"state\":\"La Paz\",\"country\":\"Bolivia\",\"postal_code\":null,\"nit\":\"99001\",\"primary_external_code\":\"648\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":23,\"username\":\"fsanchez@emba.com\",\"email\":\"fsanchez@emba.com\",\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"shortName\":\"fsanchez\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"654\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Allende \\u0026 Brea\",\"trade_name\":\"Allende \\u0026 Brea\",\"displayName\":\"828 - Allende \\u0026 Brea\",\"email\":\"mad@allendebrea.com.ar\",\"phone\":\"Tel: +54 11 4318-999\",\"address\":\"Maip\\u00fa 1300, Piso 11, C1006ACT, Buenos Aires, Argen\",\"city\":\"Buenos Aires\",\"state\":\"Buenos Aires\",\"country\":\"Argentina\",\"postal_code\":null,\"nit\":\"99001\",\"primary_external_code\":\"828\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"655\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"ALTECFLU S.L.\",\"trade_name\":\"ALTECFLU S.L.\",\"displayName\":\"767 - ALTECFLU S.L.\",\"email\":\"ekaterina.kalashnikova@bdo.es\",\"phone\":\"2145194\",\"address\":\"CALLE BALLIVIAN, 1456, La Paz\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"767\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"656\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"American Capital Finance Group (USA)\",\"trade_name\":\"American Capital Finance Group (USA)\",\"displayName\":\"833 - American Capital Finance Group (USA)\",\"email\":\"czurita@acfgroupus.com\",\"phone\":\"954.385.1717, Ext. 1\",\"address\":\"1 SE 3rd Ave. Suite 1870 Miami, FL 33130\",\"city\":\"\",\"state\":\"\",\"country\":\"Estados Unidos\",\"postal_code\":\"\",\"nit\":\"833\",\"primary_external_code\":\"833\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"657\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"American Express\",\"trade_name\":\"American Express\",\"displayName\":\"807 - American Express\",\"email\":\"Ina.Thonfeld@aexp.com\",\"phone\":\"1 212-640-2216\",\"address\":\"200 Vesey Street, New York, NY 10285\",\"city\":\"\",\"state\":\"\",\"country\":\"Estados Unidos\",\"postal_code\":\"\",\"nit\":\"807\",\"primary_external_code\":\"807\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"658\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"ANDEAN PRECIOUS METALS CORP\",\"trade_name\":\"ANDEAN PRECIOUS METALS CORP\",\"displayName\":\"875 - ANDEAN PRECIOUS METALS CORP\",\"email\":\"HRada@manquiri.com.bo\",\"phone\":\"+ 591 7770 168\",\"address\":\"1500 Royal Centre 1055 W Georgia St PO Box 11117\",\"city\":\"\",\"state\":\"\",\"country\":\"Canad\\u00e1\",\"postal_code\":\"\",\"nit\":\"875\",\"primary_external_code\":\"875\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":12,\"username\":\"tmercado@emba.com\",\"email\":\"tmercado@emba.com\",\"fullName\":\"Teddy Alberto Mercado Carrion\",\"shortName\":\"tmercado\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"659\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"AON CONSULTING\",\"trade_name\":\"AON CONSULTING\",\"displayName\":\"810 - AON CONSULTING\",\"email\":\"eder.vazquez@aon.com\",\"phone\":\"2790955\",\"address\":\"Calle 13 N S\\/n Edificio: Torre Lucia Piso: 3 Zona:\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"122711027\",\"primary_external_code\":\"810\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":16,\"username\":\"rburgos@emba.com\",\"email\":\"rburgos@emba.com\",\"fullName\":\"Edwin Rodrigo Burgos Fernandez\",\"shortName\":\"rburgos\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"660\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Archer Daniels Midland Company\",\"trade_name\":\"Archer Daniels Midland Company\",\"displayName\":\"820 - Archer Daniels Midland Company\",\"email\":\"virodrigues@br.neovia-group.com\",\"phone\":\"+55 11 5185-3356\",\"address\":\"Av. Roque Petroni Jr., 999 \\u2013 9\\u00ba andar S\\u00e3o Paulo \\u2013\",\"city\":\"\",\"state\":\"\",\"country\":\"Brasil\",\"postal_code\":\"\",\"nit\":\"820\",\"primary_external_code\":\"820\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"661\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Ashurst\",\"trade_name\":\"Ashurst\",\"displayName\":\"857 - Ashurst\",\"email\":\"Amanda.Ludlow@ashurst.com\",\"phone\":\"+61 7 3259 7164\",\"address\":\"123 Eagle Street, Brisbane, QLD 4000, Australia\",\"city\":\"\",\"state\":\"\",\"country\":\"Australia\",\"postal_code\":\"\",\"nit\":\"857\",\"primary_external_code\":\"857\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"662\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"ATEX Brasil\",\"trade_name\":\"ATEX Brasil\",\"displayName\":\"746 - ATEX Brasil\",\"email\":\"\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"746\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"663\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Bad Debt Management\",\"trade_name\":\"Bad Debt Management\",\"displayName\":\"846 - Bad Debt Management\",\"email\":\"baddebt@upm.com\",\"phone\":\"35802000000000000\",\"address\":\"Tulli Business Pard, erd floor, Akerlunkinkatu 11\",\"city\":\"\",\"state\":\"\",\"country\":\"Finlandia\",\"postal_code\":\"\",\"nit\":\"846\",\"primary_external_code\":\"846\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"664\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Baker Mackenzie\",\"trade_name\":\"Baker Mackenzie\",\"displayName\":\"740 - Baker Mackenzie\",\"email\":\"Baker@Baker.com\",\"phone\":\"54114300000000000\",\"address\":\"Cecilia Grierson 255, Piso 6 Buenos Aires C1107CPE\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"740\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"665\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Banuet Arrache\",\"trade_name\":\"Banuet Arrache\",\"displayName\":\"832 - Banuet Arrache\",\"email\":\"avargas@banuet.net\",\"phone\":\"(55) 84 21 91 20\",\"address\":\"CALLE SAN LORENZO, #153, Int. 206, COLONIA TLACOQU\",\"city\":\"\",\"state\":\"\",\"country\":\"M\\u00e9xico\",\"postal_code\":\"\",\"nit\":\"832\",\"primary_external_code\":\"832\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"666\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"BARDAHL\",\"trade_name\":\"BARDAHL\",\"displayName\":\"722 - BARDAHL\",\"email\":\"disher.bolivia@gmail.com\",\"phone\":\"2112225\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"722\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"667\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"BDO International Limited\",\"trade_name\":\"BDO International Limited\",\"displayName\":\"774 - BDO International Limited\",\"email\":\"\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"774\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"668\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Betsson Group\",\"trade_name\":\"Betsson Group\",\"displayName\":\"841 - Betsson Group\",\"email\":\"greta.agius@betssongroup.com\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Estados Unidos\",\"postal_code\":\"\",\"nit\":\"841\",\"primary_external_code\":\"841\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"670\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Blue Trail Software Holding, Inc.\",\"trade_name\":\"Blue Trail Software Holding, Inc.\",\"displayName\":\"869 - Blue Trail Software Holding, Inc.\",\"email\":\"amels@bluetrailsoft.com\",\"phone\":\"5162342953\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Estados Unidos\",\"postal_code\":\"\",\"nit\":\"869\",\"primary_external_code\":\"869\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"671\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"BRINKS CORPORACION\",\"trade_name\":\"BRINKS CORPORACION\",\"displayName\":\"662 - BRINKS CORPORACION\",\"email\":\"anezs@brinksbolivia.com\",\"phone\":\"3128400\",\"address\":\"Av. Mutualista No. 2400, Santa Cruz, Bolivia\",\"city\":\"Santa CRuz\",\"state\":\"Santa Cruz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"99011\",\"primary_external_code\":\"662\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"672\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"BUFETE BARRILERO Y ASOCIADOS\",\"trade_name\":\"BUFETE BARRILERO Y ASOCIADOS\",\"displayName\":\"734 - BUFETE BARRILERO Y ASOCIADOS\",\"email\":\"madrid@barrilero.es\",\"phone\":\"+34 915 763 424\",\"address\":\"Calle Vel\\u00e1zquez 12 28001 Madrid\",\"city\":\"\",\"state\":\"\",\"country\":\"Espa\\u00f1a\",\"postal_code\":\"\",\"nit\":\"734\",\"primary_external_code\":\"734\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"673\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"C\\u00e1mara Minera del Per\\u00fa\",\"trade_name\":\"C\\u00e1mara Minera del Per\\u00fa\",\"displayName\":\"821 - C\\u00e1mara Minera del Per\\u00fa\",\"email\":\"mmendoza@camiper.org\",\"phone\":\"Telf.: (51)(1) 34946\",\"address\":\"Calle Los Canarios N\\u00b0 105 Urb. San C\\u00e9sar II Etapa\",\"city\":\"\",\"state\":\"\",\"country\":\"Per\\u00fa\",\"postal_code\":\"\",\"nit\":\"821\",\"primary_external_code\":\"821\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"674\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Chapman University\",\"trade_name\":\"Chapman University\",\"displayName\":\"756 - Chapman University\",\"email\":\"andmeyer@chapman.edu\",\"phone\":\"(714) 997-6815\",\"address\":\"One University Drive Orange, CA 92866\",\"city\":\"\",\"state\":\"\",\"country\":\"Estados Unidos\",\"postal_code\":\"\",\"nit\":\"756\",\"primary_external_code\":\"756\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":15,\"username\":\"nezegarra@emba.com\",\"email\":\"nezegarra@emba.com\",\"fullName\":\"Natalio Eduardo Zegarra Ribera\",\"shortName\":\"nzegarra\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"675\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"CHONGQING CISDI ENGINEERING CONSULTING CO. LTD.\",\"trade_name\":\"CHONGQING CISDI ENGINEERING CONSULTING CO. LTD.\",\"displayName\":\"747 - CHONGQING CISDI ENGINEERING CONSULTING CO. LTD.\",\"email\":\"tingting5jbh@hotmail.com\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"747\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"676\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"CLIFFORD CHANCE\",\"trade_name\":\"CLIFFORD CHANCE\",\"displayName\":\"777 - CLIFFORD CHANCE\",\"email\":\"Carlota.Puertas@CliffordChance.com\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"777\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"677\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Clyde \\u0026 Co\",\"trade_name\":\"Clyde \\u0026 Co\",\"displayName\":\"736 - Clyde \\u0026 Co\",\"email\":\"\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"736\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"678\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"CMS\",\"trade_name\":\"CMS\",\"displayName\":\"889 - CMS\",\"email\":\"liliane.fozard@cms-cmno.com\",\"phone\":\"+44 20 7367 3640\",\"address\":\"Cannon Place, 78 Cannon Street | London EC4N 6AF |\",\"city\":\"\",\"state\":\"\",\"country\":\"Reino Unido\",\"postal_code\":\"\",\"nit\":\"889\",\"primary_external_code\":\"889\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"679\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"CNC Centro Nacional de Consultoria (VIACIENCIA)\",\"trade_name\":\"CNC Centro Nacional de Consultoria (VIACIENCIA)\",\"displayName\":\"802 - CNC Centro Nacional de Consultoria (VIACIENCIA)\",\"email\":\"xmunoz@cnccol.com\",\"phone\":\"75627572\",\"address\":\"PLAN 12 HAMACAS AV PRINCIPAL EDIFICIO EMMA PRIMER\",\"city\":\"\",\"state\":\"\",\"country\":\"Colombia\",\"postal_code\":\"\",\"nit\":\"802\",\"primary_external_code\":\"802\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"680\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Coda Payments\",\"trade_name\":\"Coda Payments\",\"displayName\":\"856 - Coda Payments\",\"email\":\"vanessa.scheidt@codapayments.com\",\"phone\":\"+55 48 99602-2438\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Singapur\",\"postal_code\":\"\",\"nit\":\"856\",\"primary_external_code\":\"856\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"681\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"COMCAST\",\"trade_name\":\"COMCAST\",\"displayName\":\"713 - COMCAST\",\"email\":\"vabanner@comcast.net\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"713\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"682\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Cooley UK LLP\",\"trade_name\":\"Cooley UK LLP\",\"displayName\":\"800 - Cooley UK LLP\",\"email\":\"smeiklejohn@cooley.com\",\"phone\":\"+44 (0) 7833 288149\",\"address\":\"22 Bishopsgate London, UK EC2N 4BQ\",\"city\":\"\",\"state\":\"\",\"country\":\"Reino Unido\",\"postal_code\":\"\",\"nit\":\"800\",\"primary_external_code\":\"800\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":6,\"username\":\"darredondo@emba.com.bo\",\"email\":\"nicoln042001@gmail.com\",\"fullName\":\"Daniel Marcelo Arredondo Zelada\",\"shortName\":\"darredon\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-03 11:43:07\",\"daysAllow\":302}},{\"id\":\"683\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Crawford \\u0026 Company (Nederland) B.V.\",\"trade_name\":\"Crawford \\u0026 Company (Nederland) B.V.\",\"displayName\":\"844 - Crawford \\u0026 Company (Nederland) B.V.\",\"email\":\"KanaralMobarak@crawco.nl\",\"phone\":\"+31 (0)10 45 35 522\",\"address\":\"3000 AP Rotterdam | Warenarburg 1 | 2907 CK Capell\",\"city\":\"\",\"state\":\"\",\"country\":\"Pa\\u00edses Bajos\",\"postal_code\":\"\",\"nit\":\"844\",\"primary_external_code\":\"844\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"684\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"CREATIVE ASSOCIATES INTERNATIONAL\",\"trade_name\":\"CREATIVE ASSOCIATES INTERNATIONAL\",\"displayName\":\"839 - CREATIVE ASSOCIATES INTERNATIONAL\",\"email\":\"JillianW@creativedc.com\",\"phone\":\"12025675974\",\"address\":\"5301 Wisconsin Avenue, NW Suite 700, Washington, D\",\"city\":\"\",\"state\":\"\",\"country\":\"Estados Unidos\",\"postal_code\":\"\",\"nit\":\"839\",\"primary_external_code\":\"839\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"685\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"CREDIT SUISSE AG\",\"trade_name\":\"CREDIT SUISSE AG\",\"displayName\":\"753 - CREDIT SUISSE AG\",\"email\":\"alice.bermejosilva@credit-suisse.com\",\"phone\":\"+34 91 791 60 0\",\"address\":\"dirigi\\u00e9ndose a Calle Ayala 42, 28001-Madrid\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"753\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"686\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"CROCS\",\"trade_name\":\"CROCS\",\"displayName\":\"750 - CROCS\",\"email\":\"kgoeking@crocs.com\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"750\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"687\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"DAC Beachcroft LLC\",\"trade_name\":\"DAC Beachcroft LLC\",\"displayName\":\"773 - DAC Beachcroft LLC\",\"email\":\"sstullenberg@dacbeachcroft.com\",\"phone\":\"+44 (0) 20 7242 1011\",\"address\":\"25 Walbrook London EC4N 8AF\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"773\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"688\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"DEG - Deutsche Investitions- und\",\"trade_name\":\"DEG - Deutsche Investitions- und\",\"displayName\":\"804 - DEG - Deutsche Investitions- und\",\"email\":\"david.salmen@deginvest.de\",\"phone\":\"+49(0)221 4986 1501\",\"address\":\"Kaemmergasse 22 50676 Cologne Germany\",\"city\":\"\",\"state\":\"\",\"country\":\"Alemania\",\"postal_code\":\"\",\"nit\":\"804\",\"primary_external_code\":\"804\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"689\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Dentons Cardenas \\u0026 Cardenas\",\"trade_name\":\"Dentons Cardenas \\u0026 Cardenas\",\"displayName\":\"716 - Dentons Cardenas \\u0026 Cardenas\",\"email\":\"\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"716\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"690\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Dentons UK and Middle East LLP\",\"trade_name\":\"Dentons UK and Middle East LLP\",\"displayName\":\"858 - Dentons UK and Middle East LLP\",\"email\":\"jennifer.cass@dentons.com\",\"phone\":\"+44 20 7246 7552\",\"address\":\"One Fleet Place, London, EC4M 7WS\",\"city\":\"\",\"state\":\"\",\"country\":\"Reino Unido\",\"postal_code\":\"\",\"nit\":\"858\",\"primary_external_code\":\"858\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"691\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Deutsche Bank AG, Filiale New York\",\"trade_name\":\"Deutsche Bank AG, Filiale New York\",\"displayName\":\"847 - Deutsche Bank AG, Filiale New York\",\"email\":\"noah.baer@db.com\",\"phone\":\"1(212) 250-9298\",\"address\":\"60 Wall Street, 10005-2836 New York, NY, USA\",\"city\":\"\",\"state\":\"\",\"country\":\"Estados Unidos\",\"postal_code\":\"\",\"nit\":\"847\",\"primary_external_code\":\"847\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"692\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"DLA PIPER\",\"trade_name\":\"DLA PIPER\",\"displayName\":\"720 - DLA PIPER\",\"email\":\"mmercado@gg-lex.com\",\"phone\":\"17879459130\",\"address\":\"500 CALLE DE LA TANGA,SUITE 401 SAN JUAN PR 00901-1969\",\"city\":\"SAN JUAN\",\"state\":\"SAN JUAN\",\"country\":\"Costa Rica\",\"postal_code\":null,\"nit\":\"99001\",\"primary_external_code\":\"720\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"693\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"DLA Piper Spain\",\"trade_name\":\"DLA Piper Spain\",\"displayName\":\"816 - DLA Piper Spain\",\"email\":\"maria.gutierrez@dlapiper.com\",\"phone\":\"+34 91 319 12 12\",\"address\":\"Paseo de la Castellana, 35 - 5\\u00aa planta 28046 Mad\",\"city\":\"\",\"state\":\"\",\"country\":\"Espa\\u00f1a\",\"postal_code\":\"\",\"nit\":\"816\",\"primary_external_code\":\"816\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"694\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"DOCTOR\\u0027S ASSOCIATES INC\",\"trade_name\":\"DOCTOR\\u0027S ASSOCIATES INC\",\"displayName\":\"651 - DOCTOR\\u0027S ASSOCIATES INC\",\"email\":\"\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"651\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"695\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Domino Printing Sciences PLC\",\"trade_name\":\"Domino Printing Sciences PLC\",\"displayName\":\"781 - Domino Printing Sciences PLC\",\"email\":\"Samantha.Woodley@domino-printing.com\",\"phone\":\"34 91 654 21 41\",\"address\":\"Avenida Valdelaparra,4 Alcobendas 28108 Madrid\",\"city\":\"\",\"state\":\"\",\"country\":\"Espa\\u00f1a\",\"postal_code\":\"\",\"nit\":\"781\",\"primary_external_code\":\"781\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":17,\"username\":\"aaraoz@emba.com\",\"email\":\"aaraoz@emba.com\",\"fullName\":\"Alvaro Araoz Ardaya\",\"shortName\":\"aaraoz\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-12-04 15:29:19\",\"daysAllow\":302}},{\"id\":\"696\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"DURAN-CORRETJER SLP\",\"trade_name\":\"DURAN-CORRETJER SLP\",\"displayName\":\"823 - DURAN-CORRETJER SLP\",\"email\":\"info@duran.es\",\"phone\":\"(+34) 93 218 16 14\",\"address\":\"C\\u00f2rsega, 329 P de Gracia\\/Diagonal 08037 Barcelona\",\"city\":\"\",\"state\":\"\",\"country\":\"Espa\\u00f1a\",\"postal_code\":\"\",\"nit\":\"823\",\"primary_external_code\":\"823\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"697\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"EMBAJADA DE LOS ESTADOS UNIDOS DE AMERICA\",\"trade_name\":\"EMBAJADA DE LOS ESTADOS UNIDOS DE AMERICA\",\"displayName\":\"649 - EMBAJADA DE LOS ESTADOS UNIDOS DE AMERICA\",\"email\":\"\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"649\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"698\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Empresa Editora El Comercio S.A.\",\"trade_name\":\"Empresa Editora El Comercio S.A.\",\"displayName\":\"741 - Empresa Editora El Comercio S.A.\",\"email\":\"manuel.armas@comercio.com.pe\",\"phone\":\"(0051-1) 311-6500\",\"address\":\"Jr. Antonio Miroquesada N\\u00ba 300 Lima\",\"city\":\"\",\"state\":\"\",\"country\":\"Per\\u00fa\",\"postal_code\":\"\",\"nit\":\"741\",\"primary_external_code\":\"741\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"699\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Empresas Carozzi S.A.\",\"trade_name\":\"Empresas Carozzi S.A.\",\"displayName\":\"765 - Empresas Carozzi S.A.\",\"email\":\"jprivera@carozzi.cl\",\"phone\":\"3776400\",\"address\":\"CAMINO LONGITUDINAL SUR 5201 KM 23 NOS Santiago de\",\"city\":\"\",\"state\":\"\",\"country\":\"Chile\",\"postal_code\":\"\",\"nit\":\"765\",\"primary_external_code\":\"765\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"701\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"FECOTEL\",\"trade_name\":\"FECOTEL\",\"displayName\":\"659 - FECOTEL\",\"email\":\"info@fecotelrl.org\",\"phone\":\"2352006\",\"address\":\"Av. 16 de Julio (El Prado) N\\u00b0 1566, Edificio 16 de\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"659\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"702\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Fernando Villarroel\",\"trade_name\":\"Fernando Villarroel\",\"displayName\":\"783 - Fernando Villarroel\",\"email\":\"FernandoVillarroel@Door2Design.com\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"783\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"703\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"FERRARI GHEZZI LTDA\",\"trade_name\":\"FERRARI GHEZZI LTDA\",\"displayName\":\"636 - FERRARI GHEZZI LTDA\",\"email\":\"\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"636\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":12,\"username\":\"tmercado@emba.com\",\"email\":\"tmercado@emba.com\",\"fullName\":\"Teddy Alberto Mercado Carrion\",\"shortName\":\"tmercado\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"704\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"FORD MOTOR COLOMBIA S.A.S.\",\"trade_name\":\"FORD MOTOR COLOMBIA S.A.S.\",\"displayName\":\"709 - FORD MOTOR COLOMBIA S.A.S.\",\"email\":\"\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"709\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"705\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Foster and Partners Limited\",\"trade_name\":\"Foster and Partners Limited\",\"displayName\":\"755 - Foster and Partners Limited\",\"email\":\"london@fosterandpartners.com\",\"phone\":\"+44 20 7738 455\",\"address\":\"Riverside, 22 Hester Road, London, SW11 4AN, Unite\",\"city\":\"\",\"state\":\"\",\"country\":\"Reino Unido\",\"postal_code\":\"\",\"nit\":\"755\",\"primary_external_code\":\"755\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"706\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"FRANCISCO PAGES\",\"trade_name\":\"FRANCISCO PAGES\",\"displayName\":\"703 - FRANCISCO PAGES\",\"email\":\"\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"703\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"707\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"FUNDACION SIMON I. PATI\\u00d1O (SUIZA)\",\"trade_name\":\"FUNDACION SIMON I. PATI\\u00d1O (SUIZA)\",\"displayName\":\"865 - FUNDACION SIMON I. PATI\\u00d1O (SUIZA)\",\"email\":\"j.blajos@fundacionpatino.org\",\"phone\":\"69414515\",\"address\":\"Av. Potosi 1450 entre Av. Portales y calle Buenos\",\"city\":\"\",\"state\":\"\",\"country\":\"Suiza\",\"postal_code\":\"\",\"nit\":\"99011\",\"primary_external_code\":\"865\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":9,\"username\":\"paramayo@emba.com\",\"email\":\"paramayo@emba.com\",\"fullName\":\"Paul Aramayo Salinas\",\"shortName\":\"paramayo\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"708\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"FUNDACION STIFTELSEN GATUBARN\",\"trade_name\":\"FUNDACION STIFTELSEN GATUBARN\",\"displayName\":\"645 - FUNDACION STIFTELSEN GATUBARN\",\"email\":\"\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"645\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"709\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"GABRIELA TORREZ\",\"trade_name\":\"GABRIELA TORREZ\",\"displayName\":\"654 - GABRIELA TORREZ\",\"email\":\"\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"654\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"710\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"GAMMING LABORATORIES INTERNATIONAL LLC (GLI)\",\"trade_name\":\"GAMMING LABORATORIES INTERNATIONAL LLC (GLI)\",\"displayName\":\"699 - GAMMING LABORATORIES INTERNATIONAL LLC (GLI)\",\"email\":\"usuario@ejemplo.com\",\"phone\":\"5-199-347-3737\",\"address\":\"Calle Ramadal 140 \\u2013 Dpto 101 Surco, Lima 33, Per\\u00fa\",\"city\":\"\",\"state\":\"\",\"country\":\"Per\\u00fa\",\"postal_code\":\"\",\"nit\":\"699\",\"primary_external_code\":\"699\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"711\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"GARRIQUES\",\"trade_name\":\"GARRIQUES\",\"displayName\":\"748 - GARRIQUES\",\"email\":\"franco.muschi@garrigues.com\",\"phone\":\"5113995600\",\"address\":\"Av. Victor Andr\\u00e9s Belapunde 332, Of. 701\",\"city\":\"\",\"state\":\"\",\"country\":\"Per\\u00fa\",\"postal_code\":\"\",\"nit\":\"748\",\"primary_external_code\":\"748\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":17,\"username\":\"aaraoz@emba.com\",\"email\":\"aaraoz@emba.com\",\"fullName\":\"Alvaro Araoz Ardaya\",\"shortName\":\"aaraoz\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-12-04 15:29:19\",\"daysAllow\":302}},{\"id\":\"712\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Gattuso\",\"trade_name\":\"Gattuso\",\"displayName\":\"442 - Gattuso\",\"email\":\"jbouchard@gattusogbm.com\",\"phone\":\"5143608772\",\"address\":\"1010 Sherbrooke Ouest, Bureau 2200, Montr\\u00e9al, Qu\\u00e9b\",\"city\":\"\",\"state\":\"\",\"country\":\"Canad\\u00e1\",\"postal_code\":\"\",\"nit\":\"442\",\"primary_external_code\":\"442\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"713\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"GIESECKE \\u0026 DEVRIENT AMERICA INC\",\"trade_name\":\"GIESECKE \\u0026 DEVRIENT AMERICA INC\",\"displayName\":\"796 - GIESECKE \\u0026 DEVRIENT AMERICA INC\",\"email\":\"greg.pedersen@gi-de.com\",\"phone\":\"1 (703) 480-2159\",\"address\":\"Inc. 45925 Horseshoe Drive, Dulles, VA 20166\",\"city\":\"\",\"state\":\"\",\"country\":\"Estados Unidos\",\"postal_code\":\"\",\"nit\":\"99011\",\"primary_external_code\":\"796\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":17,\"username\":\"aaraoz@emba.com\",\"email\":\"aaraoz@emba.com\",\"fullName\":\"Alvaro Araoz Ardaya\",\"shortName\":\"aaraoz\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-12-04 15:29:19\",\"daysAllow\":302}},{\"id\":\"714\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"GILDEMIESTER\",\"trade_name\":\"GILDEMIESTER\",\"displayName\":\"706 - GILDEMIESTER\",\"email\":\"usuario@ejemplo.com\",\"phone\":\"(56-2) 25964000\",\"address\":\"Avenida Americvo Vespucio 570 Pudahuel Santiago\",\"city\":\"\",\"state\":\"\",\"country\":\"Chile\",\"postal_code\":\"\",\"nit\":\"706\",\"primary_external_code\":\"706\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":5,\"username\":\"amorenog@emba.com\",\"email\":\"amorenog@emba.com\",\"fullName\":\"Andres Moreno Gutierrez\",\"shortName\":\"amoreno\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"715\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Glencore International AG\",\"trade_name\":\"Glencore International AG\",\"displayName\":\"751 - Glencore International AG\",\"email\":\"Carlos.Fernandez@glencore.com\",\"phone\":\"2444849\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"751\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":12,\"username\":\"tmercado@emba.com\",\"email\":\"tmercado@emba.com\",\"fullName\":\"Teddy Alberto Mercado Carrion\",\"shortName\":\"tmercado\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"716\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Goja LLC\",\"trade_name\":\"Goja LLC\",\"displayName\":\"772 - Goja LLC\",\"email\":\"walter@goja.com\",\"phone\":\"1 305-902-4652\",\"address\":\"3350 NW 72nd Ave, Miami, FL 33122, EE. UU.\",\"city\":\"\",\"state\":\"\",\"country\":\"Estados Unidos\",\"postal_code\":\"\",\"nit\":\"772\",\"primary_external_code\":\"772\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"717\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"G\\u00f3mez-Acebo \\u0026 Pombo Abogados S.L.P.\",\"trade_name\":\"G\\u00f3mez-Acebo \\u0026 Pombo Abogados S.L.P.\",\"displayName\":\"728 - G\\u00f3mez-Acebo \\u0026 Pombo Abogados S.L.P.\",\"email\":\"availlo@gomezacebo-pombo.com\",\"phone\":\"+34) 91 582 91 0\",\"address\":\"Paseo de la Castellana, 216 - 28046 Madrid\",\"city\":\"\",\"state\":\"\",\"country\":\"Espa\\u00f1a\",\"postal_code\":\"\",\"nit\":\"728\",\"primary_external_code\":\"728\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"718\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"GOOGLE\",\"trade_name\":\"GOOGLE\",\"displayName\":\"701 - GOOGLE\",\"email\":\"lagf@google.comuci\",\"phone\":\"54-11-5530-3000\",\"address\":\"Alicia M. De Justo 350, 2.\\u00b0 piso Buenos Aires, C11\",\"city\":\"\",\"state\":\"\",\"country\":\"Argentina\",\"postal_code\":\"\",\"nit\":\"701\",\"primary_external_code\":\"701\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":12,\"username\":\"tmercado@emba.com\",\"email\":\"tmercado@emba.com\",\"fullName\":\"Teddy Alberto Mercado Carrion\",\"shortName\":\"tmercado\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"719\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"GQ LITTLER\",\"trade_name\":\"GQ LITTLER\",\"displayName\":\"855 - GQ LITTLER\",\"email\":\"Consultant1@gqlittler.com\",\"phone\":\"+44 (0)20 3375 335\",\"address\":\"Littler\\u00a021 Ironmonger Lane, London\",\"city\":\"\",\"state\":\"\",\"country\":\"Reino Unido\",\"postal_code\":\"\",\"nit\":\"855\",\"primary_external_code\":\"855\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"720\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"GRECO VITALI ASSOCIATI - STUDIO LEGALE\",\"trade_name\":\"GRECO VITALI ASSOCIATI - STUDIO LEGALE\",\"displayName\":\"861 - GRECO VITALI ASSOCIATI - STUDIO LEGALE\",\"email\":\"dalila.desalvo@gvalex.it\",\"phone\":\"+39 2 9439 1800\",\"address\":\"Via Gaetano Negri, 8, 20123 Milano MI, Italia\",\"city\":\"\",\"state\":\"\",\"country\":\"Italia\",\"postal_code\":\"\",\"nit\":\"861\",\"primary_external_code\":\"861\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":12,\"username\":\"tmercado@emba.com\",\"email\":\"tmercado@emba.com\",\"fullName\":\"Teddy Alberto Mercado Carrion\",\"shortName\":\"tmercado\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}}]}}}\n","time":"2025-07-30T10:49:10-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: POST https://apinewtm.com/graphql/\nHeaders: map[Accept:[application/json] Authorization:[Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJpYXQiOjE3NTM4ODY1MjIsImV4cCI6MTc1Mzk2NjUyMiwiaWQiOjEwNSwidXNlcm5hbWUiOiJpbnRlZ3JhY2lvbmVzQGVtYmEuYm8iLCJhcGlrZXkiOiI5Yzg0ZjYzZTRlMzk2ZGZmOWU5ZjU3NDI5OGRmZWUzOSIsImFwaWtleUNyZWF0ZWRBdCI6eyJkYXRlIjoiMjAyNS0wNy0xNyAxMDo0MToyNS4wMDAwMDAiLCJ0aW1lem9uZV90eXBlIjozLCJ0aW1lem9uZSI6IkFtZXJpY2EvQm9nb3RhIn0sImZ1bGxOYW1lIjoiSW50ZWdyYWNpw7NuIEVNQkEiLCJlbWFpbCI6ImludGVncmFjaW9uZXNAZW1iYS5ibyIsImxvY2FsZSI6ImVzIiwiZGF5c0FsbG93ZWQiOjMwLCJpc0Nvb3JkaW5hdG9yIjpmYWxzZSwidHlwZVRhc2tWaWV3IjoibGlzdHMiLCJkYXlzYWxsb3ciOjMwLCJyb2xlcyI6e30sInNob3J0X25hbWUiOiJJTi5FTUJBIiwicGVybWlzc2lvbnMiOlsic3luY19leHRlcm5hbF9idXNpbmVzcyIsInN5bmNfZXh0ZXJuYWxfY3VzdG9tZXIiLCJzeW5jX2V4dGVybmFsX21pbGVzdG9uZSIsImFic2VuY2VfYXBwcm92ZSIsImFic2VuY2VfY3JlYXRlX2FsbCIsImFic2VuY2VfY3JlYXRlX293biIsImFic2VuY2VfbWVudSIsImFjY291bnRpbmdfYnVzaW5lc3NfbGlzdCIsImFjY291bnRpbmdfY3VzdG9tZXJfbGlzdCIsImJpbGxpbmdfcGVyaW9kX2RlbGV0ZV9hbGwiLCJiaWxsaW5nX3BlcmlvZF9lZGl0X2FsbCIsImJpbGxpbmdfcGVyaW9kX2xpc3QiLCJiaWxsaW5nX3BlcmlvZF9yZWFjdGl2YXRlIiwiYm9hcmRfcmF0ZV91c2VyX2NyZWF0ZSIsImJvYXJkX3JhdGVfdXNlcl9lZGl0IiwiYnVzaW5lc3NfY3JlYXRlIiwiYnVzaW5lc3NfZGVzY3JpcHRpb25fc2F2ZSIsImJ1c2luZXNzX2VkaXQiLCJidXNpbmVzc19saXN0X2FsbCIsImJ1c2luZXNzX21lbnUiLCJidXNpbmVzc19yZXNwb25zaWJsZV9saXN0X2FsbCIsImJ1c2luZXNzX3NlZV9iaWxsaW5nX2luZm8iLCJidXNpbmVzc2VzX2FsbG93ZWRfdXNlcl9jcmVhdGUiLCJidXNpbmVzc2VzX2FsbG93ZWRfdXNlcl9kZWxldGUiLCJjb21wYW55X2Rpc2FibGUiLCJjb21wYW55X2VkaXQiLCJjb21wYW55X2xpc3QiLCJjb25jZXB0X2NyZWF0ZSIsImNvbmNlcHRfZWRpdCIsImNvbmNlcHRfbWVudSIsImNvbnRhY3RfY3JlYXRlIiwiY29udGFjdF9jcmVhdGVfZmFzdCIsImNvbnRhY3RfZWRpdCIsImNvbnRhY3RfbGlzdCIsImNvbnRhY3RfbWVudSIsImN1c3RvbWVyX2NyZWF0ZSIsImN1c3RvbWVyX2NyZWF0ZV9mYXN0IiwiY3VzdG9tZXJfZWRpdCIsImN1c3RvbWVyX2xpc3QiLCJjdXN0b21lcl9saXN0X2FsbCIsImN1c3RvbWVyX21lbnUiLCJleHBlbnNlX2NyZWF0ZV9hbGwiLCJleHBlbnNlX2RlbGV0ZV9hbGwiLCJleHBlbnNlX2R1cGxpY2F0ZSIsImV4cGVuc2VfZWRpdF9hbGwiLCJleHBlbnNlX2xpc3RfYWxsIiwiZXhwZW5zZV9tZW51IiwiZXhwZW5zZV9yZWplY3RfYWxsIiwiZmFiX3Nob3ciLCJmaWxlX21lbnUiLCJnZW9yZWZlcmVuY2VfY3JlYXRlIiwiZ2VvcmVmZXJlbmNlX2VkaXQiLCJnZW9yZWZlcmVuY2VfbWVudSIsImdvX3RvX2xlZ2FjeSIsImluZGljYXRvcnNfbWVudSIsImludm9pY2VfY3JlYXRlIiwiaW52b2ljZV9kZXRhaWxfbGlzdF9hbGwiLCJpbnZvaWNlX2ZpeF90aW1lc19jdXN0b21fdmFsdWUiLCJpbnZvaWNlX2xpc3RfYWxsIiwiaW52b2ljZWFkdmFuY2VfY3JlYXRlIiwiaW52b2ljZWFkdmFuY2VfbGlzdCIsImludm9pY2VhZHZhbmNlX3VwZGF0ZSIsImxvZ19saXN0X2FsbCIsImxvZ19saXN0X293biIsIm1pbGVzdG9uZV9jcmVhdGUiLCJtaWxlc3RvbmVfZGVsZXRlIiwibWlsZXN0b25lX2VkaXQiLCJtb250aGx5X2ZpeF9yYXRlX2dyb3VwX2NyZWF0ZSIsIm1vbnRobHlfZml4X3JhdGVfZ3JvdXBfZWRpdCIsIm1vbnRobHlfdXNlcl9jb3N0X2NyZWF0ZSIsIm1vbnRobHlfdXNlcl9jb3N0X2VkaXQiLCJwYXltZW50X2NyZWF0ZSIsInBheW1lbnRfZGVsZXRlIiwicGF5bWVudF9lZGl0IiwicGF5bWVudF9tZW51IiwicHJvY2VkdXJlX21lbnUiLCJwcm9jZWR1cmVfcmF0ZV9jcmVhdGUiLCJwcm9jZWR1cmVfcmF0ZV9kZXRhaWxfY3JlYXRlIiwicHJvY2VkdXJlX3JhdGVfZGV0YWlsX2VkaXQiLCJwcm9jZWR1cmVfcmF0ZV9kZXRhaWxfbGlzdCIsInByb2NlZHVyZV9yYXRlX2VkaXQiLCJwcm9jZWR1cmVfcmF0ZV9saXN0IiwicHJvY2VkdXJlX3JhdGVfbWVudSIsInByb2NlZHVyZV90cmFuc2FjdGlvbl9saXN0IiwicHJvamVjdF9hcmNoaXZlX2Nhc2NhZGVfYWxsIiwicHJvamVjdF9kZWxldGVfY2FzY2FkZV9hbGwiLCJwcm9qZWN0X3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInJhdGVfYnVzaW5lc3NfY2F0ZWdvcnlfY3JlYXRlIiwicmF0ZV9idXNpbmVzc19jYXRlZ29yeV9lZGl0IiwicmF0ZV9idXNpbmVzc191c2VyX2NyZWF0ZSIsInJhdGVfYnVzaW5lc3NfdXNlcl9lZGl0IiwicmF0ZV9leGNoYW5nZV9jcmVhdGUiLCJyYXRlX2V4Y2hhbmdlX2VkaXQiLCJyYXRlX2V4Y2hhbmdlX2xpc3QiLCJyYXRlX3VzZXJfY3JlYXRlIiwicmF0ZV91c2VyX2VkaXQiLCJyb2xlX2NyZWF0ZSIsInJvbGVfZWRpdF9hbGwiLCJyb2xlX2xpc3RfYWxsIiwic2VjdGlvbl9hcmNoaXZlX2Nhc2NhZGVfYWxsIiwic2VjdGlvbl9kZWxldGVfY2FzY2FkZV9hbGwiLCJzZWN0aW9uX3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInNlZV9tZW51X3JhdGVfZXhjaGFuZ2UiLCJzZXJpZV9jcmVhdGUiLCJzZXJpZV9lZGl0Iiwic2VyaWVfbWVudSIsInNldHRpbmdzX3ZpZXciLCJzdXBwbGllcl9jcmVhdGUiLCJ0YXNrX2FkZF90aW1lX2FsbCIsInRhc2tfYWRkX3RpbWVfb3duIiwidGFza19hc3NpZ25lZF91c2VyX2VtYWlsIiwidGFza19jbG9zZWRfZW1haWwiLCJ0YXNrX2NyZWF0ZV9hbGwiLCJ0YXNrX2NyZWF0ZV9jb21tZW50X2VtYWlsIiwidGFza19jcmVhdGVfc2VsZiIsInRhc2tfY3JlYXRlX3RlYW0iLCJ0YXNrX2RlbGV0ZV9hbGwiLCJ0YXNrX2RlbGV0ZV9vd24iLCJ0YXNrX2RlbGV0ZV90ZWFtIiwidGFza19lZGl0X2FsbCIsInRhc2tfZWRpdF9kdWVfZGF0ZSIsInRhc2tfZWRpdF9vd24iLCJ0YXNrX2VkaXRfdGVhbSIsInRhc2tfbGlzdF9hbGwiLCJ0YXNrX2xpc3Rfb3duIiwidGFza19saXN0X3RlYW0iLCJ0YXNrX21hc3NpdmVpbXBvcnQiLCJ0YXNrX21lbnUiLCJ0YXNrX21pZ3JhdGlvbiIsInRhc2tfc2V0X2FkZGl0aW9uYWxfYXNzaWduZWVzIiwidGFza19zZXRfZHVlX2RhdGUiLCJ0YXNrX3NldF9lc3RpbWF0ZWRfdGltZSIsInRhc2tfc2V0X3ByaW9yaXR5IiwidGFza19zZXRfcHJvZ3Jlc3MiLCJ0YXhfZWRpdF9hbGwiLCJ0YXhfbGlzdF9hbGwiLCJ0ZWFtX2FyY2hpdmVfY2FzY2FkZV9hbGwiLCJ0ZWFtX2NyZWF0ZV9hbGwiLCJ0ZWFtX2RlbGV0ZV9hbGwiLCJ0ZWFtX2VkaXRfYWxsIiwidGVhbV9saXN0X2FsbCIsInRlYW1fbGlzdF9vd24iLCJ0ZWFtX3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInRpbWVfYWNjZXB0X2FsbCIsInRpbWVfYWNjZXB0X293biIsInRpbWVfYXBwcm92ZV9hbGwiLCJ0aW1lX2FwcHJvdmVfb3duIiwidGltZV9jcmVhdGVfYWxsIiwidGltZV9jcmVhdGVfb3duIiwidGltZV9kZWxldGVfYWxsIiwidGltZV9kZWxldGVfb3duIiwidGltZV9kZW55X2FsbCIsInRpbWVfZGVueV9vd24iLCJ0aW1lX2Rvd25sb2FkZmlsZV9hbGwiLCJ0aW1lX2Rvd25sb2FkZmlsZV9vd24iLCJ0aW1lX2VkaXRfYWxsIiwidGltZV9lZGl0X2Nsb3NlX3BlcmlvZF9hbGwiLCJ0aW1lX2VkaXRfY2xvc2VfcGVyaW9kX293biIsInRpbWVfZWRpdF9vd24iLCJ0aW1lX2xpc3RfYWxsIiwidGltZV9saXN0X293biIsInRpbWVfbWVudSIsInRpbWVfbWludXRlc196ZXJvIiwidGltZV9yZWplY3RfYWxsIiwidGltZV9yZXN0cmljdGVkX3BlcmlvZF9jcmVhdGUiLCJ0aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX2VkaXQiLCJ0aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX21lbnUiLCJ0aW1lX3NoYXJlX2FsbCIsInRpbWVfc2hhcmVfb3duIiwidGltZV9zaG93X2NhbGVuZGFyX3ZpZXciLCJ0aW1lX3VwbG9hZGZpbGVfYWxsIiwidGltZV91cGxvYWRmaWxlX293biIsInRyYW5zYWN0aW9uX2FkYXB0ZXJfbGlzdCIsInRyYW5zYWN0aW9uX2xpc3QiLCJ1c2VyX2Fic2VuY2VzX3Nob3ciLCJ1c2VyX2Nvc3RfY3JlYXRlIiwidXNlcl9jb3N0X2VkaXQiLCJ1c2VyX2Nvc3RfbGlzdCIsInVzZXJfY29zdF9tZW51IiwidXNlcl9jb3N0X3JhdGVfY3JlYXRlIiwidXNlcl9jb3N0X3JhdGVfZWRpdCIsInVzZXJfY29zdF9yYXRlX2xpc3QiLCJ1c2VyX2NyZWF0ZSIsInVzZXJfZGlzYWJsZSIsInVzZXJfZWRpdCIsInVzZXJfZWRpdF9kYXlzX2FsbG93X29ubHkiLCJ1c2VyX2dyb3VwX3JvbGVfY3JlYXRlX2FsbCIsInVzZXJfZ3JvdXBfcm9sZV9kZWxldGVfYWxsIiwidXNlcl9ncm91cF9yb2xlX2VkaXRfYWxsIiwidXNlcl9ncm91cF9yb2xlc19saXN0X2FsbCIsInVzZXJfbGlzdCIsInVzZXJfbGlzdF9hbGwiLCJ1c2VyX21hc3NfYWN0aXZhdGlvbiIsInVzZXJfcHJvZHVjdGl2aXR5X2NyZWF0ZSIsInVzZXJfcHJvZHVjdGl2aXR5X2Rpc2FibGUiLCJ1c2VyX3Byb2R1Y3Rpdml0eV9lZGl0IiwidXNlcl9wcm9kdWN0aXZpdHlfZW5hYmxlIiwidXNlcl9wcm9kdWN0aXZpdHlfbWVudSIsInVzZXJfdGltZV9yZXN0cmljdGVkX3BlcmlvZF9jcmVhdGUiLCJ1c2VyX3RpbWVfcmVzdHJpY3RlZF9wZXJpb2RfZGVsZXRlIiwidXNlcl90aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX2VkaXQiLCJ1c2VyZ3JvdXBfY3JlYXRlX2FsbCIsInVzZXJncm91cF9kZWxldGVfYWxsIiwidXNlcmdyb3VwX2VkaXRfYWxsIiwidXNlcmdyb3VwX2xpc3RfYWxsIiwidXNlcmdyb3VwX21lbnUiLCJ1c2Vyc191c2VyX2dyb3VwX2NyZWF0ZV9hbGwiLCJ1c2Vyc191c2VyX2dyb3VwX2RlbGV0ZV9hbGwiLCJ1c2Vyc191c2VyX2dyb3VwX2VkaXRfYWxsIiwidXNlcnNfdXNlcl9ncm91cHNfbGlzdF9hbGwiXSwiaG9tZXBhZ2UiOm51bGx9.kShN7NXGoaz1oFro-yYNyIpIEcnNpo1GiB8SFGKFUJtDQoqyp1I1w-CMA8Kta3vWXnUZwx-y2z1yVSJaMpZbqQgKFlakpcf6351bZSL8IAUPExSfLz0HYYCWFx-Usx94BBTqosKsRhnT8PkPN3dGxs8-XTIEDi9gN-Pk9OSHmM5mPkTsaaxTY40M-F7Y0Up2y6s_lwFaX13CmstiYZSXzyKL9SUBBx-E6-8qQAfuKPIoZ_50jSGPW98-IkAcWwqO6yGf-M07dSfFZ2vLfwc3ulHm2p8jVSmRxJ_O43BEWQD5cvqGbVIvSMXkS4y98DL4Vencjjg27iu3CUJsDNBBTg] Content-Type:[application/json] Origin:[https://azure-function.timemanagerweb.com] Tenant-Name:[pruebas-dos] User-Agent:[Mozilla/5.0 (X11; Linux x86_64)...]]\nBody: map[query:query ($limit: Int, $orderBy: String, $orderDesc: Boolean, $page: Int) {\n CustomersMeta(limit: $limit, orderBy: $orderBy, orderDesc: $orderDesc, page: $page) {\n meta {\n hasNextPage\n hasPreviousPage\n limit\n next\n page\n pages\n previous\n total\n }\n rows {\n id\n code\n number\n color\n name\n trade_name\n displayName\n email\n phone\n address\n city\n state\n country\n postal_code\n nit\n primary_external_code\n status\n statusMarking\n billingLimitDate\n recepctionLimitDate\n dmsIntegration\n cmrRequiredDocuments\n cmrPayTms\n enabled\n created_at\n updated_at\n valueTax\n withIva\n paymentDays\n national\n enterpriseGroup\n responsiblePartner {\n id\n username\n email\n fullName\n shortName\n locale\n userType\n superAdmin\n enabled\n created_at\n updated_at\n daysAllow\n }\n }\n }\n} variables:map[limit:100 orderBy:orderBy orderDesc:true page:9]]\n","time":"2025-07-30T10:49:10-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: POST https://apinewtm.com/graphql/ | Status: 200 | Duration: 549.2626ms\nHeaders: map[Access-Control-Allow-Credentials:[true] Access-Control-Allow-Origin:[https://azure-function.timemanagerweb.com] Access-Control-Expose-Headers:[link, access-control-allow-credentials] Cache-Control:[no-cache, private] Content-Type:[application/json] Date:[Wed, 30 Jul 2025 14:49:10 GMT] Server:[] Vary:[Authorization]]\nBody: {\"data\":{\"CustomersMeta\":{\"meta\":{\"hasNextPage\":true,\"hasPreviousPage\":true,\"limit\":100,\"next\":10,\"page\":9,\"pages\":10,\"previous\":8,\"total\":919},\"rows\":[{\"id\":\"721\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"GSI\",\"trade_name\":\"GSI\",\"displayName\":\"719 - GSI\",\"email\":\"ssa@cmtlaw.com.br\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"719\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"722\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"GUESS INC\",\"trade_name\":\"GUESS INC\",\"displayName\":\"656 - GUESS INC\",\"email\":\"\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"656\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"723\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"GUTIERREZ - SALAS\",\"trade_name\":\"GUTIERREZ - SALAS\",\"displayName\":\"637 - GUTIERREZ - SALAS\",\"email\":\"\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"637\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":8,\"username\":\"lmorenog@emba.com\",\"email\":\"lmorenog@emba.com\",\"fullName\":\"Luis Moreno Gutierrez\",\"shortName\":\"lmoreno\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"724\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Handson Systems\",\"trade_name\":\"Handson Systems\",\"displayName\":\"749 - Handson Systems\",\"email\":\"gippo@drgomez.ch\",\"phone\":\"(356) 2722 4445\",\"address\":\"HandsOn Systems Ltd. MST26 Mosta Techno Park Mosta\",\"city\":\"\",\"state\":\"\",\"country\":\"Malta\",\"postal_code\":\"\",\"nit\":\"749\",\"primary_external_code\":\"749\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"725\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"HEIDI MONASTERIOS\",\"trade_name\":\"HEIDI MONASTERIOS\",\"displayName\":\"642 - HEIDI MONASTERIOS\",\"email\":\"cm.monasterios.aguilar@gmail.com\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"642\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":8,\"username\":\"lmorenog@emba.com\",\"email\":\"lmorenog@emba.com\",\"fullName\":\"Luis Moreno Gutierrez\",\"shortName\":\"lmoreno\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"726\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Hogan Lovells\",\"trade_name\":\"Hogan Lovells\",\"displayName\":\"867 - Hogan Lovells\",\"email\":\"edgar.mata@hoganlovells.com\",\"phone\":\"52555100000000000\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"M\\u00e9xico\",\"postal_code\":\"\",\"nit\":\"867\",\"primary_external_code\":\"867\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":8,\"username\":\"lmorenog@emba.com\",\"email\":\"lmorenog@emba.com\",\"fullName\":\"Luis Moreno Gutierrez\",\"shortName\":\"lmoreno\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"727\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"IBERDROLA\",\"trade_name\":\"IBERDROLA\",\"displayName\":\"663 - IBERDROLA\",\"email\":\"\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"663\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"728\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"IPG LEX\",\"trade_name\":\"IPG LEX\",\"displayName\":\"843 - IPG LEX\",\"email\":\"giovanni.izzo@ipglex.it\",\"phone\":\"39064500000000000\",\"address\":\"Via di Monte Giordano, 36 - 00186 Roma\",\"city\":\"\",\"state\":\"\",\"country\":\"Italia\",\"postal_code\":\"\",\"nit\":\"843\",\"primary_external_code\":\"843\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"730\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"JIA YUAN LAW OFFICES\",\"trade_name\":\"JIA YUAN LAW OFFICES\",\"displayName\":\"830 - JIA YUAN LAW OFFICES\",\"email\":\"wangshini@jiayuan-law.com\",\"phone\":\"T: +86 10 6641 3377\",\"address\":\"F408, Ocean Plaza 158 Fuxing Men Nei Street, Xiche\",\"city\":\"\",\"state\":\"\",\"country\":\"China\",\"postal_code\":\"\",\"nit\":\"830\",\"primary_external_code\":\"830\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"731\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Johnson \\u0026 Johnson MedTech Southern Cluster\",\"trade_name\":\"Johnson \\u0026 Johnson MedTech Southern Cluster\",\"displayName\":\"885 - Johnson \\u0026 Johnson MedTech Southern Cluster\",\"email\":\"mszylko@its.jnj.com\",\"phone\":\"+54911 2866 1660\",\"address\":\"Buenos Aires, Argentina\",\"city\":\"\",\"state\":\"\",\"country\":\"Argentina\",\"postal_code\":\"\",\"nit\":\"885\",\"primary_external_code\":\"885\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"732\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Jones Day\",\"trade_name\":\"Jones Day\",\"displayName\":\"784 - Jones Day\",\"email\":\"jcquinzanos@jonesday.com\",\"phone\":\"5255300000000000\",\"address\":\"Paseo De La Reforma 342 piso 30 colonia Ju\\u00e1rez\",\"city\":\"\",\"state\":\"\",\"country\":\"M\\u00e9xico\",\"postal_code\":\"\",\"nit\":\"784\",\"primary_external_code\":\"784\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"733\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"JORGE ALBERTO MEALLA ECHAZU\",\"trade_name\":\"JORGE ALBERTO MEALLA ECHAZU\",\"displayName\":\"650 - JORGE ALBERTO MEALLA ECHAZU\",\"email\":\"\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"650\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"734\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"JOSE LUIS DIAS\",\"trade_name\":\"JOSE LUIS DIAS\",\"displayName\":\"708 - JOSE LUIS DIAS\",\"email\":\"\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"708\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"735\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"JUSTO SUAREZ\",\"trade_name\":\"JUSTO SUAREZ\",\"displayName\":\"647 - JUSTO SUAREZ\",\"email\":\"justosuarezc@gmail.com\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"647\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"736\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Kuraray\",\"trade_name\":\"Kuraray\",\"displayName\":\"808 - Kuraray\",\"email\":\"Isabel.Mello@kuraray.com\",\"phone\":\"+55 (11) 2615-3531\",\"address\":\"Av. Paulista, 1636 \\u2013 sala 405- CEP 01310-200 \\u2013 S\\u00e3o\",\"city\":\"\",\"state\":\"\",\"country\":\"Brasil\",\"postal_code\":\"\",\"nit\":\"808\",\"primary_external_code\":\"808\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"737\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"LABORATORIOS HIPRA\",\"trade_name\":\"LABORATORIOS HIPRA\",\"displayName\":\"668 - LABORATORIOS HIPRA\",\"email\":\"\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"668\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"738\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Lacaz Martins Pereira Neto, Gurevich \\u0026 Schoueri\",\"trade_name\":\"Lacaz Martins Pereira Neto, Gurevich \\u0026 Schoueri\",\"displayName\":\"738 - Lacaz Martins Pereira Neto, Gurevich \\u0026 Schoueri\",\"email\":\"usuario@ejemplo.com\",\"phone\":\"+55 11 38970151\",\"address\":\"Rua Padre Jo\\u00e3o Manoel, 923 \\u2013 8\\u00ba Andar 01411-001 \\u2013\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"738\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":12,\"username\":\"tmercado@emba.com\",\"email\":\"tmercado@emba.com\",\"fullName\":\"Teddy Alberto Mercado Carrion\",\"shortName\":\"tmercado\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"739\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"LACOSTE\",\"trade_name\":\"LACOSTE\",\"displayName\":\"641 - LACOSTE\",\"email\":\"\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"641\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":23,\"username\":\"fsanchez@emba.com\",\"email\":\"fsanchez@emba.com\",\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"shortName\":\"fsanchez\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"740\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Latham \\u0026 Watkins (UK)\",\"trade_name\":\"Latham \\u0026 Watkins (UK)\",\"displayName\":\"881 - Latham \\u0026 Watkins (UK)\",\"email\":\"Imaan.Nazir@lw.com\",\"phone\":\"Latham \\u0026 Watkins\",\"address\":\"99 Bishopsgate. London EC2M 3XF, United Kingdom\",\"city\":\"\",\"state\":\"\",\"country\":\"Reino Unido\",\"postal_code\":\"\",\"nit\":\"881\",\"primary_external_code\":\"881\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":18,\"username\":\"flanda@emba.com\",\"email\":\"flanda@emba.com\",\"fullName\":\"Carlos Fernando Landa Alejandro\",\"shortName\":\"flanda\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"741\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"LEXVALOR\",\"trade_name\":\"LEXVALOR\",\"displayName\":\"853 - LEXVALOR\",\"email\":\"lmarin@lexvalor.com\",\"phone\":\"(+593 2) 323 0375\",\"address\":\"Av. 12 de Octubre N24-774 y Coru\\u00f1a Ed. Urban Plaza\",\"city\":\"\",\"state\":\"\",\"country\":\"Ecuador\",\"postal_code\":\"\",\"nit\":\"853\",\"primary_external_code\":\"853\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"743\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Lilac Solutions, Inc.\",\"trade_name\":\"Lilac Solutions, Inc.\",\"displayName\":\"876 - Lilac Solutions, Inc.\",\"email\":\"abrockmann@yahoo.com\",\"phone\":\"56996294446\",\"address\":\"Condominio Santos Dumont A - 205,\\u00a0Santa Cruz, Boli\",\"city\":\"La Paz\",\"state\":\"La Paz\",\"country\":\"Bolivia\",\"postal_code\":\"009999\",\"nit\":\"876\",\"primary_external_code\":\"876\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2025-02-12 13:02:29\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"744\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"LOCKE LORD LLP\",\"trade_name\":\"LOCKE LORD LLP\",\"displayName\":\"718 - LOCKE LORD LLP\",\"email\":\"theresa.feliciano@lockelord.com\",\"phone\":\"(214) 740-8000\",\"address\":\"2200 Ross Ave Ste 2800 Dallas?, TX, 75201-2750 Uni\",\"city\":\"\",\"state\":\"\",\"country\":\"Estados Unidos\",\"postal_code\":\"\",\"nit\":\"718\",\"primary_external_code\":\"718\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"745\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"LORENZETTI\",\"trade_name\":\"LORENZETTI\",\"displayName\":\"639 - LORENZETTI\",\"email\":\"\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"639\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"746\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"LOYRA ABOGADOS\",\"trade_name\":\"LOYRA ABOGADOS\",\"displayName\":\"862 - LOYRA ABOGADOS\",\"email\":\"cristina.romero@loyra.com\",\"phone\":\"54915706687\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Espa\\u00f1a\",\"postal_code\":\"\",\"nit\":\"862\",\"primary_external_code\":\"862\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":8,\"username\":\"lmorenog@emba.com\",\"email\":\"lmorenog@emba.com\",\"fullName\":\"Luis Moreno Gutierrez\",\"shortName\":\"lmoreno\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"747\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"MACALLUM GROUP LTD\",\"trade_name\":\"MACALLUM GROUP LTD\",\"displayName\":\"791 - MACALLUM GROUP LTD\",\"email\":\"smahoney@macallum.com.au\",\"phone\":\"61-861442444\",\"address\":\"11 MOREAU MEWS APPLECROSS?, WESTERN AUSTRALIA, 615\",\"city\":\"\",\"state\":\"\",\"country\":\"Australia\",\"postal_code\":\"\",\"nit\":\"791\",\"primary_external_code\":\"791\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"748\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Macanudo (Laboratorios Sanfer - Corex)\",\"trade_name\":\"Macanudo (Laboratorios Sanfer - Corex)\",\"displayName\":\"815 - Macanudo (Laboratorios Sanfer - Corex)\",\"email\":\"pamela.desentis@corex.com.mx\",\"phone\":\"(+52) 55 54815500 Ex\",\"address\":\"Blvd. Adolfo L\\u00f3pez Mateos 314, Tlacopac, 01049 Ciu\",\"city\":\"\",\"state\":\"\",\"country\":\"M\\u00e9xico\",\"postal_code\":\"\",\"nit\":\"815\",\"primary_external_code\":\"815\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"749\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"MARGA JULIE LUX DE SAAVEDRA\",\"trade_name\":\"MARGA JULIE LUX DE SAAVEDRA\",\"displayName\":\"688 - MARGA JULIE LUX DE SAAVEDRA\",\"email\":\"marcelo.cuadros.s@gmail.com\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"688\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"750\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Maria Jose Granier\",\"trade_name\":\"Maria Jose Granier\",\"displayName\":\"725 - Maria Jose Granier\",\"email\":\"mjgranier@gmail.com\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"725\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"751\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Mattos Filho\",\"trade_name\":\"Mattos Filho\",\"displayName\":\"763 - Mattos Filho\",\"email\":\"thiago.sombra@mattosfilho.com.br\",\"phone\":\"+55 11 3147 7600\",\"address\":\"Al. Joaquim Eug\\u00eanio de Lima, 447 S\\u00e3o Paulo SP CEP\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"763\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"752\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"MERCK\",\"trade_name\":\"MERCK\",\"displayName\":\"658 - MERCK\",\"email\":\"\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"658\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"753\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Milicom International Services LLC\",\"trade_name\":\"Milicom International Services LLC\",\"displayName\":\"866 - Milicom International Services LLC\",\"email\":\"Salvador.Escalon@Millicom.com\",\"phone\":\"+1 786 628 5325\",\"address\":\"255 Giralda Avenue, 8th fl. Coral Gables, Fl 33134\",\"city\":\"\",\"state\":\"\",\"country\":\"Estados Unidos\",\"postal_code\":\"\",\"nit\":\"866\",\"primary_external_code\":\"866\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"754\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"MITSUI SUMITOMO INSURANCE COMPANY LTD (MSIJ)\",\"trade_name\":\"MITSUI SUMITOMO INSURANCE COMPANY LTD (MSIJ)\",\"displayName\":\"711 - MITSUI SUMITOMO INSURANCE COMPANY LTD (MSIJ)\",\"email\":\"usuario@ejemplo.com\",\"phone\":\"44 (0)207 977 8321\",\"address\":\"2nd Floor, 25 Fenchurch Avenue, London , EC3M 5AD,\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"711\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"755\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"MLU AFRICA B.V.\",\"trade_name\":\"MLU AFRICA B.V.\",\"displayName\":\"883 - MLU AFRICA B.V.\",\"email\":\"alvaro@yango.com\",\"phone\":\"\",\"address\":\"Schiphol Boulevard 291, 1118 BH Schiphol\",\"city\":\"\",\"state\":\"\",\"country\":\"Pa\\u00edses Bajos\",\"postal_code\":\"\",\"nit\":\"883\",\"primary_external_code\":\"883\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":12,\"username\":\"tmercado@emba.com\",\"email\":\"tmercado@emba.com\",\"fullName\":\"Teddy Alberto Mercado Carrion\",\"shortName\":\"tmercado\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"756\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"MOFER SOLAR\",\"trade_name\":\"MOFER SOLAR\",\"displayName\":\"730 - MOFER SOLAR\",\"email\":\"mariajose.duran@mofersolar.com\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"334496025\",\"primary_external_code\":\"730\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"757\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"MORRISON \\u0026 FOESTER LLP\",\"trade_name\":\"MORRISON \\u0026 FOESTER LLP\",\"displayName\":\"732 - MORRISON \\u0026 FOESTER LLP\",\"email\":\"usuario@ejemplo.com\",\"phone\":\"(617) 648-4700\",\"address\":\"John Hancock Tower 200 Clarendon Street, Floor 20\",\"city\":\"\",\"state\":\"\",\"country\":\"Estados Unidos\",\"postal_code\":\"\",\"nit\":\"732\",\"primary_external_code\":\"732\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"758\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"NIELSEN COMPANY.\",\"trade_name\":\"NIELSEN COMPANY.\",\"displayName\":\"712 - NIELSEN COMPANY.\",\"email\":\"usuario@ejemplo.com\",\"phone\":\"\",\"address\":\"85 Broad Street New York, NY 10004\",\"city\":\"\",\"state\":\"\",\"country\":\"Estados Unidos\",\"postal_code\":\"\",\"nit\":\"712\",\"primary_external_code\":\"712\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"759\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"NIKE INTERNATIONAL\",\"trade_name\":\"NIKE INTERNATIONAL\",\"displayName\":\"640 - NIKE INTERNATIONAL\",\"email\":\"usuario@ejemplo.com\",\"phone\":\"+56 2 23662700\",\"address\":\"Nike Chile Av. Isidora Goyenechea 3365 - 1er piso\",\"city\":\"\",\"state\":\"\",\"country\":\"Chile\",\"postal_code\":\"\",\"nit\":\"640\",\"primary_external_code\":\"640\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"760\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Nina Tamayo\",\"trade_name\":\"Nina Tamayo\",\"displayName\":\"775 - Nina Tamayo\",\"email\":\"tamayonina@gmail.com\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"775\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":9,\"username\":\"paramayo@emba.com\",\"email\":\"paramayo@emba.com\",\"fullName\":\"Paul Aramayo Salinas\",\"shortName\":\"paramayo\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"761\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"NORTON ROSE FULBRIGHT LLP\",\"trade_name\":\"NORTON ROSE FULBRIGHT LLP\",\"displayName\":\"742 - NORTON ROSE FULBRIGHT LLP\",\"email\":\"ben.wright@nortonrosefulbright.com\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Reino Unido\",\"postal_code\":\"\",\"nit\":\"742\",\"primary_external_code\":\"742\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"762\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"NOV LP\",\"trade_name\":\"NOV LP\",\"displayName\":\"714 - NOV LP\",\"email\":\"usuario@ejemplo.com\",\"phone\":\"67700003\",\"address\":\"5to. Anillo V\\u00eda Perimetral Externa, Parque Industr\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"714\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":17,\"username\":\"aaraoz@emba.com\",\"email\":\"aaraoz@emba.com\",\"fullName\":\"Alvaro Araoz Ardaya\",\"shortName\":\"aaraoz\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-12-04 15:29:19\",\"daysAllow\":302}},{\"id\":\"763\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Novo Nordisk Panam\\u00e1 S.A.\",\"trade_name\":\"Novo Nordisk Panam\\u00e1 S.A.\",\"displayName\":\"835 - Novo Nordisk Panam\\u00e1 S.A.\",\"email\":\"aotm@novonordisk.com\",\"phone\":\"5073772259\",\"address\":\"Panam\\u00e1\",\"city\":\"\",\"state\":\"\",\"country\":\"Panam\\u00e1\",\"postal_code\":\"\",\"nit\":\"835\",\"primary_external_code\":\"835\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"765\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"oderbrecht\",\"trade_name\":\"oderbrecht\",\"displayName\":\"660 - oderbrecht\",\"email\":\"\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"660\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"766\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Oilfield Group\",\"trade_name\":\"Oilfield Group\",\"displayName\":\"831 - Oilfield Group\",\"email\":\"jpantoja@oilfield.mx\",\"phone\":\"3537878\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"M\\u00e9xico\",\"postal_code\":\"\",\"nit\":\"831\",\"primary_external_code\":\"831\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":8,\"username\":\"lmorenog@emba.com\",\"email\":\"lmorenog@emba.com\",\"fullName\":\"Luis Moreno Gutierrez\",\"shortName\":\"lmoreno\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"767\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"OLMEDO ABOGADOS\",\"trade_name\":\"OLMEDO ABOGADOS\",\"displayName\":\"785 - OLMEDO ABOGADOS\",\"email\":\"vescobar@olmedo.com.py\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"785\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"768\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"PAN AMERICAN ENERGY LLC\",\"trade_name\":\"PAN AMERICAN ENERGY LLC\",\"displayName\":\"633 - PAN AMERICAN ENERGY LLC\",\"email\":\"\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"633\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"769\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"PANAMERICAN SILVER CORPORATION\",\"trade_name\":\"PANAMERICAN SILVER CORPORATION\",\"displayName\":\"631 - PANAMERICAN SILVER CORPORATION\",\"email\":\"lcollarte@panamericansilver.com\",\"phone\":\"22 796990\",\"address\":\"Ave. Fuerza Naval No. 500 Esq. Calle 20 de Calacot\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99011\",\"primary_external_code\":\"631\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":17,\"username\":\"aaraoz@emba.com\",\"email\":\"aaraoz@emba.com\",\"fullName\":\"Alvaro Araoz Ardaya\",\"shortName\":\"aaraoz\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-12-04 15:29:19\",\"daysAllow\":302}},{\"id\":\"770\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Philippi, Prietocarrizosa, Ferrero DU \\u0026amp; Ur\\u00eda\",\"trade_name\":\"Philippi, Prietocarrizosa, Ferrero DU \\u0026amp; Ur\\u00eda\",\"displayName\":\"854 - Philippi, Prietocarrizosa, Ferrero DU \\u0026 Ur\\u00eda\",\"email\":\"alejandro.medina@ppulegal.com\",\"phone\":\"+57 1 3268600\",\"address\":\"Carrera 9 # 74?08 Of. 105 Bogot\\u00e1 D.C. , Colombia\",\"city\":\"\",\"state\":\"\",\"country\":\"Colombia\",\"postal_code\":\"\",\"nit\":\"854\",\"primary_external_code\":\"854\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"771\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"PLUMROSE LATINOAMERICANA\",\"trade_name\":\"PLUMROSE LATINOAMERICANA\",\"displayName\":\"710 - PLUMROSE LATINOAMERICANA\",\"email\":\"mbello@plumrose.com\",\"phone\":\"58-2122738711\",\"address\":\"Prolongacion Ave Trieste con Calle Miranda CARACAS\",\"city\":\"\",\"state\":\"\",\"country\":\"Venezuela\",\"postal_code\":\"\",\"nit\":\"710\",\"primary_external_code\":\"710\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":6,\"username\":\"darredondo@emba.com.bo\",\"email\":\"nicoln042001@gmail.com\",\"fullName\":\"Daniel Marcelo Arredondo Zelada\",\"shortName\":\"darredon\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-03 11:43:07\",\"daysAllow\":302}},{\"id\":\"772\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Plumrose Latinoamericana, C.A.\",\"trade_name\":\"Plumrose Latinoamericana, C.A.\",\"displayName\":\"766 - Plumrose Latinoamericana, C.A.\",\"email\":\"mbello@plumrose.com\",\"phone\":\"58-2122738711\",\"address\":\"Prolongacion Ave Trieste con Calle Miranda CARACAS\",\"city\":\"\",\"state\":\"\",\"country\":\"Venezuela\",\"postal_code\":\"\",\"nit\":\"766\",\"primary_external_code\":\"766\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"773\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Priority Build, LLC\",\"trade_name\":\"Priority Build, LLC\",\"displayName\":\"887 - Priority Build, LLC\",\"email\":\"jammil.handal@prth.com\",\"phone\":\"19259635448\",\"address\":\"Westside Parkway, Suite 155 Alpharetta, GA 30004\",\"city\":\"\",\"state\":\"\",\"country\":\"Estados Unidos\",\"postal_code\":\"\",\"nit\":\"887\",\"primary_external_code\":\"887\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":13,\"username\":\"cdelgado@emba.com\",\"email\":\"cdelgado@emba.com\",\"fullName\":\"Cristhian Delgado Ramirez\",\"shortName\":\"cdelgado\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"774\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Proplant INC\",\"trade_name\":\"Proplant INC\",\"displayName\":\"733 - Proplant INC\",\"email\":\"Murthy@proplantinc.com\",\"phone\":\"+1 281-444-7715\",\"address\":\"15603 Kuykendahl Rd # 320, Houston, TX 77090,\",\"city\":\"\",\"state\":\"\",\"country\":\"Estados Unidos\",\"postal_code\":\"\",\"nit\":\"733\",\"primary_external_code\":\"733\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"775\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"RAMIRO MARTINEZ PAZ\",\"trade_name\":\"RAMIRO MARTINEZ PAZ\",\"displayName\":\"655 - RAMIRO MARTINEZ PAZ\",\"email\":\"martipazsa@hotmail.com\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"655\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":9,\"username\":\"paramayo@emba.com\",\"email\":\"paramayo@emba.com\",\"fullName\":\"Paul Aramayo Salinas\",\"shortName\":\"paramayo\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"776\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"REPOSOL BOLIVIA\",\"trade_name\":\"REPOSOL BOLIVIA\",\"displayName\":\"661 - REPOSOL BOLIVIA\",\"email\":\"NDABDOUBL@repsol.com\",\"phone\":\"3660000\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1027377023\",\"primary_external_code\":\"661\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"777\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"RINTI S.A.\",\"trade_name\":\"RINTI S.A.\",\"displayName\":\"771 - RINTI S.A.\",\"email\":\"dcalmet@garciasayan.com.pe\",\"phone\":\"359-0044 \\/ 715-0300\",\"address\":\"Carretera Central km 17.5 Ate \\/ Lima - Per\\u00fa\",\"city\":\"\",\"state\":\"\",\"country\":\"Per\\u00fa\",\"postal_code\":\"\",\"nit\":\"771\",\"primary_external_code\":\"771\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"778\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"ROBERT MAYER\",\"trade_name\":\"ROBERT MAYER\",\"displayName\":\"646 - ROBERT MAYER\",\"email\":\"Robert.Mayers@effem.com\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"646\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"779\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"ROBERTO BARBERY\",\"trade_name\":\"ROBERTO BARBERY\",\"displayName\":\"638 - ROBERTO BARBERY\",\"email\":\"robybarbery@hotmail.com\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"638\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":12,\"username\":\"tmercado@emba.com\",\"email\":\"tmercado@emba.com\",\"fullName\":\"Teddy Alberto Mercado Carrion\",\"shortName\":\"tmercado\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"780\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Rovella Carranza\",\"trade_name\":\"Rovella Carranza\",\"displayName\":\"764 - Rovella Carranza\",\"email\":\"felopez@rovellacarranza.com.ar\",\"phone\":\"011 4342 2845\\/46\",\"address\":\"Moreno 970 , Piso 4 Of 81 Buenos Aires \\u2013 Argentina\",\"city\":\"\",\"state\":\"\",\"country\":\"Argentina\",\"postal_code\":\"\",\"nit\":\"764\",\"primary_external_code\":\"764\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"781\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"RPC\",\"trade_name\":\"RPC\",\"displayName\":\"829 - RPC\",\"email\":\"naomi.vary@rpc.co.uk\",\"phone\":\"42030606522\",\"address\":\"Londres\",\"city\":\"\",\"state\":\"\",\"country\":\"Reino Unido\",\"postal_code\":\"\",\"nit\":\"829\",\"primary_external_code\":\"829\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"782\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"S\\u0026P Global Inc. (Platts)\",\"trade_name\":\"S\\u0026P Global Inc. (Platts)\",\"displayName\":\"874 - S\\u0026P Global Inc. (Platts)\",\"email\":\"jerry.saliman@spglobal.com\",\"phone\":\"+54 911 6360 9540\",\"address\":\"55 Water Street New York, New York 10041\",\"city\":\"\",\"state\":\"\",\"country\":\"Estados Unidos\",\"postal_code\":\"\",\"nit\":\"874\",\"primary_external_code\":\"874\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":18,\"username\":\"flanda@emba.com\",\"email\":\"flanda@emba.com\",\"fullName\":\"Carlos Fernando Landa Alejandro\",\"shortName\":\"flanda\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"784\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"SAF Group\",\"trade_name\":\"SAF Group\",\"displayName\":\"890 - SAF Group\",\"email\":\"khickey@safgroup.ca\",\"phone\":\"\",\"address\":\"Vancouver: 450 Commerce Place, 400 Burrard St, Van\",\"city\":\"\",\"state\":\"\",\"country\":\"Canad\\u00e1\",\"postal_code\":\"\",\"nit\":\"890\",\"primary_external_code\":\"890\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":6,\"username\":\"darredondo@emba.com.bo\",\"email\":\"nicoln042001@gmail.com\",\"fullName\":\"Daniel Marcelo Arredondo Zelada\",\"shortName\":\"darredon\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-03 11:43:07\",\"daysAllow\":302}},{\"id\":\"785\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Sany International Development Limited\",\"trade_name\":\"Sany International Development Limited\",\"displayName\":\"878 - Sany International Development Limited\",\"email\":\"tangxh9@sany.com.cn\",\"phone\":\"+86 18570322085\",\"address\":\"1st Floor, Wemore, Sany Industry Factory, Economic\",\"city\":\"\",\"state\":\"\",\"country\":\"China\",\"postal_code\":\"\",\"nit\":\"878\",\"primary_external_code\":\"878\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"786\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"SERCA LTDA\",\"trade_name\":\"SERCA LTDA\",\"displayName\":\"652 - SERCA LTDA\",\"email\":\"usuario@ejemplo.com\",\"phone\":\"3517712\",\"address\":\"4to Anillo entre Av. Pirai y Radial 17 1\\/2 #8785\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"652\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"787\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"SHARMA\",\"trade_name\":\"SHARMA\",\"displayName\":\"643 - SHARMA\",\"email\":\"usuario@ejemplo.com\",\"phone\":\"2852347\",\"address\":\"Av. 6 de marzo nro 100 El Alto, Bolivia\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"643\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"788\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"SMOKEHOUSE DE BOLIVIA S.R.L.\",\"trade_name\":\"SMOKEHOUSE DE BOLIVIA S.R.L.\",\"displayName\":\"779 - SMOKEHOUSE DE BOLIVIA S.R.L.\",\"email\":\"scottb@cls123.com\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"779\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"789\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"SOCIETE GENERALE\",\"trade_name\":\"SOCIETE GENERALE\",\"displayName\":\"723 - SOCIETE GENERALE\",\"email\":\"rguerrero@guerrero.cl\",\"phone\":\"2824160\",\"address\":\"Cl. 10 No. 115 Carretera A Oruro\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"723\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"790\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"SOGAZ S.A.A.\",\"trade_name\":\"SOGAZ S.A.A.\",\"displayName\":\"669 - SOGAZ S.A.A.\",\"email\":\"\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"669\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"791\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"SOINTA LTDA\",\"trade_name\":\"SOINTA LTDA\",\"displayName\":\"653 - SOINTA LTDA\",\"email\":\"estagas@estagas.com\",\"phone\":\"6653771\",\"address\":\"Av. Circunvalacion N\\u00b0 S\\/n Zona: Morros Blancos Tar\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"182298027\",\"primary_external_code\":\"653\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"792\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Solomon Bokchin\",\"trade_name\":\"Solomon Bokchin\",\"displayName\":\"872 - Solomon Bokchin\",\"email\":\"sbokchin@gmail.com\",\"phone\":\"19177714310\",\"address\":\"1229 39 st Brooklyn NY 11218\",\"city\":\"\",\"state\":\"\",\"country\":\"Estados Unidos\",\"postal_code\":\"\",\"nit\":\"872\",\"primary_external_code\":\"872\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"793\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"SONY MUSIC ENTERTAINMENT CHILE S.A.\",\"trade_name\":\"SONY MUSIC ENTERTAINMENT CHILE S.A.\",\"displayName\":\"776 - SONY MUSIC ENTERTAINMENT CHILE S.A.\",\"email\":\"Arturo.Valverde@sonymusic.com\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"776\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":15,\"username\":\"nezegarra@emba.com\",\"email\":\"nezegarra@emba.com\",\"fullName\":\"Natalio Eduardo Zegarra Ribera\",\"shortName\":\"nzegarra\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"794\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Starr Companies\",\"trade_name\":\"Starr Companies\",\"displayName\":\"842 - Starr Companies\",\"email\":\"eva.flores@starrcompanies.com\",\"phone\":\"+1 (305) 202-4256\",\"address\":\"175 SW 7th Street - Suite 2401, Miami, FL 33130\",\"city\":\"\",\"state\":\"\",\"country\":\"Estados Unidos\",\"postal_code\":\"\",\"nit\":\"842\",\"primary_external_code\":\"842\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"795\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Sun Chemical Latin America\",\"trade_name\":\"Sun Chemical Latin America\",\"displayName\":\"811 - Sun Chemical Latin America\",\"email\":\"priscila.coelho@sunchemical.com\",\"phone\":\"55112500000000000\",\"address\":\"Avenida Justino de Maio, 100 Guarulhos, SP 07222-0\",\"city\":\"\",\"state\":\"\",\"country\":\"Brasil\",\"postal_code\":\"\",\"nit\":\"811\",\"primary_external_code\":\"811\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"796\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"SYSDE\",\"trade_name\":\"SYSDE\",\"displayName\":\"724 - SYSDE\",\"email\":\"mmurillo@sysde.com\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"724\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"797\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"TBL LICENSING LLC\",\"trade_name\":\"TBL LICENSING LLC\",\"displayName\":\"657 - TBL LICENSING LLC\",\"email\":\"usuario@ejemplo.com\",\"phone\":\"(603) 772-9500\",\"address\":\"200 Domain Dr Stratham?, NH, 03885-2575 United Sta\",\"city\":\"\",\"state\":\"\",\"country\":\"Estados Unidos\",\"postal_code\":\"\",\"nit\":\"657\",\"primary_external_code\":\"657\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":20,\"username\":\"jpzegada@emba.com\",\"email\":\"jpzegada@emba.com\",\"fullName\":\"Juan Pablo Zegada\",\"shortName\":\"jzegada\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:15\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"798\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Tecnoglass\",\"trade_name\":\"Tecnoglass\",\"displayName\":\"727 - Tecnoglass\",\"email\":\"andrea.zambrano@tecnoglass.com\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"727\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"799\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"TEOMA\",\"trade_name\":\"TEOMA\",\"displayName\":\"817 - TEOMA\",\"email\":\"lucia.gonzales@teoma.pe\",\"phone\":\"51934857988\",\"address\":\"Lima\",\"city\":\"\",\"state\":\"\",\"country\":\"Per\\u00fa\",\"postal_code\":\"\",\"nit\":\"817\",\"primary_external_code\":\"817\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"800\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"TGI Fridays\",\"trade_name\":\"TGI Fridays\",\"displayName\":\"792 - TGI Fridays\",\"email\":\"Aymee.Valdivia@hklaw.com\",\"phone\":\"3226631\",\"address\":\"Av. San Martin Esq. 4 Anillo, Ventura Mall\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99011\",\"primary_external_code\":\"792\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"801\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"The Bank of Nova Scotia\",\"trade_name\":\"The Bank of Nova Scotia\",\"displayName\":\"877 - The Bank of Nova Scotia\",\"email\":\"spencer.paveck@whitecase.com\",\"phone\":\"T +1 212 819 7683\",\"address\":\"Asamblea de la Colonia Brit\\u00e1nica Colonia de Nueva\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"877\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":12,\"username\":\"tmercado@emba.com\",\"email\":\"tmercado@emba.com\",\"fullName\":\"Teddy Alberto Mercado Carrion\",\"shortName\":\"tmercado\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"802\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"The Richline Group , A Berkshire Hathaway Company\",\"trade_name\":\"The Richline Group , A Berkshire Hathaway Company\",\"displayName\":\"761 - The Richline Group , A Berkshire Hathaway Company\",\"email\":\"sevangelista@leachgarner.com\",\"phone\":\"5912791554\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"761\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"803\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"The Stars Group\",\"trade_name\":\"The Stars Group\",\"displayName\":\"794 - The Stars Group\",\"email\":\"Eric.Frank@starsgroup.com\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Canad\\u00e1\",\"postal_code\":\"\",\"nit\":\"99011\",\"primary_external_code\":\"794\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"804\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"TIPIEL S.A.\",\"trade_name\":\"TIPIEL S.A.\",\"displayName\":\"762 - TIPIEL S.A.\",\"email\":\"natalia.davila@dentons.com\",\"phone\":\"57-13320218\",\"address\":\"CALLE 38 8 62 BOGOTA?, D.C.Colombia\",\"city\":\"\",\"state\":\"\",\"country\":\"Colombia\",\"postal_code\":\"\",\"nit\":\"762\",\"primary_external_code\":\"762\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":6,\"username\":\"darredondo@emba.com.bo\",\"email\":\"nicoln042001@gmail.com\",\"fullName\":\"Daniel Marcelo Arredondo Zelada\",\"shortName\":\"darredon\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-03 11:43:07\",\"daysAllow\":302}},{\"id\":\"805\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"TRANSAMERICA LIFE BERMUDA LTD\",\"trade_name\":\"TRANSAMERICA LIFE BERMUDA LTD\",\"displayName\":\"868 - TRANSAMERICA LIFE BERMUDA LTD\",\"email\":\"Anna.Saing@transamerica.com\",\"phone\":\"85225060311\",\"address\":\"58\\/F One Island East, 18 Westlands Road Island Eas\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"868\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"806\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Unosquare\",\"trade_name\":\"Unosquare\",\"displayName\":\"863 - Unosquare\",\"email\":\"gian.divece@unosquare.com\",\"phone\":\"\",\"address\":\"Portland\\/SW Washington 4800 Meadows Road, Suite 30\",\"city\":\"\",\"state\":\"\",\"country\":\"Estados Unidos\",\"postal_code\":\"\",\"nit\":\"863\",\"primary_external_code\":\"863\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":12,\"username\":\"tmercado@emba.com\",\"email\":\"tmercado@emba.com\",\"fullName\":\"Teddy Alberto Mercado Carrion\",\"shortName\":\"tmercado\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"807\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"VAMED\",\"trade_name\":\"VAMED\",\"displayName\":\"837 - VAMED\",\"email\":\"Alexander.MAHOVSKY@vamed.com\",\"phone\":\"T +43 1 601 27-208\",\"address\":\"Sterngasse 5 A-1230 Vienna Austria\",\"city\":\"\",\"state\":\"\",\"country\":\"Austria\",\"postal_code\":\"\",\"nit\":\"837\",\"primary_external_code\":\"837\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":10,\"username\":\"rclaure@emba.com\",\"email\":\"rclaure@emba.com\",\"fullName\":\"Rene Claure Veizaga\",\"shortName\":\"rclaure\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"808\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Vestas Mediterranean\",\"trade_name\":\"Vestas Mediterranean\",\"displayName\":\"735 - Vestas Mediterranean\",\"email\":\"IRPRO@vestas.com\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"735\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":8,\"username\":\"lmorenog@emba.com\",\"email\":\"lmorenog@emba.com\",\"fullName\":\"Luis Moreno Gutierrez\",\"shortName\":\"lmoreno\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"809\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"WESTERN UNION\",\"trade_name\":\"WESTERN UNION\",\"displayName\":\"644 - WESTERN UNION\",\"email\":\"usuario@ejemplo.com\",\"phone\":\"3339723\",\"address\":\"Ave Melchor Pinto 665, Santa Cruz de la Sierra\",\"city\":\"LA PAZ\",\"state\":\"LA PAZ\",\"country\":\"Bolivia\",\"postal_code\":\"00000\",\"nit\":\"99001\",\"primary_external_code\":\"644\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-10-24 10:31:51\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"810\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Westland Construction Inc.\",\"trade_name\":\"Westland Construction Inc.\",\"displayName\":\"891 - Westland Construction Inc.\",\"email\":\"jkemp@westlandconstruction.com\",\"phone\":\"+1 801.8220.5606\",\"address\":\"1411 West 1250 South Ste 200 Orem, Utah 84058\",\"city\":\"\",\"state\":\"\",\"country\":\"Estados Unidos\",\"postal_code\":\"\",\"nit\":\"891\",\"primary_external_code\":\"891\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":12,\"username\":\"tmercado@emba.com\",\"email\":\"tmercado@emba.com\",\"fullName\":\"Teddy Alberto Mercado Carrion\",\"shortName\":\"tmercado\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"811\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"White \\u0026 Case\",\"trade_name\":\"White \\u0026 Case\",\"displayName\":\"737 - White \\u0026 Case\",\"email\":\"usuario@ejemplo.com\",\"phone\":\"+ 55 11 3147 5600\",\"address\":\"Av. Brig. Faria Lima, 2.277 \\u2013 4th Floor S\\u00e3o Paulo\",\"city\":\"\",\"state\":\"\",\"country\":\"Brasil\",\"postal_code\":\"\",\"nit\":\"737\",\"primary_external_code\":\"737\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":8,\"username\":\"lmorenog@emba.com\",\"email\":\"lmorenog@emba.com\",\"fullName\":\"Luis Moreno Gutierrez\",\"shortName\":\"lmoreno\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"812\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"White \\u0026 Case \\/ Bridgestone Corporation\",\"trade_name\":\"White \\u0026 Case \\/ Bridgestone Corporation\",\"displayName\":\"780 - White \\u0026 Case \\/ Bridgestone Corporation\",\"email\":\"wmoran@whitecase.com\",\"phone\":\"+1 617 979 9300\",\"address\":\"75 State Street Boston, Massachusetts 02109-1814 U\",\"city\":\"\",\"state\":\"\",\"country\":\"Estados Unidos\",\"postal_code\":\"\",\"nit\":\"780\",\"primary_external_code\":\"780\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":13,\"username\":\"cdelgado@emba.com\",\"email\":\"cdelgado@emba.com\",\"fullName\":\"Cristhian Delgado Ramirez\",\"shortName\":\"cdelgado\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"813\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"YINGLY SOLAR\",\"trade_name\":\"YINGLY SOLAR\",\"displayName\":\"635 - YINGLY SOLAR\",\"email\":\"commerce@yingli.com\",\"phone\":\"+86 312 8631 900\",\"address\":\"3399 North Chaoyang Avenue Baoding 071051, China\",\"city\":\"\",\"state\":\"\",\"country\":\"China\",\"postal_code\":\"\",\"nit\":\"635\",\"primary_external_code\":\"635\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"814\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"ZURICH\",\"trade_name\":\"ZURICH\",\"displayName\":\"790 - ZURICH\",\"email\":\"usuario@ejemplo.com\",\"phone\":\"3415000\\u00a0 - 3342223\",\"address\":\"Av. Cristo Redentor Esq. Quinto Anillo,\\u00a0Santa Cruz\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"790\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"829\",\"code\":null,\"number\":null,\"color\":\"#00826D\",\"name\":\"COLOMBINA\",\"trade_name\":\"COLOMBINA\",\"displayName\":\"927 - COLOMBINA\",\"email\":null,\"phone\":\"8861687\",\"address\":\"orregimiento de la Paila, Municipio de Zarzal, Valle del Cauca, Colombia\",\"city\":\"Bogota\",\"state\":\"Bogot\\u00e1\",\"country\":\"Colombia\",\"postal_code\":\"110111\",\"nit\":\"890.301.8845\",\"primary_external_code\":\"927\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-01-31 19:08:12\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":null,\"withIva\":0,\"paymentDays\":null,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"832\",\"code\":null,\"number\":null,\"color\":\"#00826D\",\"name\":\"TUPEMESA - Tubos y perfiles met\\u00e1licos S.A.\",\"trade_name\":\"TUPEMESA - Tubos y perfiles met\\u00e1licos S.A.\",\"displayName\":\"930 - TUPEMESA - Tubos y perfiles met\\u00e1licos S.A.\",\"email\":null,\"phone\":\"51 1 6370000\",\"address\":\"Direcci\\u00f3n: Av. Industrial Nro. S\\/n Z.I. Predio Almonte Altura Km.40, Antigua Panamericana Sur, Lur\\u00edn 15800\",\"city\":\"Lima\",\"state\":\"Peru\",\"country\":\"Peru\",\"postal_code\":\"51\",\"nit\":\"20100151112\",\"primary_external_code\":\"930\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-02-01 13:17:36\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":null,\"withIva\":0,\"paymentDays\":null,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"834\",\"code\":null,\"number\":null,\"color\":\"#00826D\",\"name\":\"PUENTE\",\"trade_name\":\"PUENTE\",\"displayName\":\"921 - PUENTE\",\"email\":null,\"phone\":\"114329-0000\",\"address\":\"Edificio Rep\\u00fablica, Tucum\\u00e1n 1 Piso 14 - C1049AAA\",\"city\":\"Ciudad Aut\\u00f3noma de Buenos Aires Argentina\",\"state\":\"Argentina\",\"country\":\"Argentina\",\"postal_code\":\"1865\",\"nit\":\"30-70102707\",\"primary_external_code\":\"921\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-02-05 17:39:43\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":null,\"withIva\":0,\"paymentDays\":null,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"835\",\"code\":null,\"number\":null,\"color\":\"#00826D\",\"name\":\"Aditya Global Trading\",\"trade_name\":\"Aditya Global Trading\",\"displayName\":\"931 - Aditya Global Trading\",\"email\":null,\"phone\":\"+65 6221 8455\",\"address\":\"65 Chulia Street, #48-05, OCBC Centre, Singapore 049513\",\"city\":\"Ciudad de Singapur\",\"state\":\"Pulau Ujong\",\"country\":\"Singapore\",\"postal_code\":\"090001\",\"nit\":\"95621\",\"primary_external_code\":\"931\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-02-07 21:40:16\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":null,\"withIva\":0,\"paymentDays\":null,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"840\",\"code\":null,\"number\":null,\"color\":\"#c04338\",\"name\":\"inContact, Inc.\",\"trade_name\":\"inContact, Inc.\",\"displayName\":\"937 - inContact, Inc.\",\"email\":null,\"phone\":\"5512565174\",\"address\":\"NICE Headquarters Waterfront Corporate Center III 221 River St, 10th \\u0026 11th floors Hoboken New Jersey\",\"city\":\"New Jersey\",\"state\":\"Washington\",\"country\":\"USA\",\"postal_code\":\"51\",\"nit\":\"B72824329\",\"primary_external_code\":\"937\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-02-20 19:43:30\",\"updated_at\":\"2025-03-12 16:46:56\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":null,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"841\",\"code\":null,\"number\":null,\"color\":\"#00826D\",\"name\":\"Cambium Earth SL\",\"trade_name\":\"Cambium Earth SL\",\"displayName\":\"938 - Cambium Earth SL\",\"email\":null,\"phone\":\"+54 9294 463929\",\"address\":\"CALLE PLAYA DE SAN JUAN, 9, 28042, Madrid\",\"city\":\"Madrid\",\"state\":\"Madrid\",\"country\":\"Spain\",\"postal_code\":\"0598\",\"nit\":\"1235689\",\"primary_external_code\":\"938\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-02-20 21:42:28\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":14.94,\"withIva\":1,\"paymentDays\":null,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"845\",\"code\":null,\"number\":null,\"color\":\"#00c200\",\"name\":\"Li 3 Energy Holding S.L.\",\"trade_name\":\"Li 3 Energy Holding S.L.\",\"displayName\":\"942 - Li 3 Energy Holding S.L.\",\"email\":null,\"phone\":\"591 70695595\",\"address\":\"FUENCARRAL A ALCOBENDAS M603 Km 3,8 - ARBEA C (ALCOBENDAS)\",\"city\":\"Madrid\",\"state\":\"Madrid\",\"country\":\"Spain\",\"postal_code\":\"28001\",\"nit\":\"B72824329\",\"primary_external_code\":\"942\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-02-28 15:12:40\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":14.94,\"withIva\":1,\"paymentDays\":null,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"846\",\"code\":null,\"number\":null,\"color\":\"#88ffaa\",\"name\":\"Cisco Systems M\\u00e9xico\",\"trade_name\":\"Cisco Systems M\\u00e9xico\",\"displayName\":\"948 - Cisco Systems M\\u00e9xico\",\"email\":null,\"phone\":\"+52 55 21298267\",\"address\":\"P de los Tamarindos 400a Ciudad de M\\u00e9xico\",\"city\":\"Ciudad de M\\u00e9xico\",\"state\":\"DF\",\"country\":\"Mexico\",\"postal_code\":null,\"nit\":\"1114881015\",\"primary_external_code\":\"948\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-02-29 14:18:02\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":14.94,\"withIva\":1,\"paymentDays\":null,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"849\",\"code\":null,\"number\":null,\"color\":\"#ccff99\",\"name\":\"Investment Fund for Developing Countries (IFU)\",\"trade_name\":\"Investment Fund for Developing Countries (IFU)\",\"displayName\":\"951 - Investment Fund for Developing Countries (IFU)\",\"email\":null,\"phone\":\"+45 41381245\",\"address\":\"Fredericiagade 27 Copenhagen K\",\"city\":\"Copenhagen\",\"state\":\"Copenhagen\",\"country\":\"Denmark\",\"postal_code\":\"1000\",\"nit\":\"100045\",\"primary_external_code\":\"951\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-03-04 16:49:04\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":14.94,\"withIva\":1,\"paymentDays\":null,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"853\",\"code\":null,\"number\":null,\"color\":\"#a26b22\",\"name\":\"HARTREE METALS LLC\",\"trade_name\":\"HARTREE METALS LLC\",\"displayName\":\"955 - HARTREE METALS LLC\",\"email\":null,\"phone\":\"70550280\",\"address\":\"Rue du Rhone 8, 1204, Ginebra\",\"city\":\"Ginebra\",\"state\":\"Ginebra\",\"country\":\"Schweiz\",\"postal_code\":null,\"nit\":null,\"primary_external_code\":\"955\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"Georgallides, Tiffany \\/ TGeorgallides@hartreepartners.com\\/ In-house Counsel\",\"enabled\":true,\"created_at\":\"2024-03-14 18:53:14\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":14.94,\"withIva\":1,\"paymentDays\":null,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null}]}}}\n","time":"2025-07-30T10:49:11-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: POST https://apinewtm.com/graphql/\nHeaders: map[Accept:[application/json] Authorization:[Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJpYXQiOjE3NTM4ODY1MjIsImV4cCI6MTc1Mzk2NjUyMiwiaWQiOjEwNSwidXNlcm5hbWUiOiJpbnRlZ3JhY2lvbmVzQGVtYmEuYm8iLCJhcGlrZXkiOiI5Yzg0ZjYzZTRlMzk2ZGZmOWU5ZjU3NDI5OGRmZWUzOSIsImFwaWtleUNyZWF0ZWRBdCI6eyJkYXRlIjoiMjAyNS0wNy0xNyAxMDo0MToyNS4wMDAwMDAiLCJ0aW1lem9uZV90eXBlIjozLCJ0aW1lem9uZSI6IkFtZXJpY2EvQm9nb3RhIn0sImZ1bGxOYW1lIjoiSW50ZWdyYWNpw7NuIEVNQkEiLCJlbWFpbCI6ImludGVncmFjaW9uZXNAZW1iYS5ibyIsImxvY2FsZSI6ImVzIiwiZGF5c0FsbG93ZWQiOjMwLCJpc0Nvb3JkaW5hdG9yIjpmYWxzZSwidHlwZVRhc2tWaWV3IjoibGlzdHMiLCJkYXlzYWxsb3ciOjMwLCJyb2xlcyI6e30sInNob3J0X25hbWUiOiJJTi5FTUJBIiwicGVybWlzc2lvbnMiOlsic3luY19leHRlcm5hbF9idXNpbmVzcyIsInN5bmNfZXh0ZXJuYWxfY3VzdG9tZXIiLCJzeW5jX2V4dGVybmFsX21pbGVzdG9uZSIsImFic2VuY2VfYXBwcm92ZSIsImFic2VuY2VfY3JlYXRlX2FsbCIsImFic2VuY2VfY3JlYXRlX293biIsImFic2VuY2VfbWVudSIsImFjY291bnRpbmdfYnVzaW5lc3NfbGlzdCIsImFjY291bnRpbmdfY3VzdG9tZXJfbGlzdCIsImJpbGxpbmdfcGVyaW9kX2RlbGV0ZV9hbGwiLCJiaWxsaW5nX3BlcmlvZF9lZGl0X2FsbCIsImJpbGxpbmdfcGVyaW9kX2xpc3QiLCJiaWxsaW5nX3BlcmlvZF9yZWFjdGl2YXRlIiwiYm9hcmRfcmF0ZV91c2VyX2NyZWF0ZSIsImJvYXJkX3JhdGVfdXNlcl9lZGl0IiwiYnVzaW5lc3NfY3JlYXRlIiwiYnVzaW5lc3NfZGVzY3JpcHRpb25fc2F2ZSIsImJ1c2luZXNzX2VkaXQiLCJidXNpbmVzc19saXN0X2FsbCIsImJ1c2luZXNzX21lbnUiLCJidXNpbmVzc19yZXNwb25zaWJsZV9saXN0X2FsbCIsImJ1c2luZXNzX3NlZV9iaWxsaW5nX2luZm8iLCJidXNpbmVzc2VzX2FsbG93ZWRfdXNlcl9jcmVhdGUiLCJidXNpbmVzc2VzX2FsbG93ZWRfdXNlcl9kZWxldGUiLCJjb21wYW55X2Rpc2FibGUiLCJjb21wYW55X2VkaXQiLCJjb21wYW55X2xpc3QiLCJjb25jZXB0X2NyZWF0ZSIsImNvbmNlcHRfZWRpdCIsImNvbmNlcHRfbWVudSIsImNvbnRhY3RfY3JlYXRlIiwiY29udGFjdF9jcmVhdGVfZmFzdCIsImNvbnRhY3RfZWRpdCIsImNvbnRhY3RfbGlzdCIsImNvbnRhY3RfbWVudSIsImN1c3RvbWVyX2NyZWF0ZSIsImN1c3RvbWVyX2NyZWF0ZV9mYXN0IiwiY3VzdG9tZXJfZWRpdCIsImN1c3RvbWVyX2xpc3QiLCJjdXN0b21lcl9saXN0X2FsbCIsImN1c3RvbWVyX21lbnUiLCJleHBlbnNlX2NyZWF0ZV9hbGwiLCJleHBlbnNlX2RlbGV0ZV9hbGwiLCJleHBlbnNlX2R1cGxpY2F0ZSIsImV4cGVuc2VfZWRpdF9hbGwiLCJleHBlbnNlX2xpc3RfYWxsIiwiZXhwZW5zZV9tZW51IiwiZXhwZW5zZV9yZWplY3RfYWxsIiwiZmFiX3Nob3ciLCJmaWxlX21lbnUiLCJnZW9yZWZlcmVuY2VfY3JlYXRlIiwiZ2VvcmVmZXJlbmNlX2VkaXQiLCJnZW9yZWZlcmVuY2VfbWVudSIsImdvX3RvX2xlZ2FjeSIsImluZGljYXRvcnNfbWVudSIsImludm9pY2VfY3JlYXRlIiwiaW52b2ljZV9kZXRhaWxfbGlzdF9hbGwiLCJpbnZvaWNlX2ZpeF90aW1lc19jdXN0b21fdmFsdWUiLCJpbnZvaWNlX2xpc3RfYWxsIiwiaW52b2ljZWFkdmFuY2VfY3JlYXRlIiwiaW52b2ljZWFkdmFuY2VfbGlzdCIsImludm9pY2VhZHZhbmNlX3VwZGF0ZSIsImxvZ19saXN0X2FsbCIsImxvZ19saXN0X293biIsIm1pbGVzdG9uZV9jcmVhdGUiLCJtaWxlc3RvbmVfZGVsZXRlIiwibWlsZXN0b25lX2VkaXQiLCJtb250aGx5X2ZpeF9yYXRlX2dyb3VwX2NyZWF0ZSIsIm1vbnRobHlfZml4X3JhdGVfZ3JvdXBfZWRpdCIsIm1vbnRobHlfdXNlcl9jb3N0X2NyZWF0ZSIsIm1vbnRobHlfdXNlcl9jb3N0X2VkaXQiLCJwYXltZW50X2NyZWF0ZSIsInBheW1lbnRfZGVsZXRlIiwicGF5bWVudF9lZGl0IiwicGF5bWVudF9tZW51IiwicHJvY2VkdXJlX21lbnUiLCJwcm9jZWR1cmVfcmF0ZV9jcmVhdGUiLCJwcm9jZWR1cmVfcmF0ZV9kZXRhaWxfY3JlYXRlIiwicHJvY2VkdXJlX3JhdGVfZGV0YWlsX2VkaXQiLCJwcm9jZWR1cmVfcmF0ZV9kZXRhaWxfbGlzdCIsInByb2NlZHVyZV9yYXRlX2VkaXQiLCJwcm9jZWR1cmVfcmF0ZV9saXN0IiwicHJvY2VkdXJlX3JhdGVfbWVudSIsInByb2NlZHVyZV90cmFuc2FjdGlvbl9saXN0IiwicHJvamVjdF9hcmNoaXZlX2Nhc2NhZGVfYWxsIiwicHJvamVjdF9kZWxldGVfY2FzY2FkZV9hbGwiLCJwcm9qZWN0X3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInJhdGVfYnVzaW5lc3NfY2F0ZWdvcnlfY3JlYXRlIiwicmF0ZV9idXNpbmVzc19jYXRlZ29yeV9lZGl0IiwicmF0ZV9idXNpbmVzc191c2VyX2NyZWF0ZSIsInJhdGVfYnVzaW5lc3NfdXNlcl9lZGl0IiwicmF0ZV9leGNoYW5nZV9jcmVhdGUiLCJyYXRlX2V4Y2hhbmdlX2VkaXQiLCJyYXRlX2V4Y2hhbmdlX2xpc3QiLCJyYXRlX3VzZXJfY3JlYXRlIiwicmF0ZV91c2VyX2VkaXQiLCJyb2xlX2NyZWF0ZSIsInJvbGVfZWRpdF9hbGwiLCJyb2xlX2xpc3RfYWxsIiwic2VjdGlvbl9hcmNoaXZlX2Nhc2NhZGVfYWxsIiwic2VjdGlvbl9kZWxldGVfY2FzY2FkZV9hbGwiLCJzZWN0aW9uX3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInNlZV9tZW51X3JhdGVfZXhjaGFuZ2UiLCJzZXJpZV9jcmVhdGUiLCJzZXJpZV9lZGl0Iiwic2VyaWVfbWVudSIsInNldHRpbmdzX3ZpZXciLCJzdXBwbGllcl9jcmVhdGUiLCJ0YXNrX2FkZF90aW1lX2FsbCIsInRhc2tfYWRkX3RpbWVfb3duIiwidGFza19hc3NpZ25lZF91c2VyX2VtYWlsIiwidGFza19jbG9zZWRfZW1haWwiLCJ0YXNrX2NyZWF0ZV9hbGwiLCJ0YXNrX2NyZWF0ZV9jb21tZW50X2VtYWlsIiwidGFza19jcmVhdGVfc2VsZiIsInRhc2tfY3JlYXRlX3RlYW0iLCJ0YXNrX2RlbGV0ZV9hbGwiLCJ0YXNrX2RlbGV0ZV9vd24iLCJ0YXNrX2RlbGV0ZV90ZWFtIiwidGFza19lZGl0X2FsbCIsInRhc2tfZWRpdF9kdWVfZGF0ZSIsInRhc2tfZWRpdF9vd24iLCJ0YXNrX2VkaXRfdGVhbSIsInRhc2tfbGlzdF9hbGwiLCJ0YXNrX2xpc3Rfb3duIiwidGFza19saXN0X3RlYW0iLCJ0YXNrX21hc3NpdmVpbXBvcnQiLCJ0YXNrX21lbnUiLCJ0YXNrX21pZ3JhdGlvbiIsInRhc2tfc2V0X2FkZGl0aW9uYWxfYXNzaWduZWVzIiwidGFza19zZXRfZHVlX2RhdGUiLCJ0YXNrX3NldF9lc3RpbWF0ZWRfdGltZSIsInRhc2tfc2V0X3ByaW9yaXR5IiwidGFza19zZXRfcHJvZ3Jlc3MiLCJ0YXhfZWRpdF9hbGwiLCJ0YXhfbGlzdF9hbGwiLCJ0ZWFtX2FyY2hpdmVfY2FzY2FkZV9hbGwiLCJ0ZWFtX2NyZWF0ZV9hbGwiLCJ0ZWFtX2RlbGV0ZV9hbGwiLCJ0ZWFtX2VkaXRfYWxsIiwidGVhbV9saXN0X2FsbCIsInRlYW1fbGlzdF9vd24iLCJ0ZWFtX3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInRpbWVfYWNjZXB0X2FsbCIsInRpbWVfYWNjZXB0X293biIsInRpbWVfYXBwcm92ZV9hbGwiLCJ0aW1lX2FwcHJvdmVfb3duIiwidGltZV9jcmVhdGVfYWxsIiwidGltZV9jcmVhdGVfb3duIiwidGltZV9kZWxldGVfYWxsIiwidGltZV9kZWxldGVfb3duIiwidGltZV9kZW55X2FsbCIsInRpbWVfZGVueV9vd24iLCJ0aW1lX2Rvd25sb2FkZmlsZV9hbGwiLCJ0aW1lX2Rvd25sb2FkZmlsZV9vd24iLCJ0aW1lX2VkaXRfYWxsIiwidGltZV9lZGl0X2Nsb3NlX3BlcmlvZF9hbGwiLCJ0aW1lX2VkaXRfY2xvc2VfcGVyaW9kX293biIsInRpbWVfZWRpdF9vd24iLCJ0aW1lX2xpc3RfYWxsIiwidGltZV9saXN0X293biIsInRpbWVfbWVudSIsInRpbWVfbWludXRlc196ZXJvIiwidGltZV9yZWplY3RfYWxsIiwidGltZV9yZXN0cmljdGVkX3BlcmlvZF9jcmVhdGUiLCJ0aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX2VkaXQiLCJ0aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX21lbnUiLCJ0aW1lX3NoYXJlX2FsbCIsInRpbWVfc2hhcmVfb3duIiwidGltZV9zaG93X2NhbGVuZGFyX3ZpZXciLCJ0aW1lX3VwbG9hZGZpbGVfYWxsIiwidGltZV91cGxvYWRmaWxlX293biIsInRyYW5zYWN0aW9uX2FkYXB0ZXJfbGlzdCIsInRyYW5zYWN0aW9uX2xpc3QiLCJ1c2VyX2Fic2VuY2VzX3Nob3ciLCJ1c2VyX2Nvc3RfY3JlYXRlIiwidXNlcl9jb3N0X2VkaXQiLCJ1c2VyX2Nvc3RfbGlzdCIsInVzZXJfY29zdF9tZW51IiwidXNlcl9jb3N0X3JhdGVfY3JlYXRlIiwidXNlcl9jb3N0X3JhdGVfZWRpdCIsInVzZXJfY29zdF9yYXRlX2xpc3QiLCJ1c2VyX2NyZWF0ZSIsInVzZXJfZGlzYWJsZSIsInVzZXJfZWRpdCIsInVzZXJfZWRpdF9kYXlzX2FsbG93X29ubHkiLCJ1c2VyX2dyb3VwX3JvbGVfY3JlYXRlX2FsbCIsInVzZXJfZ3JvdXBfcm9sZV9kZWxldGVfYWxsIiwidXNlcl9ncm91cF9yb2xlX2VkaXRfYWxsIiwidXNlcl9ncm91cF9yb2xlc19saXN0X2FsbCIsInVzZXJfbGlzdCIsInVzZXJfbGlzdF9hbGwiLCJ1c2VyX21hc3NfYWN0aXZhdGlvbiIsInVzZXJfcHJvZHVjdGl2aXR5X2NyZWF0ZSIsInVzZXJfcHJvZHVjdGl2aXR5X2Rpc2FibGUiLCJ1c2VyX3Byb2R1Y3Rpdml0eV9lZGl0IiwidXNlcl9wcm9kdWN0aXZpdHlfZW5hYmxlIiwidXNlcl9wcm9kdWN0aXZpdHlfbWVudSIsInVzZXJfdGltZV9yZXN0cmljdGVkX3BlcmlvZF9jcmVhdGUiLCJ1c2VyX3RpbWVfcmVzdHJpY3RlZF9wZXJpb2RfZGVsZXRlIiwidXNlcl90aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX2VkaXQiLCJ1c2VyZ3JvdXBfY3JlYXRlX2FsbCIsInVzZXJncm91cF9kZWxldGVfYWxsIiwidXNlcmdyb3VwX2VkaXRfYWxsIiwidXNlcmdyb3VwX2xpc3RfYWxsIiwidXNlcmdyb3VwX21lbnUiLCJ1c2Vyc191c2VyX2dyb3VwX2NyZWF0ZV9hbGwiLCJ1c2Vyc191c2VyX2dyb3VwX2RlbGV0ZV9hbGwiLCJ1c2Vyc191c2VyX2dyb3VwX2VkaXRfYWxsIiwidXNlcnNfdXNlcl9ncm91cHNfbGlzdF9hbGwiXSwiaG9tZXBhZ2UiOm51bGx9.kShN7NXGoaz1oFro-yYNyIpIEcnNpo1GiB8SFGKFUJtDQoqyp1I1w-CMA8Kta3vWXnUZwx-y2z1yVSJaMpZbqQgKFlakpcf6351bZSL8IAUPExSfLz0HYYCWFx-Usx94BBTqosKsRhnT8PkPN3dGxs8-XTIEDi9gN-Pk9OSHmM5mPkTsaaxTY40M-F7Y0Up2y6s_lwFaX13CmstiYZSXzyKL9SUBBx-E6-8qQAfuKPIoZ_50jSGPW98-IkAcWwqO6yGf-M07dSfFZ2vLfwc3ulHm2p8jVSmRxJ_O43BEWQD5cvqGbVIvSMXkS4y98DL4Vencjjg27iu3CUJsDNBBTg] Content-Type:[application/json] Origin:[https://azure-function.timemanagerweb.com] Tenant-Name:[pruebas-dos] User-Agent:[Mozilla/5.0 (X11; Linux x86_64)...]]\nBody: map[query:query ($limit: Int, $orderBy: String, $orderDesc: Boolean, $page: Int) {\n CustomersMeta(limit: $limit, orderBy: $orderBy, orderDesc: $orderDesc, page: $page) {\n meta {\n hasNextPage\n hasPreviousPage\n limit\n next\n page\n pages\n previous\n total\n }\n rows {\n id\n code\n number\n color\n name\n trade_name\n displayName\n email\n phone\n address\n city\n state\n country\n postal_code\n nit\n primary_external_code\n status\n statusMarking\n billingLimitDate\n recepctionLimitDate\n dmsIntegration\n cmrRequiredDocuments\n cmrPayTms\n enabled\n created_at\n updated_at\n valueTax\n withIva\n paymentDays\n national\n enterpriseGroup\n responsiblePartner {\n id\n username\n email\n fullName\n shortName\n locale\n userType\n superAdmin\n enabled\n created_at\n updated_at\n daysAllow\n }\n }\n }\n} variables:map[limit:100 orderBy:orderBy orderDesc:true page:10]]\n","time":"2025-07-30T10:49:11-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: POST https://apinewtm.com/graphql/ | Status: 200 | Duration: 393.3303ms\nHeaders: map[Access-Control-Allow-Credentials:[true] Access-Control-Allow-Origin:[https://azure-function.timemanagerweb.com] Access-Control-Expose-Headers:[link, access-control-allow-credentials] Cache-Control:[no-cache, private] Content-Type:[application/json] Date:[Wed, 30 Jul 2025 14:49:11 GMT] Server:[] Vary:[Authorization]]\nBody: {\"data\":{\"CustomersMeta\":{\"meta\":{\"hasNextPage\":false,\"hasPreviousPage\":true,\"limit\":100,\"next\":-1,\"page\":10,\"pages\":10,\"previous\":9,\"total\":919},\"rows\":[{\"id\":\"54\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"AON CORPORATION\",\"trade_name\":\"AON CORPORATION\",\"displayName\":\"629 - AON CORPORATION\",\"email\":\"marta.carreira-slabe@aon.com\",\"phone\":\"2790955\",\"address\":\"Calle 13 N S\\/n Edificio: Torre Lucia Piso: 3 Zona:\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"629\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:18\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"61\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Asociaci\\u00f3n de Copropietarios de la Torre Institucional - CAINCO\",\"trade_name\":\"Asociaci\\u00f3n de Copropietarios de la Torre Institucional - CAINCO\",\"displayName\":\"194 - Asociaci\\u00f3n de Copropietarios de la Torre Institucional - CAINCO\",\"email\":\"adm_cainco@aclelerate.com\",\"phone\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"194\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:18\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"92\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"BISA SEGUROS Y REASEGUROS S.A.\",\"trade_name\":\"BISA SEGUROS Y REASEGUROS S.A.\",\"displayName\":\"147 - BISA SEGUROS Y REASEGUROS S.A.\",\"email\":\"pespinoza@grupobisa.com\",\"phone\":\"2177000\",\"address\":\"Av. Arce N\\u00b0 2631 Edificio Multicine Piso 14\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1020655027\",\"primary_external_code\":\"147\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"313\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"HALLIBURTON LATIN AMERICA S.R.L. (Sucursal Bolivia).\",\"trade_name\":\"HALLIBURTON LATIN AMERICA S.R.L. (Sucursal Bolivia).\",\"displayName\":\"186 - HALLIBURTON LATIN AMERICA S.R.L. (Sucursal Bolivia).\",\"email\":\"cecilia.medrano@halliburton.com\",\"phone\":\"3127700\",\"address\":\"Doble v\\u00eda La Guardia, Santa Cruz de la Sierra\",\"city\":\"SAnta Cruz\",\"state\":\"Santa Cruz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"1015569023\",\"primary_external_code\":\"186\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-10-31 17:43:23\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"328\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"HRS Relocation\",\"trade_name\":\"HRS Relocation\",\"displayName\":\"191 - HRS Relocation\",\"email\":\"any.urquidi@hrsrelocation.com\",\"phone\":\"77516120\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"191\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"387\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"JOSE MU\\u00d1OZ\",\"trade_name\":\"JOSE MU\\u00d1OZ\",\"displayName\":\"315 - JOSE MU\\u00d1OZ\",\"email\":\"joseronim@hotmail.com\",\"phone\":\"71506234\",\"address\":\"Av. Sanchez Bustamante 977\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"99001\",\"primary_external_code\":\"315\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:19\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"515\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"PRODUCTORA Y COMERCIALIZADORA DE CAF\\u00c9 AGRICAFE S.A.\",\"trade_name\":\"PRODUCTORA Y COMERCIALIZADORA DE CAF\\u00c9 AGRICAFE S.A.\",\"displayName\":\"136 - PRODUCTORA Y COMERCIALIZADORA DE CAF\\u00c9 AGRICAFE S.A.\",\"email\":\"pedrorodriguez@agritrade.com.bo\",\"phone\":\"75595905\",\"address\":\"calle: Los Robles #300 b\\/ Tirari\",\"city\":\"Santa Cruz\",\"state\":\"Santa Cruz\",\"country\":\"Bolivia\",\"postal_code\":\"0\",\"nit\":\"183546024\",\"primary_external_code\":\"136\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"600\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Total Energies EP Bolivie Sucursal Bolivia\",\"trade_name\":\"Total Energies EP Bolivie Sucursal Bolivia\",\"displayName\":\"192 - Total Energies EP Bolivie Sucursal Bolivia\",\"email\":\"cecilia.castillo@totalenergi.com\",\"phone\":\"363 4500\",\"address\":\"Calle Las Violetas #40, Equipetrol Norte\",\"city\":\"\",\"state\":\"\",\"country\":\"Bolivia\",\"postal_code\":\"\",\"nit\":\"1028641023\",\"primary_external_code\":\"192\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"629\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"Wartsila Argentina S.A.\",\"trade_name\":\"Wartsila Argentina S.A.\",\"displayName\":\"202 - Wartsila Argentina S.A.\",\"email\":\"johanna.arzadun@wartsila.com\",\"phone\":\"+ 54 11 4555 1331\",\"address\":\"Carlos Pellegrini 1363, C1011 AAA, Buenos Aires,\",\"city\":\"\",\"state\":\"\",\"country\":\"Argentina\",\"postal_code\":\"\",\"nit\":\"202\",\"primary_external_code\":\"202\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"729\",\"code\":null,\"number\":null,\"color\":\"#a1ba4a\",\"name\":\"JANIKIN\",\"trade_name\":\"JANIKIN\",\"displayName\":\"726 - JANIKIN\",\"email\":\"MKellett@janikin-rooke.com\",\"phone\":\"44(0)2079369097\",\"address\":\"London 1 Primrose Street EC2A 2EX\",\"city\":\"\",\"state\":\"\",\"country\":\"Reino Unido\",\"postal_code\":\"\",\"nit\":\"726\",\"primary_external_code\":\"726\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"\",\"enabled\":true,\"created_at\":\"2023-12-26 23:35:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":0,\"withIva\":1,\"paymentDays\":0,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":11,\"username\":\"rcuellar@emba.com\",\"email\":\"rcuellar@emba.com\",\"fullName\":\"Rene Cuellar Miranda\",\"shortName\":\"rcuellar\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2023-12-26 22:28:14\",\"updated_at\":\"2024-09-02 16:33:04\",\"daysAllow\":302}},{\"id\":\"859\",\"code\":null,\"number\":null,\"color\":\"#3875db\",\"name\":\"GOLDMAN SACHS CO\",\"trade_name\":\"GOLDMAN SACHS CO\",\"displayName\":\"961 - GOLDMAN SACHS CO\",\"email\":null,\"phone\":\"1-212-902-0300\",\"address\":\"200 West Street, 29th Floor\",\"city\":\"New York\",\"state\":\"New York\",\"country\":\"USA\",\"postal_code\":null,\"nit\":null,\"primary_external_code\":\"961\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"agostina.pechi@gs.com\\/ Agostina Pechi\\/Managing Director\",\"enabled\":true,\"created_at\":\"2024-03-25 21:35:07\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":14.94,\"withIva\":1,\"paymentDays\":null,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"860\",\"code\":null,\"number\":null,\"color\":\"#3875db\",\"name\":\"BANCTRUST CO\",\"trade_name\":\"BANCTRUST CO\",\"displayName\":\"962 - BANCTRUST CO\",\"email\":null,\"phone\":\"442081612054\",\"address\":\"110 Bishopsgate Level 24, London Ec2N 4Ay\",\"city\":\"Londres\",\"state\":\"London\",\"country\":\"United Kingdom\",\"postal_code\":null,\"nit\":null,\"primary_external_code\":\"962\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"ILONA NIPANE\\/ LEGAL ADVISOR\\/inipane@banctrust.co.uk\",\"enabled\":true,\"created_at\":\"2024-03-25 21:38:08\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":14.94,\"withIva\":1,\"paymentDays\":null,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"863\",\"code\":null,\"number\":null,\"color\":\"#cb4f89\",\"name\":\"Marcela Maldonado\",\"trade_name\":\"Marcela Maldonado\",\"displayName\":\"965 - Marcela Maldonado\",\"email\":null,\"phone\":\"+573102116295\",\"address\":\"Av 15.#104-30,\",\"city\":\"Bogota\",\"state\":\"Bogot\\u00e1\",\"country\":\"Colombia\",\"postal_code\":\"110110\",\"nit\":\"99001\",\"primary_external_code\":\"965\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":\"Marcela Maldonado\\/ ninamaldonado2@gmail.com \\/\",\"enabled\":true,\"created_at\":\"2024-03-26 20:01:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":14.94,\"withIva\":1,\"paymentDays\":null,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"865\",\"code\":null,\"number\":null,\"color\":\"#a26b22\",\"name\":\"SIMPSON GUMPERTZ \\u0026 HEGER\",\"trade_name\":\"SIMPSON GUMPERTZ \\u0026 HEGER\",\"displayName\":\"967 - SIMPSON GUMPERTZ \\u0026 HEGER\",\"email\":null,\"phone\":\"781 472 0527\",\"address\":\"No tiene\",\"city\":\"Boston\",\"state\":\"Massachusetts\",\"country\":\"USA\",\"postal_code\":null,\"nit\":\"990001\",\"primary_external_code\":\"967\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":null,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-03-27 16:32:20\",\"updated_at\":\"2024-04-19 20:08:55\",\"valueTax\":14.94,\"withIva\":1,\"paymentDays\":null,\"national\":2,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"882\",\"code\":null,\"number\":null,\"color\":\"#1bdf70\",\"name\":\"MDAVILA\",\"trade_name\":\"MDAVILA\",\"displayName\":\"984 - MDAVILA\",\"email\":null,\"phone\":\"0000000\",\"address\":\"Direcci\\u00f3n\",\"city\":\"LA PAZ\",\"state\":\"LA PAZ\",\"country\":\"Bolivia\",\"postal_code\":\"000000\",\"nit\":\"12233233\",\"primary_external_code\":\"984\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":0,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-05-10 20:17:59\",\"updated_at\":\"2024-05-10 20:23:08\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":null},{\"id\":\"922\",\"code\":null,\"number\":null,\"color\":\"#8cb6cb\",\"name\":\"prueba formulario\",\"trade_name\":\"prueba formulario\",\"displayName\":\"1024 - prueba formulario\",\"email\":null,\"phone\":\"3322333222\",\"address\":\"Direcci\\u00f3n\",\"city\":\"prueba formulario\",\"state\":\"prueba formulario\",\"country\":\"Andorra\",\"postal_code\":\"000000\",\"nit\":null,\"primary_external_code\":\"1024\",\"status\":\"1\",\"statusMarking\":\"pending_completion\",\"billingLimitDate\":0,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2024-12-10 14:25:03\",\"updated_at\":\"2024-12-10 14:25:33\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":77,\"username\":\"pcorredor26@gmail.com\",\"email\":\"pcorredor26@gmail.com\",\"fullName\":\"AMTM Pruebas\",\"shortName\":\"AM\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":true,\"enabled\":true,\"created_at\":\"2021-05-11 23:40:08\",\"updated_at\":\"2025-07-21 10:12:54\",\"daysAllow\":302}},{\"id\":\"926\",\"code\":null,\"number\":null,\"color\":\"#4ac3f7\",\"name\":\"Capacitaci\\u00f3n SA\",\"trade_name\":\"Capacitaci\\u00f3n SA\",\"displayName\":\"1028 - Capacitaci\\u00f3n SA\",\"email\":null,\"phone\":\"02222\",\"address\":\"PRUEBA\",\"city\":\"Ciudad de M\\u00e9xico\",\"state\":\"Ciudad de M\\u00e9xico\",\"country\":\"Mexico\",\"postal_code\":\"000000\",\"nit\":null,\"primary_external_code\":\"1028\",\"status\":\"1\",\"statusMarking\":\"pending_completion\",\"billingLimitDate\":0,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2025-02-10 11:29:04\",\"updated_at\":\"2025-02-10 11:29:04\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":77,\"username\":\"pcorredor26@gmail.com\",\"email\":\"pcorredor26@gmail.com\",\"fullName\":\"AMTM Pruebas\",\"shortName\":\"AM\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":true,\"enabled\":true,\"created_at\":\"2021-05-11 23:40:08\",\"updated_at\":\"2025-07-21 10:12:54\",\"daysAllow\":302}},{\"id\":\"929\",\"code\":null,\"number\":null,\"color\":\"#eeb225\",\"name\":\"CAPACITACI\\u00d3N CON ANDREA\",\"trade_name\":\"CAPACITACI\\u00d3N CON ANDREA\",\"displayName\":\"1031 - CAPACITACI\\u00d3N CON ANDREA\",\"email\":null,\"phone\":\"0900076\",\"address\":\"AV- 123\",\"city\":\"Bogota\",\"state\":\"Bogot\\u00e1\",\"country\":\"Colombia\",\"postal_code\":\"000000\",\"nit\":\"45558554\",\"primary_external_code\":\"1031\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":0,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2025-06-09 10:55:54\",\"updated_at\":\"2025-06-11 09:56:53\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":77,\"username\":\"pcorredor26@gmail.com\",\"email\":\"pcorredor26@gmail.com\",\"fullName\":\"AMTM Pruebas\",\"shortName\":\"AM\",\"locale\":\"es\",\"userType\":1,\"superAdmin\":true,\"enabled\":true,\"created_at\":\"2021-05-11 23:40:08\",\"updated_at\":\"2025-07-21 10:12:54\",\"daysAllow\":302}},{\"id\":\"930\",\"code\":null,\"number\":null,\"color\":\"#1b5ade\",\"name\":\"Chapman1\",\"trade_name\":\"Chapman2\",\"displayName\":\"1032 - Chapman2\",\"email\":null,\"phone\":\"00000\",\"address\":\"Condominio Santos Dumont A - 205,\\u00a0Santa Cruz, Boli\",\"city\":\"Abriaqui\",\"state\":\"Antioquia\",\"country\":\"Colombia\",\"postal_code\":\"000000\",\"nit\":null,\"primary_external_code\":\"1032\",\"status\":\"1\",\"statusMarking\":\"active\",\"billingLimitDate\":0,\"recepctionLimitDate\":null,\"dmsIntegration\":0,\"cmrRequiredDocuments\":\"\",\"cmrPayTms\":null,\"enabled\":true,\"created_at\":\"2025-06-26 11:35:47\",\"updated_at\":\"2025-06-26 12:06:12\",\"valueTax\":null,\"withIva\":1,\"paymentDays\":0,\"national\":1,\"enterpriseGroup\":0,\"responsiblePartner\":{\"id\":96,\"username\":\"andres.cruz@timemanagerweb.com\",\"email\":\"andres.cruz@timemanagerweb.com\",\"fullName\":\"Andr\\u00e9s Cruz\",\"shortName\":\"AC\",\"locale\":null,\"userType\":0,\"superAdmin\":false,\"enabled\":true,\"created_at\":\"2024-11-06 10:18:57\",\"updated_at\":\"2024-11-06 10:21:11\",\"daysAllow\":30}}]}}}\n","time":"2025-07-30T10:49:11-04:00"} +{"file":"fetcher.go:69","func":"sync.SyncData","level":"info","msg":"[🧩 Job: sync_graphql] Cantidad de elementos: 919","time":"2025-07-30T10:49:11-04:00"} +{"file":"operaciones.go:25","func":"db.(*GormDatabase).SyncRows","level":"info","msg":"[🧹 Tabla: public.sync_bp_customers] ✅ Inicializacion Syncing data...","time":"2025-07-30T10:49:11-04:00"} +{"file":"operaciones.go:51","func":"db.(*GormDatabase).SyncRows","level":"debug","msg":"[🧹 Tabla: public.sync_bp_customers] Procesando batch de 100 registros","time":"2025-07-30T10:49:11-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 8, 501","time":"2025-07-30T10:49:11-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 202, 481","time":"2025-07-30T10:49:12-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 456, 403","time":"2025-07-30T10:49:12-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 483, 509","time":"2025-07-30T10:49:12-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 764, 864","time":"2025-07-30T10:49:12-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 872, 974","time":"2025-07-30T10:49:12-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 875, 977","time":"2025-07-30T10:49:12-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 879, 981","time":"2025-07-30T10:49:12-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 982, 880","time":"2025-07-30T10:49:12-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 881, 983","time":"2025-07-30T10:49:13-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 884, 986","time":"2025-07-30T10:49:13-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 886, 988","time":"2025-07-30T10:49:13-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 888, 990","time":"2025-07-30T10:49:13-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 891, 993","time":"2025-07-30T10:49:13-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 892, 994","time":"2025-07-30T10:49:13-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 893, 995","time":"2025-07-30T10:49:13-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 895, 997","time":"2025-07-30T10:49:13-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 923, 1025","time":"2025-07-30T10:49:14-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 924, 1026","time":"2025-07-30T10:49:14-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 925, 1027","time":"2025-07-30T10:49:14-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 1, 240","time":"2025-07-30T10:49:14-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 3, 164","time":"2025-07-30T10:49:14-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 10, 402","time":"2025-07-30T10:49:14-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 12, 68","time":"2025-07-30T10:49:15-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 13, 351","time":"2025-07-30T10:49:16-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 14, 593","time":"2025-07-30T10:49:17-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 16, 434","time":"2025-07-30T10:49:19-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 18, 290","time":"2025-07-30T10:49:20-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 19, 681","time":"2025-07-30T10:49:21-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 20, 230","time":"2025-07-30T10:49:22-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 23, 70","time":"2025-07-30T10:49:24-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 25, 193","time":"2025-07-30T10:49:25-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 279, 31","time":"2025-07-30T10:49:25-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 35, 373","time":"2025-07-30T10:49:25-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 36, 275","time":"2025-07-30T10:49:25-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 803, 37","time":"2025-07-30T10:49:26-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 225, 39","time":"2025-07-30T10:49:26-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 42, 296","time":"2025-07-30T10:49:26-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 43, 690","time":"2025-07-30T10:49:26-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 493, 46","time":"2025-07-30T10:49:26-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 608, 47","time":"2025-07-30T10:49:27-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 52, 665","time":"2025-07-30T10:49:27-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 53, 159","time":"2025-07-30T10:49:28-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 168, 55","time":"2025-07-30T10:49:28-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 57, 72","time":"2025-07-30T10:49:28-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 510, 58","time":"2025-07-30T10:49:29-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 59, 293","time":"2025-07-30T10:49:29-04:00"} +{"file":"operaciones.go:51","func":"db.(*GormDatabase).SyncRows","level":"debug","msg":"[🧹 Tabla: public.sync_bp_customers] Procesando batch de 100 registros","time":"2025-07-30T10:49:29-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 60, 73","time":"2025-07-30T10:49:29-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 62, 74","time":"2025-07-30T10:49:29-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 63, 177","time":"2025-07-30T10:49:29-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 64, 75","time":"2025-07-30T10:49:29-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 66, 410","time":"2025-07-30T10:49:30-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 70, 267","time":"2025-07-30T10:49:30-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 74, 356","time":"2025-07-30T10:49:30-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 75, 437","time":"2025-07-30T10:49:30-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 76, 680","time":"2025-07-30T10:49:30-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 78, 859","time":"2025-07-30T10:49:30-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 79, 77","time":"2025-07-30T10:49:30-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 160, 81","time":"2025-07-30T10:49:30-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 82, 421","time":"2025-07-30T10:49:31-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 83, 179","time":"2025-07-30T10:49:31-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 85, 787","time":"2025-07-30T10:49:31-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 87, 204","time":"2025-07-30T10:49:31-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 88, 757","time":"2025-07-30T10:49:31-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 90, 664","time":"2025-07-30T10:49:31-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 93, 892","time":"2025-07-30T10:49:31-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 98, 469","time":"2025-07-30T10:49:32-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 247, 106","time":"2025-07-30T10:49:32-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 107, 470","time":"2025-07-30T10:49:32-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 108, 78","time":"2025-07-30T10:49:32-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 110, 435","time":"2025-07-30T10:49:32-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 112, 80","time":"2025-07-30T10:49:32-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 113, 185","time":"2025-07-30T10:49:32-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 114, 362","time":"2025-07-30T10:49:33-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 116, 670","time":"2025-07-30T10:49:33-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 117, 515","time":"2025-07-30T10:49:33-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 119, 320","time":"2025-07-30T10:49:33-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 120, 171","time":"2025-07-30T10:49:33-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 121, 444","time":"2025-07-30T10:49:33-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 123, 789","time":"2025-07-30T10:49:33-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 124, 467","time":"2025-07-30T10:49:33-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 82, 125","time":"2025-07-30T10:49:33-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 685, 127","time":"2025-07-30T10:49:33-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 129, 83","time":"2025-07-30T10:49:34-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 130, 349","time":"2025-07-30T10:49:34-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 317, 131","time":"2025-07-30T10:49:34-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 84, 132","time":"2025-07-30T10:49:34-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 133, 85","time":"2025-07-30T10:49:34-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 134, 598","time":"2025-07-30T10:49:34-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 135, 86","time":"2025-07-30T10:49:34-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 136, 880","time":"2025-07-30T10:49:34-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 137, 408","time":"2025-07-30T10:49:34-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 138, 232","time":"2025-07-30T10:49:34-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 139, 539","time":"2025-07-30T10:49:34-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 141, 564","time":"2025-07-30T10:49:35-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 143, 175","time":"2025-07-30T10:49:35-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 144, 298","time":"2025-07-30T10:49:35-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 88, 147","time":"2025-07-30T10:49:35-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 148, 246","time":"2025-07-30T10:49:35-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 151, 222","time":"2025-07-30T10:49:35-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 154, 178","time":"2025-07-30T10:49:35-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 422, 156","time":"2025-07-30T10:49:36-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 805, 159","time":"2025-07-30T10:49:36-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 160, 416","time":"2025-07-30T10:49:36-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 161, 535","time":"2025-07-30T10:49:36-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 164, 809","time":"2025-07-30T10:49:36-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 165, 322","time":"2025-07-30T10:49:36-04:00"} +{"file":"operaciones.go:51","func":"db.(*GormDatabase).SyncRows","level":"debug","msg":"[🧹 Tabla: public.sync_bp_customers] Procesando batch de 100 registros","time":"2025-07-30T10:49:36-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 171, 512","time":"2025-07-30T10:49:36-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 172, 184","time":"2025-07-30T10:49:37-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 173, 683","time":"2025-07-30T10:49:37-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 174, 206","time":"2025-07-30T10:49:37-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 179, 418","time":"2025-07-30T10:49:37-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 180, 540","time":"2025-07-30T10:49:37-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 181, 229","time":"2025-07-30T10:49:37-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 182, 679","time":"2025-07-30T10:49:37-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 183, 568","time":"2025-07-30T10:49:38-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 185, 698","time":"2025-07-30T10:49:38-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 186, 161","time":"2025-07-30T10:49:38-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 187, 511","time":"2025-07-30T10:49:38-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 188, 674","time":"2025-07-30T10:49:38-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 189, 819","time":"2025-07-30T10:49:39-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 196, 474","time":"2025-07-30T10:49:40-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 204, 420","time":"2025-07-30T10:49:40-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 205, 427","time":"2025-07-30T10:49:40-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 206, 207","time":"2025-07-30T10:49:40-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 207, 286","time":"2025-07-30T10:49:40-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 209, 155","time":"2025-07-30T10:49:41-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 211, 93","time":"2025-07-30T10:49:41-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 824, 213","time":"2025-07-30T10:49:41-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 216, 745","time":"2025-07-30T10:49:41-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 219, 798","time":"2025-07-30T10:49:41-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 228, 532","time":"2025-07-30T10:49:42-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 229, 231","time":"2025-07-30T10:49:42-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 230, 309","time":"2025-07-30T10:49:42-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 231, 190","time":"2025-07-30T10:49:42-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 232, 500","time":"2025-07-30T10:49:42-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 491, 233","time":"2025-07-30T10:49:42-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 234, 429","time":"2025-07-30T10:49:42-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 236, 397","time":"2025-07-30T10:49:42-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 239, 848","time":"2025-07-30T10:49:42-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 886, 241","time":"2025-07-30T10:49:43-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 242, 695","time":"2025-07-30T10:49:43-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 244, 860","time":"2025-07-30T10:49:43-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 249, 241","time":"2025-07-30T10:49:43-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 250, 304","time":"2025-07-30T10:49:43-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 251, 610","time":"2025-07-30T10:49:43-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 254, 499","time":"2025-07-30T10:49:43-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 255, 261","time":"2025-07-30T10:49:44-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 256, 244","time":"2025-07-30T10:49:44-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 257, 687","time":"2025-07-30T10:49:44-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 258, 504","time":"2025-07-30T10:49:44-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 259, 702","time":"2025-07-30T10:49:44-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 260, 287","time":"2025-07-30T10:49:44-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 261, 517","time":"2025-07-30T10:49:44-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 262, 758","time":"2025-07-30T10:49:44-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 265, 321","time":"2025-07-30T10:49:44-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 364, 266","time":"2025-07-30T10:49:44-04:00"} +{"file":"operaciones.go:51","func":"db.(*GormDatabase).SyncRows","level":"debug","msg":"[🧹 Tabla: public.sync_bp_customers] Procesando batch de 100 registros","time":"2025-07-30T10:49:44-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 269, 379","time":"2025-07-30T10:49:45-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 271, 447","time":"2025-07-30T10:49:45-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 272, 443","time":"2025-07-30T10:49:45-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 273, 754","time":"2025-07-30T10:49:45-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 274, 387","time":"2025-07-30T10:49:45-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 275, 260","time":"2025-07-30T10:49:45-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 280, 271","time":"2025-07-30T10:49:45-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 281, 208","time":"2025-07-30T10:49:45-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 677, 282","time":"2025-07-30T10:49:46-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 284, 667","time":"2025-07-30T10:49:46-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 285, 342","time":"2025-07-30T10:49:46-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 801, 286","time":"2025-07-30T10:49:46-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 287, 611","time":"2025-07-30T10:49:46-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 288, 328","time":"2025-07-30T10:49:46-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 289, 405","time":"2025-07-30T10:49:46-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 293, 700","time":"2025-07-30T10:49:46-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 850, 295","time":"2025-07-30T10:49:46-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 298, 793","time":"2025-07-30T10:49:47-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 684, 299","time":"2025-07-30T10:49:47-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 301, 575","time":"2025-07-30T10:49:47-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 768, 303","time":"2025-07-30T10:49:47-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 693, 304","time":"2025-07-30T10:49:47-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 308, 704","time":"2025-07-30T10:49:47-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 309, 377","time":"2025-07-30T10:49:47-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 310, 583","time":"2025-07-30T10:49:47-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 311, 182","time":"2025-07-30T10:49:48-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 282, 314","time":"2025-07-30T10:49:48-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 318, 170","time":"2025-07-30T10:49:48-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 319, 281","time":"2025-07-30T10:49:48-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 320, 399","time":"2025-07-30T10:49:48-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 321, 574","time":"2025-07-30T10:49:48-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 322, 166","time":"2025-07-30T10:49:48-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 324, 573","time":"2025-07-30T10:49:48-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 325, 200","time":"2025-07-30T10:49:48-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 326, 174","time":"2025-07-30T10:49:49-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 495, 327","time":"2025-07-30T10:49:49-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 806, 329","time":"2025-07-30T10:49:49-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 331, 838","time":"2025-07-30T10:49:49-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 332, 580","time":"2025-07-30T10:49:49-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 333, 162","time":"2025-07-30T10:49:49-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 340, 477","time":"2025-07-30T10:49:49-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 341, 393","time":"2025-07-30T10:49:49-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 342, 257","time":"2025-07-30T10:49:49-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 289, 343","time":"2025-07-30T10:49:50-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 344, 210","time":"2025-07-30T10:49:50-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 345, 419","time":"2025-07-30T10:49:50-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 346, 169","time":"2025-07-30T10:49:50-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 351, 433","time":"2025-07-30T10:49:50-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 352, 201","time":"2025-07-30T10:49:50-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 355, 258","time":"2025-07-30T10:49:50-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 358, 219","time":"2025-07-30T10:49:51-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 361, 283","time":"2025-07-30T10:49:51-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 362, 902","time":"2025-07-30T10:49:51-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 368, 897","time":"2025-07-30T10:49:51-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 370, 871","time":"2025-07-30T10:49:51-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 301, 372","time":"2025-07-30T10:49:51-04:00"} +{"file":"operaciones.go:51","func":"db.(*GormDatabase).SyncRows","level":"debug","msg":"[🧹 Tabla: public.sync_bp_customers] Procesando batch de 100 registros","time":"2025-07-30T10:49:51-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 373, 386","time":"2025-07-30T10:49:51-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 374, 181","time":"2025-07-30T10:49:51-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 375, 441","time":"2025-07-30T10:49:52-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 378, 211","time":"2025-07-30T10:49:52-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 671, 379","time":"2025-07-30T10:49:52-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 385, 143","time":"2025-07-30T10:49:52-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 386, 666","time":"2025-07-30T10:49:52-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 389, 295","time":"2025-07-30T10:49:52-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 390, 496","time":"2025-07-30T10:49:52-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 381, 391","time":"2025-07-30T10:49:52-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 393, 149","time":"2025-07-30T10:49:53-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 395, 466","time":"2025-07-30T10:49:53-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 396, 284","time":"2025-07-30T10:49:53-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 397, 199","time":"2025-07-30T10:49:53-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 401, 497","time":"2025-07-30T10:49:53-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 402, 329","time":"2025-07-30T10:49:53-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 403, 264","time":"2025-07-30T10:49:53-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 453, 404","time":"2025-07-30T10:49:53-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 405, 769","time":"2025-07-30T10:49:53-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 407, 630","time":"2025-07-30T10:49:54-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 408, 542","time":"2025-07-30T10:49:54-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 409, 414","time":"2025-07-30T10:49:54-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 412, 299","time":"2025-07-30T10:49:54-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 413, 586","time":"2025-07-30T10:49:54-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 415, 678","time":"2025-07-30T10:49:54-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 416, 691","time":"2025-07-30T10:49:54-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 417, 851","time":"2025-07-30T10:49:54-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 418, 696","time":"2025-07-30T10:49:54-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 420, 461","time":"2025-07-30T10:49:54-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 157, 422","time":"2025-07-30T10:49:55-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 424, 432","time":"2025-07-30T10:49:55-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 426, 294","time":"2025-07-30T10:49:55-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 431, 209","time":"2025-07-30T10:49:55-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 433, 682","time":"2025-07-30T10:49:55-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 434, 205","time":"2025-07-30T10:49:55-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 436, 799","time":"2025-07-30T10:49:55-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 437, 214","time":"2025-07-30T10:49:55-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 447, 365","time":"2025-07-30T10:49:56-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 448, 173","time":"2025-07-30T10:49:56-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 453, 316","time":"2025-07-30T10:49:56-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 454, 334","time":"2025-07-30T10:49:56-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 455, 487","time":"2025-07-30T10:49:56-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 786, 457","time":"2025-07-30T10:49:57-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 117, 458","time":"2025-07-30T10:49:57-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 459, 554","time":"2025-07-30T10:49:57-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 460, 516","time":"2025-07-30T10:49:57-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 463, 400","time":"2025-07-30T10:49:57-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 464, 369","time":"2025-07-30T10:49:57-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 467, 675","time":"2025-07-30T10:49:57-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 468, 621","time":"2025-07-30T10:49:57-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 336, 470","time":"2025-07-30T10:49:58-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 472, 502","time":"2025-07-30T10:49:58-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 335, 473","time":"2025-07-30T10:49:58-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 474, 707","time":"2025-07-30T10:49:58-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 475, 197","time":"2025-07-30T10:49:58-04:00"} +{"file":"operaciones.go:51","func":"db.(*GormDatabase).SyncRows","level":"debug","msg":"[🧹 Tabla: public.sync_bp_customers] Procesando batch de 100 registros","time":"2025-07-30T10:49:58-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 476, 265","time":"2025-07-30T10:49:58-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 478, 456","time":"2025-07-30T10:49:58-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 482, 423","time":"2025-07-30T10:49:58-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 484, 445","time":"2025-07-30T10:49:59-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 770, 486","time":"2025-07-30T10:49:59-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 489, 390","time":"2025-07-30T10:49:59-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 491, 215","time":"2025-07-30T10:49:59-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 492, 606","time":"2025-07-30T10:49:59-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 494, 673","time":"2025-07-30T10:49:59-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 496, 676","time":"2025-07-30T10:49:59-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 497, 256","time":"2025-07-30T10:49:59-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 498, 778","time":"2025-07-30T10:49:59-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 499, 834","time":"2025-07-30T10:49:59-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 500, 263","time":"2025-07-30T10:50:00-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 502, 547","time":"2025-07-30T10:50:00-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 505, 465","time":"2025-07-30T10:50:00-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 508, 313","time":"2025-07-30T10:50:00-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 510, 277","time":"2025-07-30T10:50:00-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 511, 462","time":"2025-07-30T10:50:00-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 513, 324","time":"2025-07-30T10:50:00-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 183, 514","time":"2025-07-30T10:50:01-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 518, 366","time":"2025-07-30T10:50:01-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 528, 272","time":"2025-07-30T10:50:01-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 233, 529","time":"2025-07-30T10:50:01-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 584, 532","time":"2025-07-30T10:50:01-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 533, 415","time":"2025-07-30T10:50:01-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 535, 332","time":"2025-07-30T10:50:01-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 537, 759","time":"2025-07-30T10:50:02-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 538, 176","time":"2025-07-30T10:50:02-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 472, 539","time":"2025-07-30T10:50:02-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 543, 694","time":"2025-07-30T10:50:02-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 544, 795","time":"2025-07-30T10:50:02-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 546, 460","time":"2025-07-30T10:50:02-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 548, 384","time":"2025-07-30T10:50:02-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 550, 705","time":"2025-07-30T10:50:02-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 551, 331","time":"2025-07-30T10:50:03-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 556, 448","time":"2025-07-30T10:50:03-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 558, 352","time":"2025-07-30T10:50:03-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 308, 563","time":"2025-07-30T10:50:03-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 564, 845","time":"2025-07-30T10:50:03-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 566, 338","time":"2025-07-30T10:50:04-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 567, 628","time":"2025-07-30T10:50:04-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 568, 505","time":"2025-07-30T10:50:04-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 569, 172","time":"2025-07-30T10:50:04-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 879, 571","time":"2025-07-30T10:50:04-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 180, 573","time":"2025-07-30T10:50:04-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 577, 634","time":"2025-07-30T10:50:04-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 580, 227","time":"2025-07-30T10:50:04-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 582, 395","time":"2025-07-30T10:50:05-04:00"} +{"file":"operaciones.go:51","func":"db.(*GormDatabase).SyncRows","level":"debug","msg":"[🧹 Tabla: public.sync_bp_customers] Procesando batch de 100 registros","time":"2025-07-30T10:50:05-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 588, 262","time":"2025-07-30T10:50:05-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 589, 370","time":"2025-07-30T10:50:05-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 590, 305","time":"2025-07-30T10:50:05-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 596, 401","time":"2025-07-30T10:50:05-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 358, 597","time":"2025-07-30T10:50:05-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 601, 353","time":"2025-07-30T10:50:06-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 602, 203","time":"2025-07-30T10:50:06-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 198, 605","time":"2025-07-30T10:50:06-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 607, 692","time":"2025-07-30T10:50:06-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 479, 608","time":"2025-07-30T10:50:06-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 612, 273","time":"2025-07-30T10:50:06-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 615, 899","time":"2025-07-30T10:50:06-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 254, 617","time":"2025-07-30T10:50:07-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 620, 409","time":"2025-07-30T10:50:07-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 689, 624","time":"2025-07-30T10:50:07-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 627, 514","time":"2025-07-30T10:50:07-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 628, 439","time":"2025-07-30T10:50:07-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 630, 228","time":"2025-07-30T10:50:07-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 632, 518","time":"2025-07-30T10:50:07-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 633, 760","time":"2025-07-30T10:50:07-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 634, 350","time":"2025-07-30T10:50:08-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 635, 326","time":"2025-07-30T10:50:08-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 636, 255","time":"2025-07-30T10:50:08-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 640, 212","time":"2025-07-30T10:50:08-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 641, 697","time":"2025-07-30T10:50:08-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 251, 642","time":"2025-07-30T10:50:08-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 643, 357","time":"2025-07-30T10:50:08-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 815, 224","time":"2025-07-30T10:50:08-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 819, 836","time":"2025-07-30T10:50:08-04:00"} +{"file":"operaciones.go:51","func":"db.(*GormDatabase).SyncRows","level":"debug","msg":"[🧹 Tabla: public.sync_bp_customers] Procesando batch de 100 registros","time":"2025-07-30T10:50:10-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 883, 985","time":"2025-07-30T10:50:10-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 885, 987","time":"2025-07-30T10:50:10-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 887, 989","time":"2025-07-30T10:50:10-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 899, 1001","time":"2025-07-30T10:50:11-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 904, 1006","time":"2025-07-30T10:50:11-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 905, 1007","time":"2025-07-30T10:50:11-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 906, 1008","time":"2025-07-30T10:50:11-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 907, 1009","time":"2025-07-30T10:50:11-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 911, 1013","time":"2025-07-30T10:50:11-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 913, 1015","time":"2025-07-30T10:50:11-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 915, 1017","time":"2025-07-30T10:50:11-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 917, 1019","time":"2025-07-30T10:50:12-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 927, 1029","time":"2025-07-30T10:50:12-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 290, 632","time":"2025-07-30T10:50:12-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 545, 574","time":"2025-07-30T10:50:12-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 646, 743","time":"2025-07-30T10:50:12-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 647, 721","time":"2025-07-30T10:50:12-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 648, 788","time":"2025-07-30T10:50:12-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 825, 649","time":"2025-07-30T10:50:12-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 650, 870","time":"2025-07-30T10:50:12-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 651, 826","time":"2025-07-30T10:50:13-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 652, 739","time":"2025-07-30T10:50:13-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 653, 648","time":"2025-07-30T10:50:13-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 654, 828","time":"2025-07-30T10:50:13-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 655, 767","time":"2025-07-30T10:50:13-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 656, 833","time":"2025-07-30T10:50:13-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 657, 807","time":"2025-07-30T10:50:13-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 875, 658","time":"2025-07-30T10:50:13-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 659, 810","time":"2025-07-30T10:50:13-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 820, 660","time":"2025-07-30T10:50:13-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 661, 857","time":"2025-07-30T10:50:13-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 746, 662","time":"2025-07-30T10:50:14-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 663, 846","time":"2025-07-30T10:50:14-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 664, 740","time":"2025-07-30T10:50:14-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 832, 665","time":"2025-07-30T10:50:14-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 666, 722","time":"2025-07-30T10:50:14-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 667, 774","time":"2025-07-30T10:50:14-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 668, 841","time":"2025-07-30T10:50:14-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 670, 869","time":"2025-07-30T10:50:14-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 671, 662","time":"2025-07-30T10:50:14-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 672, 734","time":"2025-07-30T10:50:14-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 673, 821","time":"2025-07-30T10:50:14-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 674, 756","time":"2025-07-30T10:50:14-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 675, 747","time":"2025-07-30T10:50:15-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 676, 777","time":"2025-07-30T10:50:15-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 677, 736","time":"2025-07-30T10:50:15-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 678, 889","time":"2025-07-30T10:50:15-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 679, 802","time":"2025-07-30T10:50:15-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 856, 680","time":"2025-07-30T10:50:15-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 681, 713","time":"2025-07-30T10:50:15-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 682, 800","time":"2025-07-30T10:50:15-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 683, 844","time":"2025-07-30T10:50:15-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 684, 839","time":"2025-07-30T10:50:15-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 685, 753","time":"2025-07-30T10:50:15-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 686, 750","time":"2025-07-30T10:50:15-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 687, 773","time":"2025-07-30T10:50:16-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 688, 804","time":"2025-07-30T10:50:16-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 689, 716","time":"2025-07-30T10:50:16-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 690, 858","time":"2025-07-30T10:50:16-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 691, 847","time":"2025-07-30T10:50:16-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 720, 692","time":"2025-07-30T10:50:16-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 693, 816","time":"2025-07-30T10:50:16-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 694, 651","time":"2025-07-30T10:50:16-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 695, 781","time":"2025-07-30T10:50:16-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 696, 823","time":"2025-07-30T10:50:16-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 697, 649","time":"2025-07-30T10:50:17-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 698, 741","time":"2025-07-30T10:50:17-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 699, 765","time":"2025-07-30T10:50:17-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 701, 659","time":"2025-07-30T10:50:17-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 702, 783","time":"2025-07-30T10:50:17-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 703, 636","time":"2025-07-30T10:50:17-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 704, 709","time":"2025-07-30T10:50:17-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 705, 755","time":"2025-07-30T10:50:17-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 706, 703","time":"2025-07-30T10:50:17-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 707, 865","time":"2025-07-30T10:50:17-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 708, 645","time":"2025-07-30T10:50:17-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 709, 654","time":"2025-07-30T10:50:18-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 710, 699","time":"2025-07-30T10:50:18-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 711, 748","time":"2025-07-30T10:50:18-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 712, 442","time":"2025-07-30T10:50:18-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 713, 796","time":"2025-07-30T10:50:18-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 714, 706","time":"2025-07-30T10:50:18-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 715, 751","time":"2025-07-30T10:50:18-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 716, 772","time":"2025-07-30T10:50:18-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 717, 728","time":"2025-07-30T10:50:18-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 718, 701","time":"2025-07-30T10:50:18-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 719, 855","time":"2025-07-30T10:50:18-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 720, 861","time":"2025-07-30T10:50:19-04:00"} +{"file":"operaciones.go:51","func":"db.(*GormDatabase).SyncRows","level":"debug","msg":"[🧹 Tabla: public.sync_bp_customers] Procesando batch de 100 registros","time":"2025-07-30T10:50:19-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 721, 719","time":"2025-07-30T10:50:19-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 656, 722","time":"2025-07-30T10:50:19-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 637, 723","time":"2025-07-30T10:50:19-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 724, 749","time":"2025-07-30T10:50:19-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 725, 642","time":"2025-07-30T10:50:19-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 726, 867","time":"2025-07-30T10:50:19-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 727, 663","time":"2025-07-30T10:50:19-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 728, 843","time":"2025-07-30T10:50:19-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 730, 830","time":"2025-07-30T10:50:19-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 731, 885","time":"2025-07-30T10:50:20-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 732, 784","time":"2025-07-30T10:50:20-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 733, 650","time":"2025-07-30T10:50:20-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 734, 708","time":"2025-07-30T10:50:20-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 647, 735","time":"2025-07-30T10:50:20-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 808, 736","time":"2025-07-30T10:50:20-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 737, 668","time":"2025-07-30T10:50:20-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 738, 738","time":"2025-07-30T10:50:20-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 739, 641","time":"2025-07-30T10:50:20-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 740, 881","time":"2025-07-30T10:50:20-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 741, 853","time":"2025-07-30T10:50:20-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 743, 876","time":"2025-07-30T10:50:20-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 744, 718","time":"2025-07-30T10:50:21-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 745, 639","time":"2025-07-30T10:50:21-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 746, 862","time":"2025-07-30T10:50:21-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 747, 791","time":"2025-07-30T10:50:21-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 748, 815","time":"2025-07-30T10:50:21-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 749, 688","time":"2025-07-30T10:50:21-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 750, 725","time":"2025-07-30T10:50:21-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 751, 763","time":"2025-07-30T10:50:21-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 658, 752","time":"2025-07-30T10:50:21-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 753, 866","time":"2025-07-30T10:50:21-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 754, 711","time":"2025-07-30T10:50:21-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 755, 883","time":"2025-07-30T10:50:22-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 756, 730","time":"2025-07-30T10:50:22-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 732, 757","time":"2025-07-30T10:50:22-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 758, 712","time":"2025-07-30T10:50:22-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 759, 640","time":"2025-07-30T10:50:22-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 760, 775","time":"2025-07-30T10:50:22-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 761, 742","time":"2025-07-30T10:50:22-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 762, 714","time":"2025-07-30T10:50:22-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 763, 835","time":"2025-07-30T10:50:22-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 765, 660","time":"2025-07-30T10:50:22-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 831, 766","time":"2025-07-30T10:50:22-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 767, 785","time":"2025-07-30T10:50:23-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 768, 633","time":"2025-07-30T10:50:23-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 769, 631","time":"2025-07-30T10:50:23-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 770, 854","time":"2025-07-30T10:50:23-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 771, 710","time":"2025-07-30T10:50:23-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 772, 766","time":"2025-07-30T10:50:23-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 773, 887","time":"2025-07-30T10:50:23-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 733, 774","time":"2025-07-30T10:50:23-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 775, 655","time":"2025-07-30T10:50:23-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 776, 661","time":"2025-07-30T10:50:23-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 771, 777","time":"2025-07-30T10:50:24-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 778, 646","time":"2025-07-30T10:50:24-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 779, 638","time":"2025-07-30T10:50:24-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 780, 764","time":"2025-07-30T10:50:24-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 829, 781","time":"2025-07-30T10:50:24-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 782, 874","time":"2025-07-30T10:50:24-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 784, 890","time":"2025-07-30T10:50:24-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 785, 878","time":"2025-07-30T10:50:24-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 786, 652","time":"2025-07-30T10:50:24-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 787, 643","time":"2025-07-30T10:50:24-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 788, 779","time":"2025-07-30T10:50:24-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 789, 723","time":"2025-07-30T10:50:24-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 790, 669","time":"2025-07-30T10:50:24-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 791, 653","time":"2025-07-30T10:50:25-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 792, 872","time":"2025-07-30T10:50:25-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 793, 776","time":"2025-07-30T10:50:25-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 794, 842","time":"2025-07-30T10:50:25-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 811, 795","time":"2025-07-30T10:50:25-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 724, 796","time":"2025-07-30T10:50:25-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 797, 657","time":"2025-07-30T10:50:25-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 798, 727","time":"2025-07-30T10:50:25-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 799, 817","time":"2025-07-30T10:50:25-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 800, 792","time":"2025-07-30T10:50:25-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 877, 801","time":"2025-07-30T10:50:26-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 802, 761","time":"2025-07-30T10:50:26-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 803, 794","time":"2025-07-30T10:50:26-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 804, 762","time":"2025-07-30T10:50:26-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 805, 868","time":"2025-07-30T10:50:26-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 863, 806","time":"2025-07-30T10:50:26-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 807, 837","time":"2025-07-30T10:50:26-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 808, 735","time":"2025-07-30T10:50:26-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 644, 809","time":"2025-07-30T10:50:26-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 810, 891","time":"2025-07-30T10:50:26-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 811, 737","time":"2025-07-30T10:50:27-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 812, 780","time":"2025-07-30T10:50:27-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 813, 635","time":"2025-07-30T10:50:27-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 814, 790","time":"2025-07-30T10:50:27-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 829, 927","time":"2025-07-30T10:50:27-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 832, 930","time":"2025-07-30T10:50:27-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 834, 921","time":"2025-07-30T10:50:27-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 931, 835","time":"2025-07-30T10:50:27-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 937, 840","time":"2025-07-30T10:50:27-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 938, 841","time":"2025-07-30T10:50:27-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 942, 845","time":"2025-07-30T10:50:27-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 846, 948","time":"2025-07-30T10:50:27-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 849, 951","time":"2025-07-30T10:50:28-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 853, 955","time":"2025-07-30T10:50:28-04:00"} +{"file":"operaciones.go:51","func":"db.(*GormDatabase).SyncRows","level":"debug","msg":"[🧹 Tabla: public.sync_bp_customers] Procesando batch de 19 registros","time":"2025-07-30T10:50:28-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: card_code = ? AND u_embaidtm = ? valores: 629, 54","time":"2025-07-30T10:50:28-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 61, 194","time":"2025-07-30T10:50:28-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 92, 147","time":"2025-07-30T10:50:28-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 328, 191","time":"2025-07-30T10:50:28-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 387, 315","time":"2025-07-30T10:50:28-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 515, 136","time":"2025-07-30T10:50:28-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 629, 202","time":"2025-07-30T10:50:28-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 729, 726","time":"2025-07-30T10:50:28-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 859, 961","time":"2025-07-30T10:50:29-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 860, 962","time":"2025-07-30T10:50:29-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 863, 965","time":"2025-07-30T10:50:29-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 882, 984","time":"2025-07-30T10:50:29-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 926, 1028","time":"2025-07-30T10:50:29-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_bp_customers] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND card_code = ? valores: 929, 1031","time":"2025-07-30T10:50:29-04:00"} +{"file":"operaciones.go:133","func":"db.(*GormDatabase).SyncRows","level":"info","msg":"[🧹 Tabla: public.sync_bp_customers] ✅ Finalizacion Syncing data...","time":"2025-07-30T10:50:29-04:00"} +{"file":"fetcher.go:35","func":"sync.SyncData","level":"info","msg":"[🧩 Job: sync_graphql] Iniciando proceso parametros:graphql_user","time":"2025-07-30T10:50:29-04:00"} +{"file":"redis_loader.go:20","func":"utils.CargarDesdeRedis[...]","level":"debug","msg":"🔑 Clave [parametros:graphql_user] obtenida de Redis: {\n \"auth\": {\n \"method\": \"POST\",\n \"path\": \"/api/auth/token\",\n \"headers\": {\n \"Content-Type\": \"application/json\",\n \"User-Agent\": \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36\",\n \"origin\": \"https://azure-function.timemanagerweb.com\",\n \"Accept\": \"application/json\",\n \"tenant-name\": \"pruebas-dos\"\n },\n \"gql\": true\n },\n \"service\": {\n \"gql\": true,\n \"method\": \"POST\",\n \"path\": \"/graphql/\",\n \"headers\": {\n \"Accept\": \"application/json\",\n \"Content-Type\": \"application/json\",\n \"User-Agent\": \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36\",\n \"origin\": \"https://azure-function.timemanagerweb.com\",\n \"tenant-name\": \"pruebas-dos\"\n },\n \"graphql\": {\n \"query\": \"query ($limit: Int, $orderBy: String, $orderDesc: Boolean, $page: Int) {\\n Users(limit: $limit, order_by: $orderBy, order_dir: $orderDesc, page: $page) {\\n meta {\\n hasNextPage\\n hasPreviousPage\\n limit\\n next\\n page\\n pages\\n previous\\n total\\n }\\n users {\\n created_at\\n daysAllow\\n email\\n enabled\\n fullName\\n id\\n locale\\n shortName\\n superAdmin\\n updated_at\\n userType\\n username\\n }\\n }\\n}\",\n \"root_field\": \"Users\",\n \"row_field\": \"users\",\n \"variables\": {\n \"limit\": 100,\n \"orderBy\": \"orderBy\",\n \"orderDesc\": true,\n \"page\": 1\n },\n \"pagination\": {\n \"enabled\": true,\n \"cursorField\": \"data.Users.meta.next\",\n \"hasNextField\": \"data.Users.meta.hasNextPage\",\n \"limitField\": \"limit\",\n \"cursorParam\": \"page\"\n }\n }\n },\n \"persistencia\": {\n \"table\": \"public.sync_users\",\n \"batch_size\": 100,\n \"campo_sync\": \"sync_updated_at\",\n \"primary_key\": \"id\",\n \"fields\": {\n \"id\": \"id\",\n \"username\": \"username\",\n \"email\": \"email\",\n \"full_name\": \"fullName\",\n \"short_name\": \"shortName\",\n \"locale\": \"locale\",\n \"user_type\": \"userType\",\n \"enabled\": \"enabled\",\n \"super_admin\": \"superAdmin\",\n \"days_allow\": \"daysAllow\",\n \"created_at\": \"created_at\",\n \"updated_at\": \"updated_at\"\n },\n \"soft_delete\": {\n \"field\": \"sync_updated_at\",\n \"enabled\": false\n }\n }\n}","time":"2025-07-30T10:50:29-04:00"} +{"file":"session.go:27","func":"http.GetSession","level":"info","msg":"[🧩 Job: sync_graphql] 🔑 Sesión obtenida de Redis session:TM_PROD:TM","time":"2025-07-30T10:50:29-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: POST https://apinewtm.com/graphql/\nHeaders: map[Accept:[application/json] Authorization:[Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJpYXQiOjE3NTM4ODY1MjIsImV4cCI6MTc1Mzk2NjUyMiwiaWQiOjEwNSwidXNlcm5hbWUiOiJpbnRlZ3JhY2lvbmVzQGVtYmEuYm8iLCJhcGlrZXkiOiI5Yzg0ZjYzZTRlMzk2ZGZmOWU5ZjU3NDI5OGRmZWUzOSIsImFwaWtleUNyZWF0ZWRBdCI6eyJkYXRlIjoiMjAyNS0wNy0xNyAxMDo0MToyNS4wMDAwMDAiLCJ0aW1lem9uZV90eXBlIjozLCJ0aW1lem9uZSI6IkFtZXJpY2EvQm9nb3RhIn0sImZ1bGxOYW1lIjoiSW50ZWdyYWNpw7NuIEVNQkEiLCJlbWFpbCI6ImludGVncmFjaW9uZXNAZW1iYS5ibyIsImxvY2FsZSI6ImVzIiwiZGF5c0FsbG93ZWQiOjMwLCJpc0Nvb3JkaW5hdG9yIjpmYWxzZSwidHlwZVRhc2tWaWV3IjoibGlzdHMiLCJkYXlzYWxsb3ciOjMwLCJyb2xlcyI6e30sInNob3J0X25hbWUiOiJJTi5FTUJBIiwicGVybWlzc2lvbnMiOlsic3luY19leHRlcm5hbF9idXNpbmVzcyIsInN5bmNfZXh0ZXJuYWxfY3VzdG9tZXIiLCJzeW5jX2V4dGVybmFsX21pbGVzdG9uZSIsImFic2VuY2VfYXBwcm92ZSIsImFic2VuY2VfY3JlYXRlX2FsbCIsImFic2VuY2VfY3JlYXRlX293biIsImFic2VuY2VfbWVudSIsImFjY291bnRpbmdfYnVzaW5lc3NfbGlzdCIsImFjY291bnRpbmdfY3VzdG9tZXJfbGlzdCIsImJpbGxpbmdfcGVyaW9kX2RlbGV0ZV9hbGwiLCJiaWxsaW5nX3BlcmlvZF9lZGl0X2FsbCIsImJpbGxpbmdfcGVyaW9kX2xpc3QiLCJiaWxsaW5nX3BlcmlvZF9yZWFjdGl2YXRlIiwiYm9hcmRfcmF0ZV91c2VyX2NyZWF0ZSIsImJvYXJkX3JhdGVfdXNlcl9lZGl0IiwiYnVzaW5lc3NfY3JlYXRlIiwiYnVzaW5lc3NfZGVzY3JpcHRpb25fc2F2ZSIsImJ1c2luZXNzX2VkaXQiLCJidXNpbmVzc19saXN0X2FsbCIsImJ1c2luZXNzX21lbnUiLCJidXNpbmVzc19yZXNwb25zaWJsZV9saXN0X2FsbCIsImJ1c2luZXNzX3NlZV9iaWxsaW5nX2luZm8iLCJidXNpbmVzc2VzX2FsbG93ZWRfdXNlcl9jcmVhdGUiLCJidXNpbmVzc2VzX2FsbG93ZWRfdXNlcl9kZWxldGUiLCJjb21wYW55X2Rpc2FibGUiLCJjb21wYW55X2VkaXQiLCJjb21wYW55X2xpc3QiLCJjb25jZXB0X2NyZWF0ZSIsImNvbmNlcHRfZWRpdCIsImNvbmNlcHRfbWVudSIsImNvbnRhY3RfY3JlYXRlIiwiY29udGFjdF9jcmVhdGVfZmFzdCIsImNvbnRhY3RfZWRpdCIsImNvbnRhY3RfbGlzdCIsImNvbnRhY3RfbWVudSIsImN1c3RvbWVyX2NyZWF0ZSIsImN1c3RvbWVyX2NyZWF0ZV9mYXN0IiwiY3VzdG9tZXJfZWRpdCIsImN1c3RvbWVyX2xpc3QiLCJjdXN0b21lcl9saXN0X2FsbCIsImN1c3RvbWVyX21lbnUiLCJleHBlbnNlX2NyZWF0ZV9hbGwiLCJleHBlbnNlX2RlbGV0ZV9hbGwiLCJleHBlbnNlX2R1cGxpY2F0ZSIsImV4cGVuc2VfZWRpdF9hbGwiLCJleHBlbnNlX2xpc3RfYWxsIiwiZXhwZW5zZV9tZW51IiwiZXhwZW5zZV9yZWplY3RfYWxsIiwiZmFiX3Nob3ciLCJmaWxlX21lbnUiLCJnZW9yZWZlcmVuY2VfY3JlYXRlIiwiZ2VvcmVmZXJlbmNlX2VkaXQiLCJnZW9yZWZlcmVuY2VfbWVudSIsImdvX3RvX2xlZ2FjeSIsImluZGljYXRvcnNfbWVudSIsImludm9pY2VfY3JlYXRlIiwiaW52b2ljZV9kZXRhaWxfbGlzdF9hbGwiLCJpbnZvaWNlX2ZpeF90aW1lc19jdXN0b21fdmFsdWUiLCJpbnZvaWNlX2xpc3RfYWxsIiwiaW52b2ljZWFkdmFuY2VfY3JlYXRlIiwiaW52b2ljZWFkdmFuY2VfbGlzdCIsImludm9pY2VhZHZhbmNlX3VwZGF0ZSIsImxvZ19saXN0X2FsbCIsImxvZ19saXN0X293biIsIm1pbGVzdG9uZV9jcmVhdGUiLCJtaWxlc3RvbmVfZGVsZXRlIiwibWlsZXN0b25lX2VkaXQiLCJtb250aGx5X2ZpeF9yYXRlX2dyb3VwX2NyZWF0ZSIsIm1vbnRobHlfZml4X3JhdGVfZ3JvdXBfZWRpdCIsIm1vbnRobHlfdXNlcl9jb3N0X2NyZWF0ZSIsIm1vbnRobHlfdXNlcl9jb3N0X2VkaXQiLCJwYXltZW50X2NyZWF0ZSIsInBheW1lbnRfZGVsZXRlIiwicGF5bWVudF9lZGl0IiwicGF5bWVudF9tZW51IiwicHJvY2VkdXJlX21lbnUiLCJwcm9jZWR1cmVfcmF0ZV9jcmVhdGUiLCJwcm9jZWR1cmVfcmF0ZV9kZXRhaWxfY3JlYXRlIiwicHJvY2VkdXJlX3JhdGVfZGV0YWlsX2VkaXQiLCJwcm9jZWR1cmVfcmF0ZV9kZXRhaWxfbGlzdCIsInByb2NlZHVyZV9yYXRlX2VkaXQiLCJwcm9jZWR1cmVfcmF0ZV9saXN0IiwicHJvY2VkdXJlX3JhdGVfbWVudSIsInByb2NlZHVyZV90cmFuc2FjdGlvbl9saXN0IiwicHJvamVjdF9hcmNoaXZlX2Nhc2NhZGVfYWxsIiwicHJvamVjdF9kZWxldGVfY2FzY2FkZV9hbGwiLCJwcm9qZWN0X3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInJhdGVfYnVzaW5lc3NfY2F0ZWdvcnlfY3JlYXRlIiwicmF0ZV9idXNpbmVzc19jYXRlZ29yeV9lZGl0IiwicmF0ZV9idXNpbmVzc191c2VyX2NyZWF0ZSIsInJhdGVfYnVzaW5lc3NfdXNlcl9lZGl0IiwicmF0ZV9leGNoYW5nZV9jcmVhdGUiLCJyYXRlX2V4Y2hhbmdlX2VkaXQiLCJyYXRlX2V4Y2hhbmdlX2xpc3QiLCJyYXRlX3VzZXJfY3JlYXRlIiwicmF0ZV91c2VyX2VkaXQiLCJyb2xlX2NyZWF0ZSIsInJvbGVfZWRpdF9hbGwiLCJyb2xlX2xpc3RfYWxsIiwic2VjdGlvbl9hcmNoaXZlX2Nhc2NhZGVfYWxsIiwic2VjdGlvbl9kZWxldGVfY2FzY2FkZV9hbGwiLCJzZWN0aW9uX3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInNlZV9tZW51X3JhdGVfZXhjaGFuZ2UiLCJzZXJpZV9jcmVhdGUiLCJzZXJpZV9lZGl0Iiwic2VyaWVfbWVudSIsInNldHRpbmdzX3ZpZXciLCJzdXBwbGllcl9jcmVhdGUiLCJ0YXNrX2FkZF90aW1lX2FsbCIsInRhc2tfYWRkX3RpbWVfb3duIiwidGFza19hc3NpZ25lZF91c2VyX2VtYWlsIiwidGFza19jbG9zZWRfZW1haWwiLCJ0YXNrX2NyZWF0ZV9hbGwiLCJ0YXNrX2NyZWF0ZV9jb21tZW50X2VtYWlsIiwidGFza19jcmVhdGVfc2VsZiIsInRhc2tfY3JlYXRlX3RlYW0iLCJ0YXNrX2RlbGV0ZV9hbGwiLCJ0YXNrX2RlbGV0ZV9vd24iLCJ0YXNrX2RlbGV0ZV90ZWFtIiwidGFza19lZGl0X2FsbCIsInRhc2tfZWRpdF9kdWVfZGF0ZSIsInRhc2tfZWRpdF9vd24iLCJ0YXNrX2VkaXRfdGVhbSIsInRhc2tfbGlzdF9hbGwiLCJ0YXNrX2xpc3Rfb3duIiwidGFza19saXN0X3RlYW0iLCJ0YXNrX21hc3NpdmVpbXBvcnQiLCJ0YXNrX21lbnUiLCJ0YXNrX21pZ3JhdGlvbiIsInRhc2tfc2V0X2FkZGl0aW9uYWxfYXNzaWduZWVzIiwidGFza19zZXRfZHVlX2RhdGUiLCJ0YXNrX3NldF9lc3RpbWF0ZWRfdGltZSIsInRhc2tfc2V0X3ByaW9yaXR5IiwidGFza19zZXRfcHJvZ3Jlc3MiLCJ0YXhfZWRpdF9hbGwiLCJ0YXhfbGlzdF9hbGwiLCJ0ZWFtX2FyY2hpdmVfY2FzY2FkZV9hbGwiLCJ0ZWFtX2NyZWF0ZV9hbGwiLCJ0ZWFtX2RlbGV0ZV9hbGwiLCJ0ZWFtX2VkaXRfYWxsIiwidGVhbV9saXN0X2FsbCIsInRlYW1fbGlzdF9vd24iLCJ0ZWFtX3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInRpbWVfYWNjZXB0X2FsbCIsInRpbWVfYWNjZXB0X293biIsInRpbWVfYXBwcm92ZV9hbGwiLCJ0aW1lX2FwcHJvdmVfb3duIiwidGltZV9jcmVhdGVfYWxsIiwidGltZV9jcmVhdGVfb3duIiwidGltZV9kZWxldGVfYWxsIiwidGltZV9kZWxldGVfb3duIiwidGltZV9kZW55X2FsbCIsInRpbWVfZGVueV9vd24iLCJ0aW1lX2Rvd25sb2FkZmlsZV9hbGwiLCJ0aW1lX2Rvd25sb2FkZmlsZV9vd24iLCJ0aW1lX2VkaXRfYWxsIiwidGltZV9lZGl0X2Nsb3NlX3BlcmlvZF9hbGwiLCJ0aW1lX2VkaXRfY2xvc2VfcGVyaW9kX293biIsInRpbWVfZWRpdF9vd24iLCJ0aW1lX2xpc3RfYWxsIiwidGltZV9saXN0X293biIsInRpbWVfbWVudSIsInRpbWVfbWludXRlc196ZXJvIiwidGltZV9yZWplY3RfYWxsIiwidGltZV9yZXN0cmljdGVkX3BlcmlvZF9jcmVhdGUiLCJ0aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX2VkaXQiLCJ0aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX21lbnUiLCJ0aW1lX3NoYXJlX2FsbCIsInRpbWVfc2hhcmVfb3duIiwidGltZV9zaG93X2NhbGVuZGFyX3ZpZXciLCJ0aW1lX3VwbG9hZGZpbGVfYWxsIiwidGltZV91cGxvYWRmaWxlX293biIsInRyYW5zYWN0aW9uX2FkYXB0ZXJfbGlzdCIsInRyYW5zYWN0aW9uX2xpc3QiLCJ1c2VyX2Fic2VuY2VzX3Nob3ciLCJ1c2VyX2Nvc3RfY3JlYXRlIiwidXNlcl9jb3N0X2VkaXQiLCJ1c2VyX2Nvc3RfbGlzdCIsInVzZXJfY29zdF9tZW51IiwidXNlcl9jb3N0X3JhdGVfY3JlYXRlIiwidXNlcl9jb3N0X3JhdGVfZWRpdCIsInVzZXJfY29zdF9yYXRlX2xpc3QiLCJ1c2VyX2NyZWF0ZSIsInVzZXJfZGlzYWJsZSIsInVzZXJfZWRpdCIsInVzZXJfZWRpdF9kYXlzX2FsbG93X29ubHkiLCJ1c2VyX2dyb3VwX3JvbGVfY3JlYXRlX2FsbCIsInVzZXJfZ3JvdXBfcm9sZV9kZWxldGVfYWxsIiwidXNlcl9ncm91cF9yb2xlX2VkaXRfYWxsIiwidXNlcl9ncm91cF9yb2xlc19saXN0X2FsbCIsInVzZXJfbGlzdCIsInVzZXJfbGlzdF9hbGwiLCJ1c2VyX21hc3NfYWN0aXZhdGlvbiIsInVzZXJfcHJvZHVjdGl2aXR5X2NyZWF0ZSIsInVzZXJfcHJvZHVjdGl2aXR5X2Rpc2FibGUiLCJ1c2VyX3Byb2R1Y3Rpdml0eV9lZGl0IiwidXNlcl9wcm9kdWN0aXZpdHlfZW5hYmxlIiwidXNlcl9wcm9kdWN0aXZpdHlfbWVudSIsInVzZXJfdGltZV9yZXN0cmljdGVkX3BlcmlvZF9jcmVhdGUiLCJ1c2VyX3RpbWVfcmVzdHJpY3RlZF9wZXJpb2RfZGVsZXRlIiwidXNlcl90aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX2VkaXQiLCJ1c2VyZ3JvdXBfY3JlYXRlX2FsbCIsInVzZXJncm91cF9kZWxldGVfYWxsIiwidXNlcmdyb3VwX2VkaXRfYWxsIiwidXNlcmdyb3VwX2xpc3RfYWxsIiwidXNlcmdyb3VwX21lbnUiLCJ1c2Vyc191c2VyX2dyb3VwX2NyZWF0ZV9hbGwiLCJ1c2Vyc191c2VyX2dyb3VwX2RlbGV0ZV9hbGwiLCJ1c2Vyc191c2VyX2dyb3VwX2VkaXRfYWxsIiwidXNlcnNfdXNlcl9ncm91cHNfbGlzdF9hbGwiXSwiaG9tZXBhZ2UiOm51bGx9.kShN7NXGoaz1oFro-yYNyIpIEcnNpo1GiB8SFGKFUJtDQoqyp1I1w-CMA8Kta3vWXnUZwx-y2z1yVSJaMpZbqQgKFlakpcf6351bZSL8IAUPExSfLz0HYYCWFx-Usx94BBTqosKsRhnT8PkPN3dGxs8-XTIEDi9gN-Pk9OSHmM5mPkTsaaxTY40M-F7Y0Up2y6s_lwFaX13CmstiYZSXzyKL9SUBBx-E6-8qQAfuKPIoZ_50jSGPW98-IkAcWwqO6yGf-M07dSfFZ2vLfwc3ulHm2p8jVSmRxJ_O43BEWQD5cvqGbVIvSMXkS4y98DL4Vencjjg27iu3CUJsDNBBTg] Content-Type:[application/json] Origin:[https://azure-function.timemanagerweb.com] Tenant-Name:[pruebas-dos] User-Agent:[Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36]]\nBody: map[query:query ($limit: Int, $orderBy: String, $orderDesc: Boolean, $page: Int) {\n Users(limit: $limit, order_by: $orderBy, order_dir: $orderDesc, page: $page) {\n meta {\n hasNextPage\n hasPreviousPage\n limit\n next\n page\n pages\n previous\n total\n }\n users {\n created_at\n daysAllow\n email\n enabled\n fullName\n id\n locale\n shortName\n superAdmin\n updated_at\n userType\n username\n }\n }\n} variables:map[limit:100 orderBy:orderBy orderDesc:true page:1]]\n","time":"2025-07-30T10:50:29-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: POST https://apinewtm.com/graphql/ | Status: 200 | Duration: 818.9506ms\nHeaders: map[Access-Control-Allow-Credentials:[true] Access-Control-Allow-Origin:[https://azure-function.timemanagerweb.com] Access-Control-Expose-Headers:[link, access-control-allow-credentials] Cache-Control:[no-cache, private] Content-Type:[application/json] Date:[Wed, 30 Jul 2025 14:50:30 GMT] Server:[] Vary:[Authorization]]\nBody: {\"errors\":[{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":14,\"column\":7}],\"path\":[\"Users\",\"users\",68,\"created_at\"]}],\"data\":{\"Users\":{\"meta\":{\"hasNextPage\":false,\"hasPreviousPage\":false,\"limit\":100,\"next\":-1,\"page\":1,\"pages\":1,\"previous\":-1,\"total\":88},\"users\":[{\"created_at\":\"2012-05-08 14:49:53\",\"daysAllow\":302,\"email\":\"ihurtado@emba.com\",\"enabled\":true,\"fullName\":\"Ingrid Hurtado\",\"id\":1,\"locale\":\"es\",\"shortName\":\"ihurtado\",\"superAdmin\":true,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":0,\"username\":\"ihurtado@emba.com\"},{\"created_at\":\"2012-12-27 21:06:56\",\"daysAllow\":302,\"email\":\"\",\"enabled\":true,\"fullName\":\"TM Master\",\"id\":2,\"locale\":\"es\",\"shortName\":\"TM\",\"superAdmin\":true,\"updated_at\":\"2024-08-29 14:19:23\",\"userType\":4,\"username\":\"tmmaster\"},{\"created_at\":\"2021-05-11 23:40:08\",\"daysAllow\":302,\"email\":\"walter@timemanagerweb.com\",\"enabled\":true,\"fullName\":\"Soporte Nivel II\",\"id\":3,\"locale\":\"es\",\"shortName\":\"SN2\",\"superAdmin\":true,\"updated_at\":\"2025-03-14 15:07:02\",\"userType\":4,\"username\":\"soporteTM\"},{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"amorenog@emba.com\",\"enabled\":true,\"fullName\":\"Andres Moreno Gutierrez\",\"id\":5,\"locale\":\"es\",\"shortName\":\"amoreno\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"amorenog@emba.com\"},{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"nicoln042001@gmail.com\",\"enabled\":true,\"fullName\":\"Daniel Marcelo Arredondo Zelada\",\"id\":6,\"locale\":\"es\",\"shortName\":\"darredon\",\"superAdmin\":false,\"updated_at\":\"2024-09-03 11:43:07\",\"userType\":1,\"username\":\"darredondo@emba.com.bo\"},{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"lmorenog@emba.com\",\"enabled\":true,\"fullName\":\"Luis Moreno Gutierrez\",\"id\":8,\"locale\":\"es\",\"shortName\":\"lmoreno\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"lmorenog@emba.com\"},{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"paramayo@emba.com\",\"enabled\":true,\"fullName\":\"Paul Aramayo Salinas\",\"id\":9,\"locale\":\"es\",\"shortName\":\"paramayo\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"paramayo@emba.com\"},{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"tmercado@emba.com\",\"enabled\":true,\"fullName\":\"Teddy Alberto Mercado Carrion\",\"id\":12,\"locale\":\"es\",\"shortName\":\"tmercado\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"tmercado@emba.com\"},{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"cdelgado@emba.com\",\"enabled\":true,\"fullName\":\"Cristhian Delgado Ramirez\",\"id\":13,\"locale\":\"es\",\"shortName\":\"cdelgado\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"cdelgado@emba.com\"},{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"cmerino@emba.com\",\"enabled\":true,\"fullName\":\"Carlos Merino Troche\",\"id\":14,\"locale\":\"es\",\"shortName\":\"cmerino\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"cmerino@emba.com\"},{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"nezegarra@emba.com\",\"enabled\":true,\"fullName\":\"Natalio Eduardo Zegarra Ribera\",\"id\":15,\"locale\":\"es\",\"shortName\":\"nzegarra\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"nezegarra@emba.com\"},{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"rburgos@emba.com\",\"enabled\":true,\"fullName\":\"Edwin Rodrigo Burgos Fernandez\",\"id\":16,\"locale\":\"es\",\"shortName\":\"rburgos\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rburgos@emba.com\"},{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"aaraoz@emba.com\",\"enabled\":true,\"fullName\":\"Alvaro Araoz Ardaya\",\"id\":17,\"locale\":\"es\",\"shortName\":\"aaraoz\",\"superAdmin\":false,\"updated_at\":\"2024-12-04 15:29:19\",\"userType\":1,\"username\":\"aaraoz@emba.com\"},{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"flanda@emba.com\",\"enabled\":true,\"fullName\":\"Carlos Fernando Landa Alejandro\",\"id\":18,\"locale\":\"es\",\"shortName\":\"flanda\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"flanda@emba.com\"},{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"iayala@emba.com\",\"enabled\":true,\"fullName\":\"Ines Ayala\",\"id\":19,\"locale\":\"es\",\"shortName\":\"iayala\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"iayala@emba.com\"},{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"jpzegada@emba.com\",\"enabled\":true,\"fullName\":\"Juan Pablo Zegada\",\"id\":20,\"locale\":\"es\",\"shortName\":\"jzegada\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"jpzegada@emba.com\"},{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"mblanco@emba.com\",\"enabled\":true,\"fullName\":\"Mois\\u00e9s Marco Blanco Iturri\",\"id\":21,\"locale\":\"es\",\"shortName\":\"mblanco\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"mblanco@emba.com\"},{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"wrojo@emba.com\",\"enabled\":true,\"fullName\":\"Wilfredo Rojo\",\"id\":22,\"locale\":\"es\",\"shortName\":\"wrojo\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"wrojo@emba.com\"},{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"atejerina@emba.com\",\"enabled\":true,\"fullName\":\"Andre Luis Tejerina Queiroz\",\"id\":25,\"locale\":\"es\",\"shortName\":\"atejerin\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"atejerina@emba.com\"},{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"cpaz@emba.com\",\"enabled\":true,\"fullName\":\"Carla Paz\",\"id\":28,\"locale\":\"es\",\"shortName\":\"cpaz\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"cpaz@emba.com\"},{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"dcuellarf@emba.com\",\"enabled\":true,\"fullName\":\"Jhonny David Cuellar Franco\",\"id\":29,\"locale\":\"es\",\"shortName\":\"dcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"dcuellarf@emba.com\"},{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fveremeenco@emba.com\",\"enabled\":true,\"fullName\":\"Fernanda Veremeenco\",\"id\":30,\"locale\":\"es\",\"shortName\":\"fveremee\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fveremeenco@emba.com\"},{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"gargote@emba.com\",\"enabled\":true,\"fullName\":\"Grissel Argote\",\"id\":31,\"locale\":\"es\",\"shortName\":\"gargote\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"gargote@emba.com\"},{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"gmorales@emba.com\",\"enabled\":true,\"fullName\":\"Gabriela Morales\",\"id\":32,\"locale\":\"es\",\"shortName\":\"gmorales\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"gmorales@emba.com\"},{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"jcruz@emba.com\",\"enabled\":true,\"fullName\":\"Juan Pablo Cruz\",\"id\":33,\"locale\":\"es\",\"shortName\":\"jbarrios\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"jcruz@emba.com\"},{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"jcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Juan Diego Cuellar\",\"id\":34,\"locale\":\"es\",\"shortName\":\"jcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"jcuellar@emba.com\"},{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"jnavarro@emba.com\",\"enabled\":true,\"fullName\":\"Jose Maria Navarro Velasquez\",\"id\":35,\"locale\":\"es\",\"shortName\":\"jmnavarr\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"jnavarro@emba.com\"},{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"lrodriguez@emba.com\",\"enabled\":true,\"fullName\":\"Lilian Rodr\\u00edguez\",\"id\":38,\"locale\":\"es\",\"shortName\":\"lrodrigu\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"lrodriguez@emba.com\"},{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"mcondori@emba.com\",\"enabled\":true,\"fullName\":\"Magaly Condori\",\"id\":39,\"locale\":\"es\",\"shortName\":\"mcondori\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"mcondori@emba.com\"},{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"mquezada@emba.com\",\"enabled\":true,\"fullName\":\"Miguel Quezada\",\"id\":40,\"locale\":\"es\",\"shortName\":\"mquezada\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"mquezada@emba.com\"},{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"nsanjines@emba.com\",\"enabled\":true,\"fullName\":\"Noelia Patricia Sanjin\\u00e9s Badani\",\"id\":41,\"locale\":\"es\",\"shortName\":\"nsanjine\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"nsanjines@emba.com\"},{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"pminaya@emba.com\",\"enabled\":true,\"fullName\":\"Pamela Minaya\",\"id\":42,\"locale\":\"es\",\"shortName\":\"pminaya\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"pminaya@emba.com\"},{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"pmunoz@emba.com\",\"enabled\":true,\"fullName\":\"Pamela Mu\\u00f1oz\",\"id\":43,\"locale\":\"es\",\"shortName\":\"pmunoz\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"pmunoz@emba.com\"},{\"created_at\":\"2023-12-26 22:28:16\",\"daysAllow\":302,\"email\":\"rcanaza@emba.com\",\"enabled\":true,\"fullName\":\"Ruth Canaza\",\"id\":44,\"locale\":\"es\",\"shortName\":\"rcanaza\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcanaza@emba.com\"},{\"created_at\":\"2023-12-26 22:28:16\",\"daysAllow\":302,\"email\":\"rmondacca@emba.com\",\"enabled\":true,\"fullName\":\"Rafaela Mondacca\",\"id\":45,\"locale\":\"es\",\"shortName\":\"rmondacc\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rmondacca@emba.com\"},{\"created_at\":\"2023-12-26 22:28:16\",\"daysAllow\":302,\"email\":\"rsoliz@emba.com\",\"enabled\":true,\"fullName\":\"Rosalia Soliz Soto\",\"id\":46,\"locale\":\"es\",\"shortName\":\"rsoliz\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rsoliz@emba.com\"},{\"created_at\":\"2023-12-26 22:28:16\",\"daysAllow\":302,\"email\":\"sadriazola@emba.com\",\"enabled\":true,\"fullName\":\"Santiago Adriazola\",\"id\":47,\"locale\":\"es\",\"shortName\":\"sadriazo\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"sadriazola@emba.com\"},{\"created_at\":\"2023-12-26 22:28:16\",\"daysAllow\":302,\"email\":\"saguilera@emba.com\",\"enabled\":true,\"fullName\":\"Sebastian Aguilera\",\"id\":48,\"locale\":\"es\",\"shortName\":\"saguiler\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"saguilera@emba.com\"},{\"created_at\":\"2023-12-26 22:28:16\",\"daysAllow\":302,\"email\":\"sgantier@emba.com\",\"enabled\":true,\"fullName\":\"Santiago Gantier\",\"id\":49,\"locale\":\"es\",\"shortName\":\"sgantier\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"sgantier@emba.com\"},{\"created_at\":\"2023-12-26 22:28:16\",\"daysAllow\":302,\"email\":\"tcarrasco@emba.com\",\"enabled\":true,\"fullName\":\"Maria Teresa Carrasco Suarez\",\"id\":50,\"locale\":\"es\",\"shortName\":\"tcarrasc\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"tcarrasco@emba.com\"},{\"created_at\":\"2023-12-26 22:28:16\",\"daysAllow\":302,\"email\":\"aloayza@emba.com\",\"enabled\":true,\"fullName\":\"Ana Luz Loayza\",\"id\":51,\"locale\":\"es\",\"shortName\":\"aloayza\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"aloayza@emba.com\"},{\"created_at\":\"2023-12-26 22:28:16\",\"daysAllow\":302,\"email\":\"dvillarroel@emba.com\",\"enabled\":true,\"fullName\":\"Diana Villarroel\",\"id\":52,\"locale\":\"es\",\"shortName\":\"dvillarr\",\"superAdmin\":false,\"updated_at\":\"2024-11-15 15:41:36\",\"userType\":1,\"username\":\"dvillarroel@emba.com\"},{\"created_at\":\"2023-12-26 22:28:16\",\"daysAllow\":302,\"email\":\"mquisbert@emba.com\",\"enabled\":true,\"fullName\":\"Melvin Quisbert\",\"id\":53,\"locale\":\"es\",\"shortName\":\"mquisber\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"mquisbert@emba.com\"},{\"created_at\":\"2023-12-26 22:28:16\",\"daysAllow\":302,\"email\":\"sturdera@emba.com\",\"enabled\":true,\"fullName\":\"Samata Turdera\",\"id\":56,\"locale\":\"es\",\"shortName\":\"sturdera\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"sturdera@emba.com\"},{\"created_at\":\"2023-12-26 22:28:16\",\"daysAllow\":302,\"email\":\"msuarez@emba.com\",\"enabled\":true,\"fullName\":\"Marco Suarez\",\"id\":58,\"locale\":\"es\",\"shortName\":\"msuarez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"msuarez@emba.com\"},{\"created_at\":\"2023-12-26 22:28:16\",\"daysAllow\":302,\"email\":\"jcastro.emba@gmail.com\",\"enabled\":true,\"fullName\":\"Jorge Castro\",\"id\":59,\"locale\":\"es\",\"shortName\":\"jcastro\",\"superAdmin\":false,\"updated_at\":\"2024-08-29 14:19:23\",\"userType\":1,\"username\":\"jcastro.emba@gmail.com\"},{\"created_at\":\"2023-12-26 22:28:16\",\"daysAllow\":302,\"email\":\"kgutierrez@emba.com\",\"enabled\":true,\"fullName\":\"Katherine Gutierrez\",\"id\":61,\"locale\":\"es\",\"shortName\":\"kgutierr\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"kgutierrez@emba.com\"},{\"created_at\":\"2023-12-26 22:28:16\",\"daysAllow\":302,\"email\":\"vflores@emba.com\",\"enabled\":true,\"fullName\":\"Rosa Valeria Flores\",\"id\":62,\"locale\":\"es\",\"shortName\":\"vflores\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"vflores@emba.com\"},{\"created_at\":\"2023-12-26 22:28:16\",\"daysAllow\":302,\"email\":\"cgonzales@emba.com\",\"enabled\":true,\"fullName\":\"Carolina Gonzales\",\"id\":63,\"locale\":\"es\",\"shortName\":\"cgonzale\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"cgonzales@emba.com\"},{\"created_at\":\"2023-12-26 22:28:17\",\"daysAllow\":302,\"email\":\"mvidez@emba.com\",\"enabled\":true,\"fullName\":\"Maria Eugenia Videz\",\"id\":64,\"locale\":\"es\",\"shortName\":\"mvidez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"mvidez@emba.com\"},{\"created_at\":\"2023-12-26 22:28:17\",\"daysAllow\":302,\"email\":\"mcalatayud@emba.com\",\"enabled\":true,\"fullName\":\"Mikael Calatayud\",\"id\":65,\"locale\":\"es\",\"shortName\":\"mcalatay\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"mcalatayud@emba.com\"},{\"created_at\":\"2023-12-26 22:28:17\",\"daysAllow\":302,\"email\":\"dbarrios@emba.com\",\"enabled\":true,\"fullName\":\"Daniela Barrios\",\"id\":66,\"locale\":\"es\",\"shortName\":\"dbarrios\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"dbarrios@emba.com\"},{\"created_at\":\"2023-12-26 22:28:17\",\"daysAllow\":302,\"email\":\"mdavila@emba.com\",\"enabled\":true,\"fullName\":\"Marcelo D\\u00e1vila\",\"id\":67,\"locale\":\"es\",\"shortName\":\"mdavila\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":0,\"username\":\"mdavila@emba.com\"},{\"created_at\":\"2023-12-26 22:28:17\",\"daysAllow\":302,\"email\":\"lchalco@emba.com\",\"enabled\":true,\"fullName\":\"Limbert Alfredo Chalco Herrera\",\"id\":68,\"locale\":\"es\",\"shortName\":\"lchalco\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":0,\"username\":\"lchalco@emba.com\"},{\"created_at\":\"2023-12-26 22:28:17\",\"daysAllow\":302,\"email\":\"andres.cruz@timemanagerweb.com\",\"enabled\":true,\"fullName\":\"Carmen Escobar\",\"id\":69,\"locale\":\"es\",\"shortName\":\"cescobar\",\"superAdmin\":false,\"updated_at\":\"2024-11-06 10:16:55\",\"userType\":0,\"username\":\"cescobar@emba.com\"},{\"created_at\":\"2023-12-26 22:28:17\",\"daysAllow\":302,\"email\":\"hmarquez@emba.com\",\"enabled\":true,\"fullName\":\"Hubert Marquez\",\"id\":70,\"locale\":\"es\",\"shortName\":\"hmarquez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":4,\"username\":\"hmarquez@emba.com\"},{\"created_at\":\"2023-12-26 22:28:17\",\"daysAllow\":302,\"email\":\"mrodriguez@emba.com\",\"enabled\":true,\"fullName\":\"Milandia Rodiguez\",\"id\":71,\"locale\":\"es\",\"shortName\":\"mrodrigu\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":0,\"username\":\"mrodriguez@emba.com\"},{\"created_at\":\"2023-12-28 20:51:13\",\"daysAllow\":302,\"email\":\"Prueba@prueba.com\",\"enabled\":true,\"fullName\":\"Ramiro Moreno Baldivieso\",\"id\":72,\"locale\":\"es\",\"shortName\":\"rmorenob\",\"superAdmin\":false,\"updated_at\":\"2024-08-29 14:19:23\",\"userType\":1,\"username\":\"Prueba@prueba.com\"},{\"created_at\":\"2021-05-11 23:40:08\",\"daysAllow\":302,\"email\":\"wdoria@timemanagerweb.com\",\"enabled\":true,\"fullName\":\"Soporte TM Nivel I\",\"id\":73,\"locale\":\"es\",\"shortName\":\"STM1\",\"superAdmin\":false,\"updated_at\":\"2024-08-29 14:19:23\",\"userType\":4,\"username\":\"wdoria@timemanagerweb.com\"},{\"created_at\":\"2024-01-18 12:58:19\",\"daysAllow\":302,\"email\":\"vmoreno@emba.com\",\"enabled\":true,\"fullName\":\"Victoria Moreno\",\"id\":74,\"locale\":\"es\",\"shortName\":\"vmoreno\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"vmoreno@emba.com\"},{\"created_at\":\"2024-02-08 00:16:01\",\"daysAllow\":302,\"email\":\"ckaegui@emba.com\",\"enabled\":true,\"fullName\":\"Camila Kaegui\",\"id\":75,\"locale\":\"es\",\"shortName\":\"ckaegui\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"ckaegui@emba.com\"},{\"created_at\":\"2012-05-08 14:49:53\",\"daysAllow\":302,\"email\":\"luz@timemanagerweb.com\",\"enabled\":true,\"fullName\":\"Luz S\\u00e1nchez\",\"id\":76,\"locale\":\"es\",\"shortName\":\"AMTM1\",\"superAdmin\":true,\"updated_at\":\"2024-11-05 21:55:33\",\"userType\":4,\"username\":\"luz@timemanagerweb.com\"},{\"created_at\":\"2021-05-11 23:40:08\",\"daysAllow\":302,\"email\":\"pcorredor26@gmail.com\",\"enabled\":true,\"fullName\":\"AMTM Pruebas\",\"id\":77,\"locale\":\"es\",\"shortName\":\"AM\",\"superAdmin\":true,\"updated_at\":\"2025-07-21 10:12:54\",\"userType\":1,\"username\":\"pcorredor26@gmail.com\"},{\"created_at\":\"2024-02-20 19:28:08\",\"daysAllow\":302,\"email\":\"efuentes@emba.com\",\"enabled\":true,\"fullName\":\"Erick Fuentes\",\"id\":78,\"locale\":\"es\",\"shortName\":\"efuentes\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"efuentes@emba.com\"},{\"created_at\":\"2024-02-20 21:23:22\",\"daysAllow\":302,\"email\":\"cquispe@emba.com\",\"enabled\":true,\"fullName\":\"Carlos Quispe\",\"id\":80,\"locale\":\"es\",\"shortName\":\"cquispe\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"cquispe@emba.com\"},{\"created_at\":null,\"daysAllow\":302,\"email\":\"dayana@timemanagerweb.com\",\"enabled\":true,\"fullName\":\"Facturacion TM\",\"id\":81,\"locale\":\"es\",\"shortName\":\"FTTM\",\"superAdmin\":false,\"updated_at\":\"2024-08-29 14:19:23\",\"userType\":4,\"username\":\"FacturacionTM\"},{\"created_at\":\"2024-02-29 14:32:57\",\"daysAllow\":302,\"email\":\"dantelo@emba.com\",\"enabled\":true,\"fullName\":\"David Antelo\",\"id\":82,\"locale\":\"es\",\"shortName\":\"dantelo\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"dantelo@emba.com\"},{\"created_at\":\"2024-03-18 22:11:19\",\"daysAllow\":302,\"email\":\"gkenta@emba.com\",\"enabled\":true,\"fullName\":\"Gabriela Kenta\",\"id\":83,\"locale\":\"es\",\"shortName\":\"gkenta\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"gkenta@emba.com\"},{\"created_at\":\"2024-03-19 13:50:44\",\"daysAllow\":302,\"email\":\"agomez@timemanagerweb.com\",\"enabled\":true,\"fullName\":\"Andrea Gomez\",\"id\":84,\"locale\":\"es\",\"shortName\":\"AG\",\"superAdmin\":false,\"updated_at\":\"2024-08-29 14:19:23\",\"userType\":4,\"username\":\"agomez@timemanagerweb.com\"},{\"created_at\":\"2021-05-11 23:40:08\",\"daysAllow\":70,\"email\":\"nicol.ramirez@timemanagerweb.com\",\"enabled\":true,\"fullName\":\"Soporte QA\",\"id\":85,\"locale\":\"es\",\"shortName\":\"QA\",\"superAdmin\":false,\"updated_at\":\"2024-11-06 15:26:16\",\"userType\":4,\"username\":\"nicol.ramirez@timemanagerweb.com\"},{\"created_at\":\"2024-04-12 21:04:46\",\"daysAllow\":15,\"email\":\"\",\"enabled\":true,\"fullName\":\"Integracion SAP\",\"id\":86,\"locale\":\"es\",\"shortName\":\"TM\",\"superAdmin\":false,\"updated_at\":\"2024-08-29 14:19:23\",\"userType\":4,\"username\":\"integracion_sap\"},{\"created_at\":\"2021-05-11 23:40:08\",\"daysAllow\":70,\"email\":\"nicoln042001@gmail.com\",\"enabled\":true,\"fullName\":\"Soporte QA timekeeper\",\"id\":87,\"locale\":\"es\",\"shortName\":\"QA\",\"superAdmin\":false,\"updated_at\":\"2025-04-07 12:03:19\",\"userType\":1,\"username\":\"nicoln042001@gmail.com\"},{\"created_at\":\"2021-05-11 23:40:08\",\"daysAllow\":70,\"email\":\"pcorredor@timemanagerweb.com\",\"enabled\":true,\"fullName\":\"AM TM\",\"id\":88,\"locale\":\"es\",\"shortName\":\"AM\",\"superAdmin\":false,\"updated_at\":\"2024-10-22 19:29:35\",\"userType\":4,\"username\":\"pcorredor@timemanagerweb.com\"},{\"created_at\":\"2024-05-15 19:45:48\",\"daysAllow\":30,\"email\":\"mblab@emba.com\",\"enabled\":true,\"fullName\":\"mblab\",\"id\":89,\"locale\":\"es\",\"shortName\":\"mblab\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"mblab@emba.com\"},{\"created_at\":\"2024-05-24 19:25:38\",\"daysAllow\":10,\"email\":\"nicoll.ramirez0402@gmail.com\",\"enabled\":true,\"fullName\":\"TestUser\",\"id\":92,\"locale\":\"es\",\"shortName\":\"test\",\"superAdmin\":false,\"updated_at\":\"2025-04-07 11:31:52\",\"userType\":1,\"username\":\"nicoll.ramirez0402@gmail.com\"},{\"created_at\":\"2024-09-19 15:18:38\",\"daysAllow\":30,\"email\":\"luz.scoronel@gmail.com\",\"enabled\":true,\"fullName\":\"Time Manager\",\"id\":93,\"locale\":\"es\",\"shortName\":\"TM\",\"superAdmin\":false,\"updated_at\":\"2024-09-30 15:04:52\",\"userType\":1,\"username\":\"luz.scoronel@gmail.com\"},{\"created_at\":\"2024-09-23 13:57:58\",\"daysAllow\":30,\"email\":\"any@timemanagerweb.com\",\"enabled\":true,\"fullName\":\"Any Colorado\",\"id\":94,\"locale\":\"es\",\"shortName\":\"AC\",\"superAdmin\":false,\"updated_at\":\"2024-11-05 14:04:49\",\"userType\":1,\"username\":\"any@timemanagerweb.com\"},{\"created_at\":\"2024-10-23 11:08:12\",\"daysAllow\":20,\"email\":\"anyk.salas@hotmail.com\",\"enabled\":true,\"fullName\":\"AnyTime\",\"id\":95,\"locale\":\"es\",\"shortName\":\"AC\",\"superAdmin\":false,\"updated_at\":\"2025-07-01 11:26:45\",\"userType\":1,\"username\":\"anyk.salas@hotmail.com\"},{\"created_at\":\"2024-11-06 10:18:57\",\"daysAllow\":30,\"email\":\"andres.cruz@timemanagerweb.com\",\"enabled\":true,\"fullName\":\"Andr\\u00e9s Cruz\",\"id\":96,\"locale\":null,\"shortName\":\"AC\",\"superAdmin\":false,\"updated_at\":\"2024-11-06 10:21:11\",\"userType\":0,\"username\":\"andres.cruz@timemanagerweb.com\"},{\"created_at\":\"2024-11-07 09:58:11\",\"daysAllow\":30,\"email\":\"cristian@timemanagerweb.com\",\"enabled\":true,\"fullName\":\"Cristian Rodriguez\",\"id\":97,\"locale\":\"es\",\"shortName\":\"CRR\",\"superAdmin\":false,\"updated_at\":\"2024-11-07 10:03:51\",\"userType\":0,\"username\":\"cristian@timemanagerweb.com\"},{\"created_at\":\"2024-11-07 15:06:26\",\"daysAllow\":70,\"email\":\"daniela.casallas@timemanagerweb.com\",\"enabled\":true,\"fullName\":\"Daniela Casallas TM\",\"id\":98,\"locale\":\"es\",\"shortName\":\"DCTM\",\"superAdmin\":false,\"updated_at\":\"2025-05-08 14:15:17\",\"userType\":0,\"username\":\"daniela.casallas@timemanagerweb.com\"},{\"created_at\":\"2025-02-13 15:46:18\",\"daysAllow\":30,\"email\":\"diego@timemanagerweb.com\",\"enabled\":true,\"fullName\":\"Diego\",\"id\":102,\"locale\":\"es\",\"shortName\":\"DM\",\"superAdmin\":false,\"updated_at\":\"2025-02-13 15:51:01\",\"userType\":0,\"username\":\"diego@timemanagerweb.com\"},{\"created_at\":\"2025-05-22 10:01:21\",\"daysAllow\":8,\"email\":\"acastillo@timemanagerweb.com\",\"enabled\":true,\"fullName\":\"Felipe Castillo\",\"id\":103,\"locale\":\"es\",\"shortName\":\"FPC\",\"superAdmin\":false,\"updated_at\":\"2025-06-04 15:21:00\",\"userType\":0,\"username\":\"acastillo@timemanagerweb.com\"},{\"created_at\":\"2025-06-12 11:42:13\",\"daysAllow\":30,\"email\":\"mdavila@emba.com.bo\",\"enabled\":true,\"fullName\":\"Marcelo Moreno Baldivieso\",\"id\":104,\"locale\":\"es\",\"shortName\":\"MMB\",\"superAdmin\":false,\"updated_at\":\"2025-06-12 11:47:13\",\"userType\":1,\"username\":\"mdavila@emba.com.bo\"},{\"created_at\":\"2025-07-10 12:37:31\",\"daysAllow\":30,\"email\":\"integraciones@emba.bo\",\"enabled\":true,\"fullName\":\"Integraci\\u00f3n EMBA\",\"id\":105,\"locale\":\"es\",\"shortName\":\"IN.EMBA\",\"superAdmin\":false,\"updated_at\":\"2025-07-17 10:41:25\",\"userType\":1,\"username\":\"integraciones@emba.bo\"}]}}}\n","time":"2025-07-30T10:50:30-04:00"} +{"file":"fetcher.go:69","func":"sync.SyncData","level":"info","msg":"[🧩 Job: sync_graphql] Cantidad de elementos: 88","time":"2025-07-30T10:50:30-04:00"} +{"file":"operaciones.go:25","func":"db.(*GormDatabase).SyncRows","level":"info","msg":"[🧹 Tabla: public.sync_users] ✅ Inicializacion Syncing data...","time":"2025-07-30T10:50:30-04:00"} +{"file":"operaciones.go:51","func":"db.(*GormDatabase).SyncRows","level":"debug","msg":"[🧹 Tabla: public.sync_users] Procesando batch de 88 registros","time":"2025-07-30T10:50:30-04:00"} +{"file":"operaciones.go:133","func":"db.(*GormDatabase).SyncRows","level":"info","msg":"[🧹 Tabla: public.sync_users] ✅ Finalizacion Syncing data...","time":"2025-07-30T10:50:30-04:00"} +{"file":"fetcher.go:35","func":"sync.SyncData","level":"info","msg":"[🧩 Job: sync_graphql] Iniciando proceso parametros:graphql_projects","time":"2025-07-30T10:50:30-04:00"} +{"file":"redis_loader.go:20","func":"utils.CargarDesdeRedis[...]","level":"debug","msg":"🔑 Clave [parametros:graphql_projects] obtenida de Redis: {\n \"auth\": {\n \"gql\": true,\n \"method\": \"POST\",\n \"path\": \"/api/auth/token\",\n \"headers\": {\n \"Content-Type\": \"application/json\",\n \"User-Agent\": \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36\",\n \"origin\": \"https://azure-function.timemanagerweb.com\",\n \"Accept\": \"application/json\",\n \"tenant-name\": \"pruebas-dos\"\n }\n },\n \"service\": {\n \"gql\": true,\n \"method\": \"POST\",\n \"path\": \"/graphql/\",\n \"headers\": {\n \"Accept\": \"application/json\",\n \"Content-Type\": \"application/json\",\n \"User-Agent\": \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36\",\n \"origin\": \"https://azure-function.timemanagerweb.com\",\n \"tenant-name\": \"pruebas-dos\"\n },\n \"graphql\": {\n \"query\": \"query ($limit: Int, $orderBy: String, $orderDesc: Boolean, $page: Int) { BusinessMeta(limit: $limit, orderBy: $orderBy, orderDesc: $orderDesc, page: $page) { meta { hasNextPage hasPreviousPage limit next page pages previous total } rows { apply_procedures billable business_customer_code caseNumber closed_date confidential created_at discountAmount discountPercent displayName enableBusinessAllowedUsers expedient finishedDate fixRateValue fix_rate_value hourLimit hour_limit id internal_code isBillable limitAlert notes partialCharges partial_charges primary_external_code processing secondaryExternalCode secondary_external_code status statusMarking updated_at withIVA responsible { created_at daysAllow email enabled fullName id locale shortName superAdmin updated_at userType username } customer { id name primary_external_code company { id name } } practiceArea { id externalCode name } } } }\",\n \"root_field\": \"BusinessMeta\",\n \"row_field\": \"rows\",\n \"variables\": {\n \"limit\": 100,\n \"orderBy\": \"orderBy\",\n \"orderDesc\": true,\n \"page\": 1\n },\n \"pagination\": {\n \"enabled\": true,\n \"cursorField\": \"data.BusinessMeta.meta.next\",\n \"hasNextField\": \"data.BusinessMeta.meta.hasNextPage\",\n \"limitField\": \"variables.limit\",\n \"cursorParam\": \"page\"\n }\n }\n },\n \"persistencia\": {\n \"table\": \"public.sync_proyectos\",\n \"update_by\": {\n \"u_embaidtm\": \"id\",\n \"code\": \"primary_external_code\"\n },\n \"batch_size\": 100,\n \"campo_sync\": \"sync_updated_at\",\n \"primary_key\": \"code\",\n \"soft_delete\": {\n \"enabled\": false,\n \"field\": \"sync_updated_at\"\n },\n \"static_fields\": null,\n\t\t\"fields\": {\n \"id\": \"id\",\n \"display_name\": \"displayName\",\n \"internal_code\": \"internal_code\",\n \"primary_external_code\": \"primary_external_code\",\n \"secondary_external_code\": \"secondaryExternalCode\",\n \"expedient\": \"expedient\",\n \"case_number\": \"caseNumber\",\n \"created_at\": \"created_at\",\n \"updated_at\": \"updated_at\",\n \"closed_date\": \"closed_date\",\n \"finished_date\": \"finishedDate\",\n \"notes\": \"notes\",\n \"status\": \"status\",\n \"status_marking\": \"statusMarking\",\n \"is_billable\": \"isBillable\",\n \"billable\": \"billable\",\n \"with_iva\": \"withIVA\",\n \"fix_rate_value\": \"fix_rate_value\",\n \"hour_limit\": \"hour_limit\",\n \"limit_alert\": \"limitAlert\",\n \"partial_charges\": \"partial_charges\",\n \"discount_amount\": \"discountAmount\",\n \"discount_percent\": \"discountPercent\",\n \"apply_procedures\": \"apply_procedures\",\n \"processing\": \"processing\",\n \"confidential\": \"confidential\",\n \"business_customer_code\": \"business_customer_code\",\n \"enable_business_allowed_users\": \"enableBusinessAllowedUsers\",\n\n \"responsible_id\": \"responsible.id\",\n \"responsible_username\": \"responsible.username\",\n \"responsible_email\": \"responsible.email\",\n \"responsible_fullname\": \"responsible.fullName\",\n \"responsible_shortname\": \"responsible.shortName\",\n \"responsible_locale\": \"responsible.locale\",\n \"responsible_user_type\": \"responsible.userType\",\n \"responsible_super_admin\": \"responsible.superAdmin\",\n \"responsible_enabled\": \"responsible.enabled\",\n \"responsible_created_at\": \"responsible.created_at\",\n \"responsible_updated_at\": \"responsible.updated_at\",\n \"responsible_days_allow\": \"responsible.daysAllow\",\n\n \"customer_id\": \"customer.id\",\n \"customer_name\": \"customer.name\",\n \"customer_primary_code\": \"customer.primary_external_code\",\n \"customer_company_id\": \"customer.company.id\",\n \"customer_company_name\": \"customer.company.name\",\n\n \"practice_area_id\": \"practiceArea.id\",\n \"practice_area_code\": \"practiceArea.externalCode\",\n \"practice_area_name\": \"practiceArea.name\"\n }\n }\n}","time":"2025-07-30T10:50:31-04:00"} +{"file":"session.go:27","func":"http.GetSession","level":"info","msg":"[🧩 Job: sync_graphql] 🔑 Sesión obtenida de Redis session:TM_PROD:TM","time":"2025-07-30T10:50:31-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: POST https://apinewtm.com/graphql/\nHeaders: map[Accept:[application/json] Authorization:[Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJpYXQiOjE3NTM4ODY1MjIsImV4cCI6MTc1Mzk2NjUyMiwiaWQiOjEwNSwidXNlcm5hbWUiOiJpbnRlZ3JhY2lvbmVzQGVtYmEuYm8iLCJhcGlrZXkiOiI5Yzg0ZjYzZTRlMzk2ZGZmOWU5ZjU3NDI5OGRmZWUzOSIsImFwaWtleUNyZWF0ZWRBdCI6eyJkYXRlIjoiMjAyNS0wNy0xNyAxMDo0MToyNS4wMDAwMDAiLCJ0aW1lem9uZV90eXBlIjozLCJ0aW1lem9uZSI6IkFtZXJpY2EvQm9nb3RhIn0sImZ1bGxOYW1lIjoiSW50ZWdyYWNpw7NuIEVNQkEiLCJlbWFpbCI6ImludGVncmFjaW9uZXNAZW1iYS5ibyIsImxvY2FsZSI6ImVzIiwiZGF5c0FsbG93ZWQiOjMwLCJpc0Nvb3JkaW5hdG9yIjpmYWxzZSwidHlwZVRhc2tWaWV3IjoibGlzdHMiLCJkYXlzYWxsb3ciOjMwLCJyb2xlcyI6e30sInNob3J0X25hbWUiOiJJTi5FTUJBIiwicGVybWlzc2lvbnMiOlsic3luY19leHRlcm5hbF9idXNpbmVzcyIsInN5bmNfZXh0ZXJuYWxfY3VzdG9tZXIiLCJzeW5jX2V4dGVybmFsX21pbGVzdG9uZSIsImFic2VuY2VfYXBwcm92ZSIsImFic2VuY2VfY3JlYXRlX2FsbCIsImFic2VuY2VfY3JlYXRlX293biIsImFic2VuY2VfbWVudSIsImFjY291bnRpbmdfYnVzaW5lc3NfbGlzdCIsImFjY291bnRpbmdfY3VzdG9tZXJfbGlzdCIsImJpbGxpbmdfcGVyaW9kX2RlbGV0ZV9hbGwiLCJiaWxsaW5nX3BlcmlvZF9lZGl0X2FsbCIsImJpbGxpbmdfcGVyaW9kX2xpc3QiLCJiaWxsaW5nX3BlcmlvZF9yZWFjdGl2YXRlIiwiYm9hcmRfcmF0ZV91c2VyX2NyZWF0ZSIsImJvYXJkX3JhdGVfdXNlcl9lZGl0IiwiYnVzaW5lc3NfY3JlYXRlIiwiYnVzaW5lc3NfZGVzY3JpcHRpb25fc2F2ZSIsImJ1c2luZXNzX2VkaXQiLCJidXNpbmVzc19saXN0X2FsbCIsImJ1c2luZXNzX21lbnUiLCJidXNpbmVzc19yZXNwb25zaWJsZV9saXN0X2FsbCIsImJ1c2luZXNzX3NlZV9iaWxsaW5nX2luZm8iLCJidXNpbmVzc2VzX2FsbG93ZWRfdXNlcl9jcmVhdGUiLCJidXNpbmVzc2VzX2FsbG93ZWRfdXNlcl9kZWxldGUiLCJjb21wYW55X2Rpc2FibGUiLCJjb21wYW55X2VkaXQiLCJjb21wYW55X2xpc3QiLCJjb25jZXB0X2NyZWF0ZSIsImNvbmNlcHRfZWRpdCIsImNvbmNlcHRfbWVudSIsImNvbnRhY3RfY3JlYXRlIiwiY29udGFjdF9jcmVhdGVfZmFzdCIsImNvbnRhY3RfZWRpdCIsImNvbnRhY3RfbGlzdCIsImNvbnRhY3RfbWVudSIsImN1c3RvbWVyX2NyZWF0ZSIsImN1c3RvbWVyX2NyZWF0ZV9mYXN0IiwiY3VzdG9tZXJfZWRpdCIsImN1c3RvbWVyX2xpc3QiLCJjdXN0b21lcl9saXN0X2FsbCIsImN1c3RvbWVyX21lbnUiLCJleHBlbnNlX2NyZWF0ZV9hbGwiLCJleHBlbnNlX2RlbGV0ZV9hbGwiLCJleHBlbnNlX2R1cGxpY2F0ZSIsImV4cGVuc2VfZWRpdF9hbGwiLCJleHBlbnNlX2xpc3RfYWxsIiwiZXhwZW5zZV9tZW51IiwiZXhwZW5zZV9yZWplY3RfYWxsIiwiZmFiX3Nob3ciLCJmaWxlX21lbnUiLCJnZW9yZWZlcmVuY2VfY3JlYXRlIiwiZ2VvcmVmZXJlbmNlX2VkaXQiLCJnZW9yZWZlcmVuY2VfbWVudSIsImdvX3RvX2xlZ2FjeSIsImluZGljYXRvcnNfbWVudSIsImludm9pY2VfY3JlYXRlIiwiaW52b2ljZV9kZXRhaWxfbGlzdF9hbGwiLCJpbnZvaWNlX2ZpeF90aW1lc19jdXN0b21fdmFsdWUiLCJpbnZvaWNlX2xpc3RfYWxsIiwiaW52b2ljZWFkdmFuY2VfY3JlYXRlIiwiaW52b2ljZWFkdmFuY2VfbGlzdCIsImludm9pY2VhZHZhbmNlX3VwZGF0ZSIsImxvZ19saXN0X2FsbCIsImxvZ19saXN0X293biIsIm1pbGVzdG9uZV9jcmVhdGUiLCJtaWxlc3RvbmVfZGVsZXRlIiwibWlsZXN0b25lX2VkaXQiLCJtb250aGx5X2ZpeF9yYXRlX2dyb3VwX2NyZWF0ZSIsIm1vbnRobHlfZml4X3JhdGVfZ3JvdXBfZWRpdCIsIm1vbnRobHlfdXNlcl9jb3N0X2NyZWF0ZSIsIm1vbnRobHlfdXNlcl9jb3N0X2VkaXQiLCJwYXltZW50X2NyZWF0ZSIsInBheW1lbnRfZGVsZXRlIiwicGF5bWVudF9lZGl0IiwicGF5bWVudF9tZW51IiwicHJvY2VkdXJlX21lbnUiLCJwcm9jZWR1cmVfcmF0ZV9jcmVhdGUiLCJwcm9jZWR1cmVfcmF0ZV9kZXRhaWxfY3JlYXRlIiwicHJvY2VkdXJlX3JhdGVfZGV0YWlsX2VkaXQiLCJwcm9jZWR1cmVfcmF0ZV9kZXRhaWxfbGlzdCIsInByb2NlZHVyZV9yYXRlX2VkaXQiLCJwcm9jZWR1cmVfcmF0ZV9saXN0IiwicHJvY2VkdXJlX3JhdGVfbWVudSIsInByb2NlZHVyZV90cmFuc2FjdGlvbl9saXN0IiwicHJvamVjdF9hcmNoaXZlX2Nhc2NhZGVfYWxsIiwicHJvamVjdF9kZWxldGVfY2FzY2FkZV9hbGwiLCJwcm9qZWN0X3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInJhdGVfYnVzaW5lc3NfY2F0ZWdvcnlfY3JlYXRlIiwicmF0ZV9idXNpbmVzc19jYXRlZ29yeV9lZGl0IiwicmF0ZV9idXNpbmVzc191c2VyX2NyZWF0ZSIsInJhdGVfYnVzaW5lc3NfdXNlcl9lZGl0IiwicmF0ZV9leGNoYW5nZV9jcmVhdGUiLCJyYXRlX2V4Y2hhbmdlX2VkaXQiLCJyYXRlX2V4Y2hhbmdlX2xpc3QiLCJyYXRlX3VzZXJfY3JlYXRlIiwicmF0ZV91c2VyX2VkaXQiLCJyb2xlX2NyZWF0ZSIsInJvbGVfZWRpdF9hbGwiLCJyb2xlX2xpc3RfYWxsIiwic2VjdGlvbl9hcmNoaXZlX2Nhc2NhZGVfYWxsIiwic2VjdGlvbl9kZWxldGVfY2FzY2FkZV9hbGwiLCJzZWN0aW9uX3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInNlZV9tZW51X3JhdGVfZXhjaGFuZ2UiLCJzZXJpZV9jcmVhdGUiLCJzZXJpZV9lZGl0Iiwic2VyaWVfbWVudSIsInNldHRpbmdzX3ZpZXciLCJzdXBwbGllcl9jcmVhdGUiLCJ0YXNrX2FkZF90aW1lX2FsbCIsInRhc2tfYWRkX3RpbWVfb3duIiwidGFza19hc3NpZ25lZF91c2VyX2VtYWlsIiwidGFza19jbG9zZWRfZW1haWwiLCJ0YXNrX2NyZWF0ZV9hbGwiLCJ0YXNrX2NyZWF0ZV9jb21tZW50X2VtYWlsIiwidGFza19jcmVhdGVfc2VsZiIsInRhc2tfY3JlYXRlX3RlYW0iLCJ0YXNrX2RlbGV0ZV9hbGwiLCJ0YXNrX2RlbGV0ZV9vd24iLCJ0YXNrX2RlbGV0ZV90ZWFtIiwidGFza19lZGl0X2FsbCIsInRhc2tfZWRpdF9kdWVfZGF0ZSIsInRhc2tfZWRpdF9vd24iLCJ0YXNrX2VkaXRfdGVhbSIsInRhc2tfbGlzdF9hbGwiLCJ0YXNrX2xpc3Rfb3duIiwidGFza19saXN0X3RlYW0iLCJ0YXNrX21hc3NpdmVpbXBvcnQiLCJ0YXNrX21lbnUiLCJ0YXNrX21pZ3JhdGlvbiIsInRhc2tfc2V0X2FkZGl0aW9uYWxfYXNzaWduZWVzIiwidGFza19zZXRfZHVlX2RhdGUiLCJ0YXNrX3NldF9lc3RpbWF0ZWRfdGltZSIsInRhc2tfc2V0X3ByaW9yaXR5IiwidGFza19zZXRfcHJvZ3Jlc3MiLCJ0YXhfZWRpdF9hbGwiLCJ0YXhfbGlzdF9hbGwiLCJ0ZWFtX2FyY2hpdmVfY2FzY2FkZV9hbGwiLCJ0ZWFtX2NyZWF0ZV9hbGwiLCJ0ZWFtX2RlbGV0ZV9hbGwiLCJ0ZWFtX2VkaXRfYWxsIiwidGVhbV9saXN0X2FsbCIsInRlYW1fbGlzdF9vd24iLCJ0ZWFtX3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInRpbWVfYWNjZXB0X2FsbCIsInRpbWVfYWNjZXB0X293biIsInRpbWVfYXBwcm92ZV9hbGwiLCJ0aW1lX2FwcHJvdmVfb3duIiwidGltZV9jcmVhdGVfYWxsIiwidGltZV9jcmVhdGVfb3duIiwidGltZV9kZWxldGVfYWxsIiwidGltZV9kZWxldGVfb3duIiwidGltZV9kZW55X2FsbCIsInRpbWVfZGVueV9vd24iLCJ0aW1lX2Rvd25sb2FkZmlsZV9hbGwiLCJ0aW1lX2Rvd25sb2FkZmlsZV9vd24iLCJ0aW1lX2VkaXRfYWxsIiwidGltZV9lZGl0X2Nsb3NlX3BlcmlvZF9hbGwiLCJ0aW1lX2VkaXRfY2xvc2VfcGVyaW9kX293biIsInRpbWVfZWRpdF9vd24iLCJ0aW1lX2xpc3RfYWxsIiwidGltZV9saXN0X293biIsInRpbWVfbWVudSIsInRpbWVfbWludXRlc196ZXJvIiwidGltZV9yZWplY3RfYWxsIiwidGltZV9yZXN0cmljdGVkX3BlcmlvZF9jcmVhdGUiLCJ0aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX2VkaXQiLCJ0aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX21lbnUiLCJ0aW1lX3NoYXJlX2FsbCIsInRpbWVfc2hhcmVfb3duIiwidGltZV9zaG93X2NhbGVuZGFyX3ZpZXciLCJ0aW1lX3VwbG9hZGZpbGVfYWxsIiwidGltZV91cGxvYWRmaWxlX293biIsInRyYW5zYWN0aW9uX2FkYXB0ZXJfbGlzdCIsInRyYW5zYWN0aW9uX2xpc3QiLCJ1c2VyX2Fic2VuY2VzX3Nob3ciLCJ1c2VyX2Nvc3RfY3JlYXRlIiwidXNlcl9jb3N0X2VkaXQiLCJ1c2VyX2Nvc3RfbGlzdCIsInVzZXJfY29zdF9tZW51IiwidXNlcl9jb3N0X3JhdGVfY3JlYXRlIiwidXNlcl9jb3N0X3JhdGVfZWRpdCIsInVzZXJfY29zdF9yYXRlX2xpc3QiLCJ1c2VyX2NyZWF0ZSIsInVzZXJfZGlzYWJsZSIsInVzZXJfZWRpdCIsInVzZXJfZWRpdF9kYXlzX2FsbG93X29ubHkiLCJ1c2VyX2dyb3VwX3JvbGVfY3JlYXRlX2FsbCIsInVzZXJfZ3JvdXBfcm9sZV9kZWxldGVfYWxsIiwidXNlcl9ncm91cF9yb2xlX2VkaXRfYWxsIiwidXNlcl9ncm91cF9yb2xlc19saXN0X2FsbCIsInVzZXJfbGlzdCIsInVzZXJfbGlzdF9hbGwiLCJ1c2VyX21hc3NfYWN0aXZhdGlvbiIsInVzZXJfcHJvZHVjdGl2aXR5X2NyZWF0ZSIsInVzZXJfcHJvZHVjdGl2aXR5X2Rpc2FibGUiLCJ1c2VyX3Byb2R1Y3Rpdml0eV9lZGl0IiwidXNlcl9wcm9kdWN0aXZpdHlfZW5hYmxlIiwidXNlcl9wcm9kdWN0aXZpdHlfbWVudSIsInVzZXJfdGltZV9yZXN0cmljdGVkX3BlcmlvZF9jcmVhdGUiLCJ1c2VyX3RpbWVfcmVzdHJpY3RlZF9wZXJpb2RfZGVsZXRlIiwidXNlcl90aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX2VkaXQiLCJ1c2VyZ3JvdXBfY3JlYXRlX2FsbCIsInVzZXJncm91cF9kZWxldGVfYWxsIiwidXNlcmdyb3VwX2VkaXRfYWxsIiwidXNlcmdyb3VwX2xpc3RfYWxsIiwidXNlcmdyb3VwX21lbnUiLCJ1c2Vyc191c2VyX2dyb3VwX2NyZWF0ZV9hbGwiLCJ1c2Vyc191c2VyX2dyb3VwX2RlbGV0ZV9hbGwiLCJ1c2Vyc191c2VyX2dyb3VwX2VkaXRfYWxsIiwidXNlcnNfdXNlcl9ncm91cHNfbGlzdF9hbGwiXSwiaG9tZXBhZ2UiOm51bGx9.kShN7NXGoaz1oFro-yYNyIpIEcnNpo1GiB8SFGKFUJtDQoqyp1I1w-CMA8Kta3vWXnUZwx-y2z1yVSJaMpZbqQgKFlakpcf6351bZSL8IAUPExSfLz0HYYCWFx-Usx94BBTqosKsRhnT8PkPN3dGxs8-XTIEDi9gN-Pk9OSHmM5mPkTsaaxTY40M-F7Y0Up2y6s_lwFaX13CmstiYZSXzyKL9SUBBx-E6-8qQAfuKPIoZ_50jSGPW98-IkAcWwqO6yGf-M07dSfFZ2vLfwc3ulHm2p8jVSmRxJ_O43BEWQD5cvqGbVIvSMXkS4y98DL4Vencjjg27iu3CUJsDNBBTg] Content-Type:[application/json] Origin:[https://azure-function.timemanagerweb.com] Tenant-Name:[pruebas-dos] User-Agent:[Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36]]\nBody: map[query:query ($limit: Int, $orderBy: String, $orderDesc: Boolean, $page: Int) { BusinessMeta(limit: $limit, orderBy: $orderBy, orderDesc: $orderDesc, page: $page) { meta { hasNextPage hasPreviousPage limit next page pages previous total } rows { apply_procedures billable business_customer_code caseNumber closed_date confidential created_at discountAmount discountPercent displayName enableBusinessAllowedUsers expedient finishedDate fixRateValue fix_rate_value hourLimit hour_limit id internal_code isBillable limitAlert notes partialCharges partial_charges primary_external_code processing secondaryExternalCode secondary_external_code status statusMarking updated_at withIVA responsible { created_at daysAllow email enabled fullName id locale shortName superAdmin updated_at userType username } customer { id name primary_external_code company { id name } } practiceArea { id externalCode name } } } } variables:map[limit:100 orderBy:orderBy orderDesc:true page:1]]\n","time":"2025-07-30T10:50:31-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: POST https://apinewtm.com/graphql/ | Status: 200 | Duration: 1.0962606s\nHeaders: map[Access-Control-Allow-Credentials:[true] Access-Control-Allow-Origin:[https://azure-function.timemanagerweb.com] Access-Control-Expose-Headers:[link, access-control-allow-credentials] Cache-Control:[no-cache, private] Content-Type:[application/json] Date:[Wed, 30 Jul 2025 14:50:31 GMT] Server:[] Vary:[Authorization]]\nBody: {\"data\":{\"BusinessMeta\":{\"meta\":{\"hasNextPage\":true,\"hasPreviousPage\":false,\"limit\":100,\"next\":2,\"page\":1,\"pages\":16,\"previous\":-1,\"total\":1573},\"rows\":[{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":\"\",\"caseNumber\":null,\"closed_date\":\"2024-07-19 00:00:00\",\"confidential\":false,\"created_at\":\"2023-08-30 05:00:00\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-SR-001113 - Asesor\\u00eda regulatoria especializada por horas\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-SR-001113\",\"finishedDate\":\"2024-06-10 00:00:00\",\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"29\",\"internal_code\":\"\",\"isBillable\":true,\"limitAlert\":0,\"notes\":\"Favor liquidar mensualmente. Consdierar que por el Contrato no se aceptan facturas con m\\u00e1s de tres meses de acumulaci\\u00f3n\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000599-SR-001113\",\"processing\":false,\"secondaryExternalCode\":\"86\",\"secondary_external_code\":\"86\",\"status\":1,\"statusMarking\":\"finished\",\"updated_at\":\"2024-07-19 08:46:38\",\"withIVA\":true,\"responsible\":null,\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-06-06 00:00:00\",\"confidential\":false,\"created_at\":\"2023-09-28 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000599-RE-000104 - INSCRIPCION- DI-25483\\/2018 3M MICROPORE CINTA QUIRURGICA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000104\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"890\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000104\",\"processing\":false,\"secondaryExternalCode\":\"4387\",\"secondary_external_code\":\"4387\",\"status\":1,\"statusMarking\":\"approved\",\"updated_at\":\"2024-06-06 20:06:49\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2025-03-13 00:00:00\",\"confidential\":false,\"created_at\":\"2023-09-28 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000599-RE-000105 - INSCRIPCION- DI-25480\\/2018 3M TRANSPORE CINTA QUIRURGICA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000105\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"891\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000105\",\"processing\":false,\"secondaryExternalCode\":\"4388\",\"secondary_external_code\":\"4388\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2025-03-13 12:37:57\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-09-28 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000599-RE-000106 - INSCRIPCION- DI-26573\\/2018 3M ATTEST INDICADOR BIOLOGICO DE OXIDO DE ETILENO TEST PACK. Ref.- 1264\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000106\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"892\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000106\",\"processing\":false,\"secondaryExternalCode\":\"4389\",\"secondary_external_code\":\"4389\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":\"\",\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-09-29 05:00:00\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000107 - REINSCRIPCION DI-48633\\/2018 3M\\u2122 TEGADERM\\u2122 + PAD\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000107\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"893\",\"internal_code\":\"\",\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000107\",\"processing\":false,\"secondaryExternalCode\":\"4390\",\"secondary_external_code\":\"4390\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":\"\",\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-09-29 05:00:00\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000108 - REINSCRIPCION DI-48317\\/2018 3M\\u2122 COMPLY\\u2122 BOWIE-DICK\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000108\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"894\",\"internal_code\":\"\",\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000108\",\"processing\":false,\"secondaryExternalCode\":\"4391\",\"secondary_external_code\":\"4391\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:50\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000421 - TENENCIA 3M\\u2122 TRANSPORE\\u2122 SURGICAL TAPE DI-88719\\/2024 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000421\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2475\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000421\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:50\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000422 - TENENCIA 3M\\u2122 ATTEST\\u2122 BIOLOGICAL INDICATORS AND TEST PACKS FOR ETHYLENE OXIDE DI-88643\\/2024 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000422\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2476\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000422\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:50\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000423 - TENENCIA 3M COMPLY STEAM INDICATOR TAPE DI-37587\\/2019 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000423\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2477\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000423\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:50\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000424 - TENENCIA 3M STERI-GAS CARTRIDGES DI-38037\\/2019 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000424\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2478\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000424\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:50\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000425 - TENENCIA 3M AVAGARD DI-38477\\/2019 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000425\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2479\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000425\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:50\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000426 - TENENCIA 3M CAVILON NO STING BARRIER FILM DI-38890\\/2019 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000426\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2480\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000426\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:50\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000427 - TENENCIA 3M MEDIPORE SOFT CLOTH SURGICAL TAPE DI-39163\\/2020 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000427\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2481\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000427\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:50\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000428 - TENENCIA 3M RED DOT MONITORING ELECTRODE WITH FOAM TAPE DI-51044\\/2019 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000428\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2482\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000428\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:50\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000429 - TENENCIA SOLUPREP APLICADOR DI-52774\\/2019 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000429\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2483\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000429\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:50\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000430 - TENENCIA 3M ATTEST SUPER RAPID READOUT BIOLOGICAL INDICATOR DI-52874\\/2019 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000430\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2484\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000430\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:50\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000431 - TENENCIA 3M SOLUPREP WIPE DI-53026\\/2019 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000431\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2485\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000431\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:50\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000432 - TENENCIA 3M SOLUPREP SWAB; SPONGE DI-53027\\/2019 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000432\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2486\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000432\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:50\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000433 - TENENCIA 3M TEGADERM CHG CHLORHEXIDINE GLUCONATE IV SECUREMENT DI-54035\\/2019 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000433\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2487\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000433\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:50\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000434 - TENENCIA 3M BOBINA PELABLE POUCH CON INDICADOR QUIMICO PARA VAPOR, OE Y FORMALDEHIDO DE-54222\\/2020 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000434\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2488\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000434\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:50\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000435 - TENENCIA 3M ATTEST SUPER RAPID 5 STREAM-PLUS CHALLENGE PACK DI-54243\\/2019 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000435\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2489\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000435\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:50\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000436 - TENENCIA 3M BAIR HUGGER WARMING BLANKETS DI-55363\\/2020 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000436\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2490\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000436\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:50\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000437 - TENENCIA 3M TAGADERM I.V. ADVANCED SECUREMENT DRESSING DI-56376\\/2020 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000437\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2491\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000437\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:50\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000438 - TENENCIA 3M COBAN SELF-ADHERENT WRAP DI-56433\\/2020 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000438\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2492\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000438\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:50\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000439 - TENENCIA 3M RANGER, 3M BAIR HUGGER DI-57315\\/2020 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000439\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2493\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000439\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:50\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000440 - TENENCIA 3M ATTEST RAPID READOUNT BIOLOGICLA MONITORING INDICATOR 1295 DI-58960\\/2021 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000440\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2494\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000440\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:50\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000441 - TENENCIA 3M DURAPORE SURGICAL TAPE DI-59238\\/2021 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000441\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2495\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000441\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:50\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000442 - TENENCIA 3M SCOTCHCAST PLUS DI-59351\\/2022 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000442\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2496\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000442\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:50\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000443 - TENENCIA 3M MEDIPORE H SOFT CLOTH SURGICAL TAPE DI-59650\\/2022 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000443\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2497\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000443\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":4,\"statusMarking\":\"billed\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:50\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000444 - TENENCIA 3M LITTMANN STETHOSCOPE DI-68814\\/2019 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000444\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2498\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000444\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:50\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000445 - TENENCIA 3M MICROPORE S SURGICAL TAPE DI-74255\\/2020 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000445\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2499\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000445\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:50\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000446 - TENENCIA 3M RANGER BLOOD \\/FLUIDE WARMING SYSTEM DI-74981\\/2020 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000446\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2500\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000446\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:50\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000447 - TENENCIA 3M CAVILON ADVANCED SKIN PROTECTANT DI-75248\\/2020 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000447\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2501\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000447\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:51\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000448 - TENENCIA TEGADERM HIDROCOLOLLOID DRESSING DI-75302\\/2020 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000448\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2502\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000448\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:51\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000449 - TENENCIA 3M ATTEST STEAM CHEMICAL INTEGRATORS DI-75306\\/2020 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000449\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2503\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000449\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:51\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000450 - TENENCIA 3M COBAN 2 TWO-LAYER COMPRESSION SYSTEM DI-75523\\/2020 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000450\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2504\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000450\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:51\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000451 - TENENCIA 3M COBAN 2 TWO-LITE; TWO LAYER COMPRESSION SYSTEM DI-75524\\/2020 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000451\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2505\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000451\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:51\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000452 - TENENCIA 3M CUROS DI-77790\\/2021 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000452\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2506\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000452\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:51\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000453 - TENENCIA 3M FILTEK Z250 UNIVERSAL RESTORATIVE DI-26069\\/2020 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000453\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2507\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000453\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:51\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000454 - TENENCIA KETAC MOLAR EASYMIX DI-37512\\/2019 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000454\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2508\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000454\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:51\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000455 - TENENCIA KETAC CEM EASYMIX DI-37513\\/2019 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000455\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2509\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000455\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:51\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000456 - TENENCIA RELYX TEMP NE DI-38641\\/2019 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000456\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2510\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000456\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:51\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000457 - TENENCIA CAVIT G DI-38733\\/2019 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000457\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2511\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000457\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:51\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000458 - TENENCIA 3M VALUX PLUS RESTORATIVE DI-39616\\/2020 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000458\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2512\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000458\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:51\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000459 - TENENCIA EXPRESS XT DI-39760\\/2019 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000459\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2513\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000459\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:51\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000460 - TENENCIA 3M FILTEK Z350 XT UNIVERSAL RESTORATIVE DI-40432\\/2020 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000460\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2514\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000460\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:51\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000461 - TENENCIA CILINPRO XT VARNISH DI-40767\\/2020 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000461\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2515\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000461\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:51\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000462 - TENENCIA 3M FILTEK Z350 XT UNIVERSAL XT FLOWABLE RESTORATIVE DI-41877\\/2021 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000462\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2516\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000462\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:51\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000463 - TENENCIA SOF-LEX (RUEDAS ESPERALES PARA ACABADO Y PILIDO) DI-43014\\/2022 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000463\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2517\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000463\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:51\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000464 - TENENCIA MINIATURE TWIN DI-50870\\/2019 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000464\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2518\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000464\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:51\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000465 - TENENCIA GEMINI TWIN MBT DI-50871\\/2019 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000465\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2519\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000465\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:51\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000466 - TENENCIA SMARTCLIP MBT DI-50872\\/2019 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000466\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2520\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000466\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:51\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000467 - TENENCIA BOND UNIVERSAL; DCA DI-51045\\/2019 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000467\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2521\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000467\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:51\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000468 - TENENCIA CLARITY DI-51346\\/2019 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000468\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2522\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000468\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:51\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000469 - TENENCIA VICTORY SERIES: TWIN; GOLD TWIN; MBT; LOW; PROFILE DI-51349\\/2020 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000469\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2523\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000469\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:52\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000470 - TENENCIA CLINPRO WHITE VARNISH DI-51411\\/2019 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000470\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2524\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000470\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:52\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000471 - TENENCIA ABZIL PORTIA DI-52700\\/2020 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000471\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2525\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000471\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:52\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000472 - TENENCIA RELYX ULTIMATE CLICKER DI-53473\\/2019 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000472\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2526\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000472\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:52\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000473 - TENENCIA VITREBOND PLUS LINER\\/BASE IONOMERO DE VIDRIO DI-52771\\/2019 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000473\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2527\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000473\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:52\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000474 - TENENCIA PROTEMP 4 DI-53472\\/2019 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000474\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2528\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000474\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:52\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000475 - TENENCIA RELYX VENEER CEMENT DI-54037\\/2019 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000475\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2529\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000475\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:52\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000476 - TENENCIA FILTEK BULK FILL POSTERIOR RESTORATIVE DI-54548\\/2019 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000476\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2530\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000476\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:52\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000477 - TENENCIA 3M FILTEK BULK FILL FLOWABLE RESTORATIVE DI-57127\\/2020 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000477\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2531\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000477\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:52\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000478 - TENENCIA UNITEK GEMINI SL DI-57782\\/2021 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000478\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2532\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000478\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:52\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000479 - TENENCIA CLINPRO 5% SODIUM FLUORIDE WHITE VARNISH DI-59649\\/2021 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000479\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2533\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000479\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:52\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000480 - TENENCIA KETAC UNIVERSAL DI-59651\\/2021 DI-59651\\/2021 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000480\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2534\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000480\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:52\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000481 - TENENCIA 3M FILTEK ONE BULK FILL RESTORTIVE DI-69655\\/2019 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000481\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2535\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000481\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:52\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000482 - TENENCIA 3M FILTEK UNIVERSAL RESTORATIVE DI-71656\\/2019 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000482\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2536\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000482\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:52\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000483 - TENENCIA CLARITY ULTRA SL MBT DI-75099\\/2020 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000483\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2537\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000483\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:52\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000484 - TENENCIA 3M FILTEK SUPREME FLOWABLE RESTORATIVE DI-79107\\/2021 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000484\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2538\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000484\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:52\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000485 - TENENCIA 3M ULTRATHON INSECT REPELLENT 8 AEROSOL NSOH64937-15CO \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000485\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2539\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000485\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:52\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000486 - TENENCIA 3M ULTRATHON INSECT REPELLENT LOTION NSOH11852-04CO \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000486\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2540\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000486\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:52\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000487 - TENENCIA 3M STAINLESS STEEL CLEANER AND PROTECTOR NSOH07554-18CO \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000487\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2541\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000487\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:52\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000488 - TENENCIA 3M STAINLESS STEEL CLEANER \\u0026 POLISH NSOH01075-19PE \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000488\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2542\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000488\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:52\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000489 - TENENCIA SCOTCHGARD LIMPIADOR DE ACERO INOXIDABLE (SCOTCHGARD STAINLESS STEEL CLEANER) NSOH10090-21CO \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000489\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2543\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000489\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:52\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000490 - TENENCIA SCOTCHGARD LIMPIADOR PARA TELA Y ALFOMBRAS NSOH01809-21PE \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000490\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2544\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000490\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:52\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000491 - TENENCIA SCOTCH-BRITE ACERO INOXIDABLE LIMPIADOR Y PULIDOS NSOH01093-19PE \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000491\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2545\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000491\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:52\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000492 - TENENCIA TOALLITAS PARA REMOVER MICROORGANISMOS AL INSTANTE (INSTANT MICROBE REMOVING WIPES) NSOH09428\\/20CO \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000492\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2546\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000492\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2025-06-26 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-29 15:42:58\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000599-RE-000495 - Fotocopias legalizadas Dispromed\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000495\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2552\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":0,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000599-RE-000495\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2025-06-26 11:53:28\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-29 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-29 21:10:31\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000599-RE-000501 - Fotocopias legalizadas Gutierrez \\u0026 CIA SRL\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000501\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2561\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000599-RE-000501\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-09 21:44:38\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-29 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-29 21:32:55\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000599-RE-000502 - Fotocopias legalizadas Proclinic\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000502\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2564\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000599-RE-000502\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-09 21:44:38\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-18 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-18 20:57:14\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000599-RE-000609 - Inscripci\\u00f3n DI-88643\\/2024 3Mtm ATTESTtm BIOLOGICAL INDICATORS AND TEST PACKS FOR ETHY LENE OXIDE; 3Mtm ATTESTtm 1294 RAPID READOUT BIOLOGICAL INDICATOR FOR EO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000609\",\"finishedDate\":null,\"fixRateValue\":405,\"fix_rate_value\":405,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2721\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000599-RE-000609\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-28 21:15:28\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-18 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-18 21:01:01\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000599-RE-000610 - Tenencia DI-88643\\/2024 3Mtm ATTESTtm BIOLOGICAL INDICATORS AND TEST PACKS FOR ETHY LENE OXIDE; 3Mtm ATTESTtm 1294 RAPID READOUT BIOLOGICAL INDICATOR FOR EO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000610\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2722\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000599-RE-000610\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-18 22:06:44\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-18 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-18 21:03:39\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000599-RE-000611 - Inscripci\\u00f3n DI-88747\\/2024 3Mtm MICROPOREtm SURGICAL TAPE \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000611\",\"finishedDate\":null,\"fixRateValue\":405,\"fix_rate_value\":405,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2723\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000599-RE-000611\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-28 21:13:44\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-18 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-18 21:05:31\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000599-RE-000612 - Tenencia DI-88747\\/2024 3Mtm MICROPOREtm SURGICAL TAPE\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000612\",\"finishedDate\":null,\"fixRateValue\":333,\"fix_rate_value\":333,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2724\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000599-RE-000612\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-18 16:05:31\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-01 00:00:00\",\"confidential\":false,\"created_at\":\"2024-04-01 21:34:45\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000599-RE-000645 - Fotocopias legalizadas Proclinic\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000645\",\"finishedDate\":null,\"fixRateValue\":80,\"fix_rate_value\":80,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2782\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000599-RE-000645\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-01 22:09:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-10-03 00:00:00\",\"confidential\":false,\"created_at\":\"2024-04-01 21:38:12\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000599-RE-000646 - Fotocopias legalizadas Dispromed\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000646\",\"finishedDate\":null,\"fixRateValue\":160,\"fix_rate_value\":160,\"hourLimit\":10,\"hour_limit\":10,\"id\":\"2783\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":50,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000599-RE-000646\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"approved\",\"updated_at\":\"2024-10-03 17:22:30\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-01 00:00:00\",\"confidential\":false,\"created_at\":\"2024-04-01 21:41:09\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000599-RE-000647 - Fotocopias legalizadas Soluciones de Salud, Medicina y Equipos S.R.L.\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000647\",\"finishedDate\":null,\"fixRateValue\":640,\"fix_rate_value\":640,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2784\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000599-RE-000647\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-01 22:11:16\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-01 00:00:00\",\"confidential\":false,\"created_at\":\"2024-04-01 22:18:57\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000599-RE-000648 - INSCRIPCI\\u00d3N DI-88719\\/2024 3Mtm TRANSPOREtm SURGICAL TAPE\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000648\",\"finishedDate\":null,\"fixRateValue\":405,\"fix_rate_value\":405,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2786\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000599-RE-000648\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-01 22:20:32\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-09-24 00:00:00\",\"confidential\":false,\"created_at\":\"2024-04-19 22:05:46\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000599-RE-000681 - test sergio\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000681\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2832\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"nota\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000599-RE-000681\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"billed\",\"updated_at\":\"2024-09-24 16:45:29\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2012-05-08 14:49:53\",\"daysAllow\":302,\"email\":\"ihurtado@emba.com\",\"enabled\":true,\"fullName\":\"Ingrid Hurtado\",\"id\":1,\"locale\":\"es\",\"shortName\":\"ihurtado\",\"superAdmin\":true,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":0,\"username\":\"ihurtado@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-05-20 00:00:00\",\"confidential\":false,\"created_at\":\"2024-05-20 21:57:48\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000599-RE-000689 - PERMANENCIA DE TRES A\\u00d1OS CON CONTRATO EXTRANJERO- STEFAN MICHAEL KOSEL\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000689\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2847\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":null,\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"pending_completion\",\"updated_at\":\"2024-06-06 16:00:02\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2012-05-08 14:49:53\",\"daysAllow\":302,\"email\":\"ihurtado@emba.com\",\"enabled\":true,\"fullName\":\"Ingrid Hurtado\",\"id\":1,\"locale\":\"es\",\"shortName\":\"ihurtado\",\"superAdmin\":true,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":0,\"username\":\"ihurtado@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-09-20 00:00:00\",\"confidential\":false,\"created_at\":\"2024-09-20 15:31:02\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000599-RE-000708 - Test Any prueba\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000708\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2886\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000599-RE-000708\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-09-20 15:31:03\",\"withIVA\":true,\"responsible\":null,\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2025-03-17 00:00:00\",\"confidential\":false,\"created_at\":\"2024-09-20 15:34:57\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000599-RE-000709 - Test Capacitaci\\u00f3n\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000709\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2887\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"test time\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000599-RE-000709\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2025-03-17 16:18:51\",\"withIVA\":true,\"responsible\":null,\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-09-20 00:00:00\",\"confidential\":false,\"created_at\":\"2024-09-20 15:42:56\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000599-RE-000710 - Test Capacitaci\\u00f3n 2\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000710\",\"finishedDate\":null,\"fixRateValue\":5000,\"fix_rate_value\":5000,\"hourLimit\":10,\"hour_limit\":10,\"id\":\"2888\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":50,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000599-RE-000710\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-09-20 15:42:57\",\"withIVA\":true,\"responsible\":null,\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-09-23 00:00:00\",\"confidential\":false,\"created_at\":\"2024-09-23 14:55:16\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000599-RE-000711 - PERMANENCIA DE TRES A\\u00d1OS CON CONTRATO EXTRANJERO- STEFAN MICHAEL KOSEL\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000711\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2890\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000599-RE-000711\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-09-23 14:55:17\",\"withIVA\":true,\"responsible\":null,\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2025-07-01 00:00:00\",\"confidential\":false,\"created_at\":\"2024-09-23 14:58:42\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000599-RE-000712 - Consultas Legales por hora\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000712\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2891\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000599-RE-000712\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2025-07-02 14:52:01\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2021-05-11 23:40:08\",\"daysAllow\":302,\"email\":\"pcorredor26@gmail.com\",\"enabled\":true,\"fullName\":\"AMTM Pruebas\",\"id\":77,\"locale\":\"es\",\"shortName\":\"AM\",\"superAdmin\":true,\"updated_at\":\"2025-07-21 10:12:54\",\"userType\":1,\"username\":\"pcorredor26@gmail.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"9\",\"externalCode\":\"AR20\",\"name\":\"Contrataci\\u00f3n P\\u00fablica\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2025-03-17 00:00:00\",\"confidential\":false,\"created_at\":\"2024-09-23 15:27:02\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000599-RE-000714 - INFORME LEGAL SOBRE NOTA DE SOLICITUD DE RECONSIDERACI\\u00d3N DE DESIDO - SR. SAAVEDRA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000714\",\"finishedDate\":null,\"fixRateValue\":1000,\"fix_rate_value\":1000,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2893\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":100,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000599-RE-000714\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2025-03-17 16:12:43\",\"withIVA\":true,\"responsible\":null,\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2025-03-17 00:00:00\",\"confidential\":false,\"created_at\":\"2024-09-23 16:10:09\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000599-SC-000974 - PERMANENCIA DE TRES A\\u00d1OS CON CONTRATO EXTRANJERO- STEFAN MICHAEL KOSEL\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-SC-000974\",\"finishedDate\":null,\"fixRateValue\":1,\"fix_rate_value\":1,\"hourLimit\":2,\"hour_limit\":2,\"id\":\"2895\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":0,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":null,\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2025-03-17 16:14:41\",\"withIVA\":true,\"responsible\":null,\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"9\",\"externalCode\":\"AR20\",\"name\":\"Contrataci\\u00f3n P\\u00fablica\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-09-23 00:00:00\",\"confidential\":false,\"created_at\":\"2024-09-23 16:21:29\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000599-SC-000975 - Test Any prueba\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-SC-000975\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2896\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":null,\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-09-23 16:21:29\",\"withIVA\":true,\"responsible\":null,\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"6\",\"externalCode\":\"AR17\",\"name\":\"Der.Comercial \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-09-25 00:00:00\",\"confidential\":false,\"created_at\":\"2024-09-23 16:36:55\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000599-RE-000716 - Any test Prueba 1\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000716\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2897\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000599-RE-000716\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-11-14 17:33:53\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"aaraoz@emba.com\",\"enabled\":true,\"fullName\":\"Alvaro Araoz Ardaya\",\"id\":17,\"locale\":\"es\",\"shortName\":\"aaraoz\",\"superAdmin\":false,\"updated_at\":\"2024-12-04 15:29:19\",\"userType\":1,\"username\":\"aaraoz@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}}]}}}\n","time":"2025-07-30T10:50:32-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: POST https://apinewtm.com/graphql/\nHeaders: map[Accept:[application/json] Authorization:[Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJpYXQiOjE3NTM4ODY1MjIsImV4cCI6MTc1Mzk2NjUyMiwiaWQiOjEwNSwidXNlcm5hbWUiOiJpbnRlZ3JhY2lvbmVzQGVtYmEuYm8iLCJhcGlrZXkiOiI5Yzg0ZjYzZTRlMzk2ZGZmOWU5ZjU3NDI5OGRmZWUzOSIsImFwaWtleUNyZWF0ZWRBdCI6eyJkYXRlIjoiMjAyNS0wNy0xNyAxMDo0MToyNS4wMDAwMDAiLCJ0aW1lem9uZV90eXBlIjozLCJ0aW1lem9uZSI6IkFtZXJpY2EvQm9nb3RhIn0sImZ1bGxOYW1lIjoiSW50ZWdyYWNpw7NuIEVNQkEiLCJlbWFpbCI6ImludGVncmFjaW9uZXNAZW1iYS5ibyIsImxvY2FsZSI6ImVzIiwiZGF5c0FsbG93ZWQiOjMwLCJpc0Nvb3JkaW5hdG9yIjpmYWxzZSwidHlwZVRhc2tWaWV3IjoibGlzdHMiLCJkYXlzYWxsb3ciOjMwLCJyb2xlcyI6e30sInNob3J0X25hbWUiOiJJTi5FTUJBIiwicGVybWlzc2lvbnMiOlsic3luY19leHRlcm5hbF9idXNpbmVzcyIsInN5bmNfZXh0ZXJuYWxfY3VzdG9tZXIiLCJzeW5jX2V4dGVybmFsX21pbGVzdG9uZSIsImFic2VuY2VfYXBwcm92ZSIsImFic2VuY2VfY3JlYXRlX2FsbCIsImFic2VuY2VfY3JlYXRlX293biIsImFic2VuY2VfbWVudSIsImFjY291bnRpbmdfYnVzaW5lc3NfbGlzdCIsImFjY291bnRpbmdfY3VzdG9tZXJfbGlzdCIsImJpbGxpbmdfcGVyaW9kX2RlbGV0ZV9hbGwiLCJiaWxsaW5nX3BlcmlvZF9lZGl0X2FsbCIsImJpbGxpbmdfcGVyaW9kX2xpc3QiLCJiaWxsaW5nX3BlcmlvZF9yZWFjdGl2YXRlIiwiYm9hcmRfcmF0ZV91c2VyX2NyZWF0ZSIsImJvYXJkX3JhdGVfdXNlcl9lZGl0IiwiYnVzaW5lc3NfY3JlYXRlIiwiYnVzaW5lc3NfZGVzY3JpcHRpb25fc2F2ZSIsImJ1c2luZXNzX2VkaXQiLCJidXNpbmVzc19saXN0X2FsbCIsImJ1c2luZXNzX21lbnUiLCJidXNpbmVzc19yZXNwb25zaWJsZV9saXN0X2FsbCIsImJ1c2luZXNzX3NlZV9iaWxsaW5nX2luZm8iLCJidXNpbmVzc2VzX2FsbG93ZWRfdXNlcl9jcmVhdGUiLCJidXNpbmVzc2VzX2FsbG93ZWRfdXNlcl9kZWxldGUiLCJjb21wYW55X2Rpc2FibGUiLCJjb21wYW55X2VkaXQiLCJjb21wYW55X2xpc3QiLCJjb25jZXB0X2NyZWF0ZSIsImNvbmNlcHRfZWRpdCIsImNvbmNlcHRfbWVudSIsImNvbnRhY3RfY3JlYXRlIiwiY29udGFjdF9jcmVhdGVfZmFzdCIsImNvbnRhY3RfZWRpdCIsImNvbnRhY3RfbGlzdCIsImNvbnRhY3RfbWVudSIsImN1c3RvbWVyX2NyZWF0ZSIsImN1c3RvbWVyX2NyZWF0ZV9mYXN0IiwiY3VzdG9tZXJfZWRpdCIsImN1c3RvbWVyX2xpc3QiLCJjdXN0b21lcl9saXN0X2FsbCIsImN1c3RvbWVyX21lbnUiLCJleHBlbnNlX2NyZWF0ZV9hbGwiLCJleHBlbnNlX2RlbGV0ZV9hbGwiLCJleHBlbnNlX2R1cGxpY2F0ZSIsImV4cGVuc2VfZWRpdF9hbGwiLCJleHBlbnNlX2xpc3RfYWxsIiwiZXhwZW5zZV9tZW51IiwiZXhwZW5zZV9yZWplY3RfYWxsIiwiZmFiX3Nob3ciLCJmaWxlX21lbnUiLCJnZW9yZWZlcmVuY2VfY3JlYXRlIiwiZ2VvcmVmZXJlbmNlX2VkaXQiLCJnZW9yZWZlcmVuY2VfbWVudSIsImdvX3RvX2xlZ2FjeSIsImluZGljYXRvcnNfbWVudSIsImludm9pY2VfY3JlYXRlIiwiaW52b2ljZV9kZXRhaWxfbGlzdF9hbGwiLCJpbnZvaWNlX2ZpeF90aW1lc19jdXN0b21fdmFsdWUiLCJpbnZvaWNlX2xpc3RfYWxsIiwiaW52b2ljZWFkdmFuY2VfY3JlYXRlIiwiaW52b2ljZWFkdmFuY2VfbGlzdCIsImludm9pY2VhZHZhbmNlX3VwZGF0ZSIsImxvZ19saXN0X2FsbCIsImxvZ19saXN0X293biIsIm1pbGVzdG9uZV9jcmVhdGUiLCJtaWxlc3RvbmVfZGVsZXRlIiwibWlsZXN0b25lX2VkaXQiLCJtb250aGx5X2ZpeF9yYXRlX2dyb3VwX2NyZWF0ZSIsIm1vbnRobHlfZml4X3JhdGVfZ3JvdXBfZWRpdCIsIm1vbnRobHlfdXNlcl9jb3N0X2NyZWF0ZSIsIm1vbnRobHlfdXNlcl9jb3N0X2VkaXQiLCJwYXltZW50X2NyZWF0ZSIsInBheW1lbnRfZGVsZXRlIiwicGF5bWVudF9lZGl0IiwicGF5bWVudF9tZW51IiwicHJvY2VkdXJlX21lbnUiLCJwcm9jZWR1cmVfcmF0ZV9jcmVhdGUiLCJwcm9jZWR1cmVfcmF0ZV9kZXRhaWxfY3JlYXRlIiwicHJvY2VkdXJlX3JhdGVfZGV0YWlsX2VkaXQiLCJwcm9jZWR1cmVfcmF0ZV9kZXRhaWxfbGlzdCIsInByb2NlZHVyZV9yYXRlX2VkaXQiLCJwcm9jZWR1cmVfcmF0ZV9saXN0IiwicHJvY2VkdXJlX3JhdGVfbWVudSIsInByb2NlZHVyZV90cmFuc2FjdGlvbl9saXN0IiwicHJvamVjdF9hcmNoaXZlX2Nhc2NhZGVfYWxsIiwicHJvamVjdF9kZWxldGVfY2FzY2FkZV9hbGwiLCJwcm9qZWN0X3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInJhdGVfYnVzaW5lc3NfY2F0ZWdvcnlfY3JlYXRlIiwicmF0ZV9idXNpbmVzc19jYXRlZ29yeV9lZGl0IiwicmF0ZV9idXNpbmVzc191c2VyX2NyZWF0ZSIsInJhdGVfYnVzaW5lc3NfdXNlcl9lZGl0IiwicmF0ZV9leGNoYW5nZV9jcmVhdGUiLCJyYXRlX2V4Y2hhbmdlX2VkaXQiLCJyYXRlX2V4Y2hhbmdlX2xpc3QiLCJyYXRlX3VzZXJfY3JlYXRlIiwicmF0ZV91c2VyX2VkaXQiLCJyb2xlX2NyZWF0ZSIsInJvbGVfZWRpdF9hbGwiLCJyb2xlX2xpc3RfYWxsIiwic2VjdGlvbl9hcmNoaXZlX2Nhc2NhZGVfYWxsIiwic2VjdGlvbl9kZWxldGVfY2FzY2FkZV9hbGwiLCJzZWN0aW9uX3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInNlZV9tZW51X3JhdGVfZXhjaGFuZ2UiLCJzZXJpZV9jcmVhdGUiLCJzZXJpZV9lZGl0Iiwic2VyaWVfbWVudSIsInNldHRpbmdzX3ZpZXciLCJzdXBwbGllcl9jcmVhdGUiLCJ0YXNrX2FkZF90aW1lX2FsbCIsInRhc2tfYWRkX3RpbWVfb3duIiwidGFza19hc3NpZ25lZF91c2VyX2VtYWlsIiwidGFza19jbG9zZWRfZW1haWwiLCJ0YXNrX2NyZWF0ZV9hbGwiLCJ0YXNrX2NyZWF0ZV9jb21tZW50X2VtYWlsIiwidGFza19jcmVhdGVfc2VsZiIsInRhc2tfY3JlYXRlX3RlYW0iLCJ0YXNrX2RlbGV0ZV9hbGwiLCJ0YXNrX2RlbGV0ZV9vd24iLCJ0YXNrX2RlbGV0ZV90ZWFtIiwidGFza19lZGl0X2FsbCIsInRhc2tfZWRpdF9kdWVfZGF0ZSIsInRhc2tfZWRpdF9vd24iLCJ0YXNrX2VkaXRfdGVhbSIsInRhc2tfbGlzdF9hbGwiLCJ0YXNrX2xpc3Rfb3duIiwidGFza19saXN0X3RlYW0iLCJ0YXNrX21hc3NpdmVpbXBvcnQiLCJ0YXNrX21lbnUiLCJ0YXNrX21pZ3JhdGlvbiIsInRhc2tfc2V0X2FkZGl0aW9uYWxfYXNzaWduZWVzIiwidGFza19zZXRfZHVlX2RhdGUiLCJ0YXNrX3NldF9lc3RpbWF0ZWRfdGltZSIsInRhc2tfc2V0X3ByaW9yaXR5IiwidGFza19zZXRfcHJvZ3Jlc3MiLCJ0YXhfZWRpdF9hbGwiLCJ0YXhfbGlzdF9hbGwiLCJ0ZWFtX2FyY2hpdmVfY2FzY2FkZV9hbGwiLCJ0ZWFtX2NyZWF0ZV9hbGwiLCJ0ZWFtX2RlbGV0ZV9hbGwiLCJ0ZWFtX2VkaXRfYWxsIiwidGVhbV9saXN0X2FsbCIsInRlYW1fbGlzdF9vd24iLCJ0ZWFtX3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInRpbWVfYWNjZXB0X2FsbCIsInRpbWVfYWNjZXB0X293biIsInRpbWVfYXBwcm92ZV9hbGwiLCJ0aW1lX2FwcHJvdmVfb3duIiwidGltZV9jcmVhdGVfYWxsIiwidGltZV9jcmVhdGVfb3duIiwidGltZV9kZWxldGVfYWxsIiwidGltZV9kZWxldGVfb3duIiwidGltZV9kZW55X2FsbCIsInRpbWVfZGVueV9vd24iLCJ0aW1lX2Rvd25sb2FkZmlsZV9hbGwiLCJ0aW1lX2Rvd25sb2FkZmlsZV9vd24iLCJ0aW1lX2VkaXRfYWxsIiwidGltZV9lZGl0X2Nsb3NlX3BlcmlvZF9hbGwiLCJ0aW1lX2VkaXRfY2xvc2VfcGVyaW9kX293biIsInRpbWVfZWRpdF9vd24iLCJ0aW1lX2xpc3RfYWxsIiwidGltZV9saXN0X293biIsInRpbWVfbWVudSIsInRpbWVfbWludXRlc196ZXJvIiwidGltZV9yZWplY3RfYWxsIiwidGltZV9yZXN0cmljdGVkX3BlcmlvZF9jcmVhdGUiLCJ0aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX2VkaXQiLCJ0aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX21lbnUiLCJ0aW1lX3NoYXJlX2FsbCIsInRpbWVfc2hhcmVfb3duIiwidGltZV9zaG93X2NhbGVuZGFyX3ZpZXciLCJ0aW1lX3VwbG9hZGZpbGVfYWxsIiwidGltZV91cGxvYWRmaWxlX293biIsInRyYW5zYWN0aW9uX2FkYXB0ZXJfbGlzdCIsInRyYW5zYWN0aW9uX2xpc3QiLCJ1c2VyX2Fic2VuY2VzX3Nob3ciLCJ1c2VyX2Nvc3RfY3JlYXRlIiwidXNlcl9jb3N0X2VkaXQiLCJ1c2VyX2Nvc3RfbGlzdCIsInVzZXJfY29zdF9tZW51IiwidXNlcl9jb3N0X3JhdGVfY3JlYXRlIiwidXNlcl9jb3N0X3JhdGVfZWRpdCIsInVzZXJfY29zdF9yYXRlX2xpc3QiLCJ1c2VyX2NyZWF0ZSIsInVzZXJfZGlzYWJsZSIsInVzZXJfZWRpdCIsInVzZXJfZWRpdF9kYXlzX2FsbG93X29ubHkiLCJ1c2VyX2dyb3VwX3JvbGVfY3JlYXRlX2FsbCIsInVzZXJfZ3JvdXBfcm9sZV9kZWxldGVfYWxsIiwidXNlcl9ncm91cF9yb2xlX2VkaXRfYWxsIiwidXNlcl9ncm91cF9yb2xlc19saXN0X2FsbCIsInVzZXJfbGlzdCIsInVzZXJfbGlzdF9hbGwiLCJ1c2VyX21hc3NfYWN0aXZhdGlvbiIsInVzZXJfcHJvZHVjdGl2aXR5X2NyZWF0ZSIsInVzZXJfcHJvZHVjdGl2aXR5X2Rpc2FibGUiLCJ1c2VyX3Byb2R1Y3Rpdml0eV9lZGl0IiwidXNlcl9wcm9kdWN0aXZpdHlfZW5hYmxlIiwidXNlcl9wcm9kdWN0aXZpdHlfbWVudSIsInVzZXJfdGltZV9yZXN0cmljdGVkX3BlcmlvZF9jcmVhdGUiLCJ1c2VyX3RpbWVfcmVzdHJpY3RlZF9wZXJpb2RfZGVsZXRlIiwidXNlcl90aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX2VkaXQiLCJ1c2VyZ3JvdXBfY3JlYXRlX2FsbCIsInVzZXJncm91cF9kZWxldGVfYWxsIiwidXNlcmdyb3VwX2VkaXRfYWxsIiwidXNlcmdyb3VwX2xpc3RfYWxsIiwidXNlcmdyb3VwX21lbnUiLCJ1c2Vyc191c2VyX2dyb3VwX2NyZWF0ZV9hbGwiLCJ1c2Vyc191c2VyX2dyb3VwX2RlbGV0ZV9hbGwiLCJ1c2Vyc191c2VyX2dyb3VwX2VkaXRfYWxsIiwidXNlcnNfdXNlcl9ncm91cHNfbGlzdF9hbGwiXSwiaG9tZXBhZ2UiOm51bGx9.kShN7NXGoaz1oFro-yYNyIpIEcnNpo1GiB8SFGKFUJtDQoqyp1I1w-CMA8Kta3vWXnUZwx-y2z1yVSJaMpZbqQgKFlakpcf6351bZSL8IAUPExSfLz0HYYCWFx-Usx94BBTqosKsRhnT8PkPN3dGxs8-XTIEDi9gN-Pk9OSHmM5mPkTsaaxTY40M-F7Y0Up2y6s_lwFaX13CmstiYZSXzyKL9SUBBx-E6-8qQAfuKPIoZ_50jSGPW98-IkAcWwqO6yGf-M07dSfFZ2vLfwc3ulHm2p8jVSmRxJ_O43BEWQD5cvqGbVIvSMXkS4y98DL4Vencjjg27iu3CUJsDNBBTg] Content-Type:[application/json] Origin:[https://azure-function.timemanagerweb.com] Tenant-Name:[pruebas-dos] User-Agent:[Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36]]\nBody: map[query:query ($limit: Int, $orderBy: String, $orderDesc: Boolean, $page: Int) { BusinessMeta(limit: $limit, orderBy: $orderBy, orderDesc: $orderDesc, page: $page) { meta { hasNextPage hasPreviousPage limit next page pages previous total } rows { apply_procedures billable business_customer_code caseNumber closed_date confidential created_at discountAmount discountPercent displayName enableBusinessAllowedUsers expedient finishedDate fixRateValue fix_rate_value hourLimit hour_limit id internal_code isBillable limitAlert notes partialCharges partial_charges primary_external_code processing secondaryExternalCode secondary_external_code status statusMarking updated_at withIVA responsible { created_at daysAllow email enabled fullName id locale shortName superAdmin updated_at userType username } customer { id name primary_external_code company { id name } } practiceArea { id externalCode name } } } } variables:map[limit:100 orderBy:orderBy orderDesc:true page:2]]\n","time":"2025-07-30T10:50:32-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: POST https://apinewtm.com/graphql/ | Status: 200 | Duration: 1.0372832s\nHeaders: map[Access-Control-Allow-Credentials:[true] Access-Control-Allow-Origin:[https://azure-function.timemanagerweb.com] Access-Control-Expose-Headers:[link, access-control-allow-credentials] Cache-Control:[no-cache, private] Content-Type:[application/json] Date:[Wed, 30 Jul 2025 14:50:33 GMT] Server:[] Vary:[Authorization]]\nBody: {\"errors\":[{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",3,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",3,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",3,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",3,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",3,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",3,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",3,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",3,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",3,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",3,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",3,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",4,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",4,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",4,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",4,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",4,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",4,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",4,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",4,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",4,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",4,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",4,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",90,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",90,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",90,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",90,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",90,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",90,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",90,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",90,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",90,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",90,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",90,\"responsible\",\"username\"]}],\"data\":{\"BusinessMeta\":{\"meta\":{\"hasNextPage\":true,\"hasPreviousPage\":true,\"limit\":100,\"next\":3,\"page\":2,\"pages\":16,\"previous\":1,\"total\":1573},\"rows\":[{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-07-02 00:00:00\",\"confidential\":false,\"created_at\":\"2023-11-22 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000406-SR-000769 - Outsourcing contable y tributarios\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000406-SR-000769\",\"finishedDate\":null,\"fixRateValue\":800,\"fix_rate_value\":800,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"159\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000406-SR-000769\",\"processing\":false,\"secondaryExternalCode\":\"4606\",\"secondary_external_code\":\"4606\",\"status\":1,\"statusMarking\":\"billed\",\"updated_at\":\"2024-07-02 16:23:06\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"cdelgado@emba.com\",\"enabled\":true,\"fullName\":\"Cristhian Delgado Ramirez\",\"id\":13,\"locale\":\"es\",\"shortName\":\"cdelgado\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"cdelgado@emba.com\"},\"customer\":{\"id\":\"7\",\"name\":\"ACTIVZBOLIVIA SRL\",\"primary_external_code\":\"406\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"24\",\"externalCode\":\"AR05\",\"name\":\"Outsourcing\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-04-11 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000398-SR-000483 - Domicilio Sucursal Santa Cruz de la Sierra\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000398-SR-000483\",\"finishedDate\":null,\"fixRateValue\":250,\"fix_rate_value\":250,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"255\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000398-SR-000483\",\"processing\":false,\"secondaryExternalCode\":\"3293\",\"secondary_external_code\":\"3293\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"140\",\"name\":\"COMERCIALIZADORA IMMUNOTEC BOLIVIA S.A.\",\"primary_external_code\":\"398\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"6\",\"externalCode\":\"AR17\",\"name\":\"Der.Comercial \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-08-24 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000398-SR-000523 - Representacion legal\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000398-SR-000523\",\"finishedDate\":null,\"fixRateValue\":1500,\"fix_rate_value\":1500,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"256\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000398-SR-000523\",\"processing\":false,\"secondaryExternalCode\":\"3551\",\"secondary_external_code\":\"3551\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"amorenog@emba.com\",\"enabled\":true,\"fullName\":\"Andres Moreno Gutierrez\",\"id\":5,\"locale\":\"es\",\"shortName\":\"amoreno\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"amorenog@emba.com\"},\"customer\":{\"id\":\"140\",\"name\":\"COMERCIALIZADORA IMMUNOTEC BOLIVIA S.A.\",\"primary_external_code\":\"398\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-09-30 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000398-SR-000538 - Residencia Mercosur - Julian Esteban Chica\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000398-SR-000538\",\"finishedDate\":null,\"fixRateValue\":840.39,\"fix_rate_value\":840.39,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"257\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 840,39.- INCLUYEN GASTOS DE TRAMITE E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000398-SR-000538\",\"processing\":false,\"secondaryExternalCode\":\"3610\",\"secondary_external_code\":\"3610\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"140\",\"name\":\"COMERCIALIZADORA IMMUNOTEC BOLIVIA S.A.\",\"primary_external_code\":\"398\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-09-30 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000398-SR-000539 - CEDULA DE EXTRANERO- JULIAN ESTEBAN CHICA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000398-SR-000539\",\"finishedDate\":null,\"fixRateValue\":257,\"fix_rate_value\":257,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"258\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 257,83.- INCLUYEN GASTOS E IMPUESTOS DE LEY\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000398-SR-000539\",\"processing\":false,\"secondaryExternalCode\":\"3611\",\"secondary_external_code\":\"3611\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"140\",\"name\":\"COMERCIALIZADORA IMMUNOTEC BOLIVIA S.A.\",\"primary_external_code\":\"398\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2025-02-18 00:00:00\",\"confidential\":false,\"created_at\":\"2022-06-15 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000501-RE-000069 - REGISTRO DE NSO DEL PRODUCTO B-Safe\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000501-RE-000069\",\"finishedDate\":null,\"fixRateValue\":550,\"fix_rate_value\":550,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"896\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000501-RE-000069\",\"processing\":false,\"secondaryExternalCode\":\"3431\",\"secondary_external_code\":\"3431\",\"status\":4,\"statusMarking\":\"billed\",\"updated_at\":\"2025-02-18 15:21:14\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"8\",\"name\":\"ADM Archer Daniels Midland Company\",\"primary_external_code\":\"501\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-06-15 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000501-RE-000070 - REGISTRO DE NSO DEL PRODUCTO T5X\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000501-RE-000070\",\"finishedDate\":null,\"fixRateValue\":550,\"fix_rate_value\":550,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"897\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000501-RE-000070\",\"processing\":false,\"secondaryExternalCode\":\"3432\",\"secondary_external_code\":\"3432\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"8\",\"name\":\"ADM Archer Daniels Midland Company\",\"primary_external_code\":\"501\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-20 00:00:00\",\"confidential\":false,\"created_at\":\"2021-05-13 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000398-RE-000038 - Alquiler Almac\\u00e9n\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000398-RE-000038\",\"finishedDate\":null,\"fixRateValue\":300,\"fix_rate_value\":300,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"942\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Nosotros pagamos un alquiler determinado por el dep\\u00f3sito, y cobramos un importe mayor por el alquiler al cliente.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000398-RE-000038\",\"processing\":false,\"secondaryExternalCode\":\"2681\",\"secondary_external_code\":\"2681\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-20 19:34:08\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"140\",\"name\":\"COMERCIALIZADORA IMMUNOTEC BOLIVIA S.A.\",\"primary_external_code\":\"398\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-10-09 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-06 14:29:39\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000398-SR-001012 - Informe legal control de asistencia\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000398-SR-001012\",\"finishedDate\":null,\"fixRateValue\":300,\"fix_rate_value\":300,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2317\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000398-SR-001012\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-10-09 16:49:47\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"140\",\"name\":\"COMERCIALIZADORA IMMUNOTEC BOLIVIA S.A.\",\"primary_external_code\":\"398\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"17\",\"externalCode\":\"AR08\",\"name\":\"Der. Laboral y Seg. Soc.\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-07 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-07 12:46:31\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000398-SR-001014 - Elaboraci\\u00f3n de consulta Ministerio de Trabajo\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000398-SR-001014\",\"finishedDate\":null,\"fixRateValue\":300,\"fix_rate_value\":300,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2319\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000398-SR-001014\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-22 19:31:56\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"140\",\"name\":\"COMERCIALIZADORA IMMUNOTEC BOLIVIA S.A.\",\"primary_external_code\":\"398\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"17\",\"externalCode\":\"AR08\",\"name\":\"Der. Laboral y Seg. Soc.\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-07 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-07 12:48:29\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000398-SR-001015 - Elaboraci\\u00f3n pol\\u00edtica de control de asistencia\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000398-SR-001015\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2320\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000398-SR-001015\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-22 19:31:56\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"140\",\"name\":\"COMERCIALIZADORA IMMUNOTEC BOLIVIA S.A.\",\"primary_external_code\":\"398\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"17\",\"externalCode\":\"AR08\",\"name\":\"Der. Laboral y Seg. Soc.\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-07 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-07 12:55:11\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000398-SR-001016 - Cambio de representante legal\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000398-SR-001016\",\"finishedDate\":null,\"fixRateValue\":1305,\"fix_rate_value\":1305,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2321\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000398-SR-001016\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-02 15:10:44\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"140\",\"name\":\"COMERCIALIZADORA IMMUNOTEC BOLIVIA S.A.\",\"primary_external_code\":\"398\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-20 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-20 13:29:13\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000406-RE-000176 - Alquiler Almac\\u00e9n\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000406-RE-000176\",\"finishedDate\":null,\"fixRateValue\":300,\"fix_rate_value\":300,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2341\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000406-RE-000176\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-20 19:31:27\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"7\",\"name\":\"ACTIVZBOLIVIA SRL\",\"primary_external_code\":\"406\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-07 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-21 20:50:30\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000398-SR-001040 - Cierre corporativo anual 2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000398-SR-001040\",\"finishedDate\":null,\"fixRateValue\":1200,\"fix_rate_value\":1200,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2353\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":100,\"notes\":\"100 % al final\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000398-SR-001040\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-07 21:35:59\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"140\",\"name\":\"COMERCIALIZADORA IMMUNOTEC BOLIVIA S.A.\",\"primary_external_code\":\"398\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:47\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000481-RE-000356 - TENENCIA TITAN 9 NSOH60358-16BO \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000481-RE-000356\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2410\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000481-RE-000356\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"202\",\"name\":\"Diversey de Argentina S.A.\",\"primary_external_code\":\"481\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:47\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000481-RE-000357 - TENENIA 8 M NEGRA, 8M ROJA, 8M CLASSIC NSOH60360-16BO \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000481-RE-000357\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2411\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000481-RE-000357\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"202\",\"name\":\"Diversey de Argentina S.A.\",\"primary_external_code\":\"481\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:47\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000481-RE-000358 - TENENCIA VIEW AEROSOL (ESPUMA LIMPIAVIDRIOS) NSOH82442-22BO \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000481-RE-000358\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2412\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000481-RE-000358\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"202\",\"name\":\"Diversey de Argentina S.A.\",\"primary_external_code\":\"481\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:47\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000481-RE-000359 - TENENCIA EMEREL FORTE NSOH62760-17BO NSOH62760-17BO \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000481-RE-000359\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2413\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000481-RE-000359\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"202\",\"name\":\"Diversey de Argentina S.A.\",\"primary_external_code\":\"481\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:47\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000481-RE-000360 - TENENCIA LIMPIADOR DE ALFONBRAS LIQUIDO, MARCA RUGBEE NSOCH64238-18BO \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000481-RE-000360\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2414\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000481-RE-000360\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"202\",\"name\":\"Diversey de Argentina S.A.\",\"primary_external_code\":\"481\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:47\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000481-RE-000361 - TENENCIA ESPUMA LIMPIADORA INSTANTENEA EN AEROSOL, MARCA LEM NOSH70472-19BO \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000481-RE-000361\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2415\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000481-RE-000361\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"202\",\"name\":\"Diversey de Argentina S.A.\",\"primary_external_code\":\"481\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:47\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000481-RE-000362 - TENENCIA LIMPIADOR DE ALFOMBRAS Y TAPIZADOS EN AEROSOL , MARCA RUGBEE NSOH70473-19BO \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000481-RE-000362\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2416\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000481-RE-000362\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"202\",\"name\":\"Diversey de Argentina S.A.\",\"primary_external_code\":\"481\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:47\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000481-RE-000363 - TENENCIA SELLADOR ACABADO DE PISOS, MARCA PLAZA PLUS NSOCH64241-18BO \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000481-RE-000363\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2417\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000481-RE-000363\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"202\",\"name\":\"Diversey de Argentina S.A.\",\"primary_external_code\":\"481\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:47\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000481-RE-000364 - TENENCIA TRAFFIC HS NSOH62758-17BO \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000481-RE-000364\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2418\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000481-RE-000364\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"202\",\"name\":\"Diversey de Argentina S.A.\",\"primary_external_code\":\"481\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:47\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000481-RE-000365 - TENENCIA DETERGENTE NEUTRO CONCENTRADO, MARCA TITAN 30 NSOH64237-18BO \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000481-RE-000365\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2419\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000481-RE-000365\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"202\",\"name\":\"Diversey de Argentina S.A.\",\"primary_external_code\":\"481\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:47\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000481-RE-000366 - TENENCIA SUMA RINSE NSOH62771-17BO \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000481-RE-000366\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2420\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000481-RE-000366\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"202\",\"name\":\"Diversey de Argentina S.A.\",\"primary_external_code\":\"481\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:47\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000481-RE-000367 - TENENCIA SUMA LIMA NSOH62759-17BO \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000481-RE-000367\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2421\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000481-RE-000367\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"202\",\"name\":\"Diversey de Argentina S.A.\",\"primary_external_code\":\"481\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:47\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000481-RE-000368 - TENENCIA SUMA ILAN NSOH62765-17BO \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000481-RE-000368\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2422\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000481-RE-000368\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"202\",\"name\":\"Diversey de Argentina S.A.\",\"primary_external_code\":\"481\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:47\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000481-RE-000369 - TENENCIA SUMA FREEZER FLOOR CLEANER NSOH62757-17BO \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000481-RE-000369\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2423\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000481-RE-000369\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"202\",\"name\":\"Diversey de Argentina S.A.\",\"primary_external_code\":\"481\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:47\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000481-RE-000370 - TENENCIA SUMA CRISTAL NSOH62768-17BO \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000481-RE-000370\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2424\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000481-RE-000370\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"202\",\"name\":\"Diversey de Argentina S.A.\",\"primary_external_code\":\"481\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:47\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000481-RE-000371 - TENENCIA SUMA CALC NSOH62769-17BO \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000481-RE-000371\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2425\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000481-RE-000371\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"202\",\"name\":\"Diversey de Argentina S.A.\",\"primary_external_code\":\"481\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:48\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000481-RE-000372 - TENENCIA CERA EMULSIONADA CON POLIMEROS ACRILICOS, INCOLORA, MARCA 8M EXPRESS NSOH70474-19BO \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000481-RE-000372\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2426\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000481-RE-000372\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"202\",\"name\":\"Diversey de Argentina S.A.\",\"primary_external_code\":\"481\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:48\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000481-RE-000373 - TENENCIA 8M LUSTRADOR CON SILICONAS EN AEROSOL, MARCA 8M LUSTRADOR MSOH70475-19BO \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000481-RE-000373\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2427\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000481-RE-000373\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"202\",\"name\":\"Diversey de Argentina S.A.\",\"primary_external_code\":\"481\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:48\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000481-RE-000374 - TENENCIA CLAX ACTIV NSOH62770-17BO \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000481-RE-000374\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2428\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000481-RE-000374\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"202\",\"name\":\"Diversey de Argentina S.A.\",\"primary_external_code\":\"481\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:48\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000481-RE-000375 - TENENCIA CLAX 3RP1 NSOH63044-17BO \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000481-RE-000375\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2429\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000481-RE-000375\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"202\",\"name\":\"Diversey de Argentina S.A.\",\"primary_external_code\":\"481\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:48\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000481-RE-000376 - TENENCIA CLAX SUAVE NSOH62762-17BO \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000481-RE-000376\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2430\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000481-RE-000376\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"202\",\"name\":\"Diversey de Argentina S.A.\",\"primary_external_code\":\"481\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:48\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000481-RE-000377 - TENENCIA FLASH ULTRA NSOH60359-16BOE \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000481-RE-000377\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2431\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000481-RE-000377\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"202\",\"name\":\"Diversey de Argentina S.A.\",\"primary_external_code\":\"481\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:49\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000549-RE-000402 - TENENCIA ENCIDENT PARA BRACKETS PASTA DENTAL NSOC13393-16EC \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000549-RE-000402\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2456\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000549-RE-000402\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"94\",\"name\":\"BLENASTOR BOLIVIA\",\"primary_external_code\":\"549\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:49\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000549-RE-000403 - TENENCIA ENCIDENT PROFESSIONAL ADVANCED ENJUAGUE BUCAL-SOLUCI\\u00d3N II-75060\\/2020 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000549-RE-000403\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2457\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000549-RE-000403\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"94\",\"name\":\"BLENASTOR BOLIVIA\",\"primary_external_code\":\"549\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:49\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000549-RE-000404 - TENENCIA ENCIDENT PROFESSIONAL ADVANCED CLORHEXIDINA 2% - SOLUCI\\u00d3N TOPICA II-74353\\/2020 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000549-RE-000404\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2458\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000549-RE-000404\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"94\",\"name\":\"BLENASTOR BOLIVIA\",\"primary_external_code\":\"549\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:49\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000549-RE-000405 - TENENCIA ENCIDENT PROFECIONAL NSOC01412-13EC \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000549-RE-000405\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2459\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000549-RE-000405\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"94\",\"name\":\"BLENASTOR BOLIVIA\",\"primary_external_code\":\"549\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:49\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000549-RE-000406 - TENENCIA ENCIDENT PROFESSIONAL PARA BRACKETS ENJUAGUE BUCAL NSOC06861-14EC \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000549-RE-000406\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2460\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000549-RE-000406\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"94\",\"name\":\"BLENASTOR BOLIVIA\",\"primary_external_code\":\"549\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:49\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000549-RE-000407 - TENENCIA CEPILLO ENCIDENT PROFESSIONAL PARA BRACKETS INTERDENTAL DI-76850\\/2021 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000549-RE-000407\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2461\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000549-RE-000407\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"94\",\"name\":\"BLENASTOR BOLIVIA\",\"primary_external_code\":\"549\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:49\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000549-RE-000408 - TENENCIA ENCIDENT PROFESSIONAL PARA BRACKETS CEPILLO DENTAL DI-74183\\/2020 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000549-RE-000408\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2462\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000549-RE-000408\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"94\",\"name\":\"BLENASTOR BOLIVIA\",\"primary_external_code\":\"549\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:49\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000549-RE-000409 - TENENCIA ENCIDENT PROFESSIONAL ADVANCED-CEPILLO DENTAL DI-74182\\/2020 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000549-RE-000409\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2463\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000549-RE-000409\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"94\",\"name\":\"BLENASTOR BOLIVIA\",\"primary_external_code\":\"549\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:49\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000406-RE-000413 - TENENCIA GNM-X - CAPSULA II-86177\\/2023 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000406-RE-000413\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2467\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000406-RE-000413\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"7\",\"name\":\"ACTIVZBOLIVIA SRL\",\"primary_external_code\":\"406\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:49\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000406-RE-000414 - TENENCIA BARRO PURIFICADOR \\/ PURIFYNG MUD NSOC40033-19PE \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000406-RE-000414\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2468\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000406-RE-000414\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"7\",\"name\":\"ACTIVZBOLIVIA SRL\",\"primary_external_code\":\"406\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:49\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000406-RE-000415 - TENENCIA SUERO REJUVENECEDOR \\/ REJUVENATING SERUM NSOC39928-19PE \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000406-RE-000415\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2469\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000406-RE-000415\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"7\",\"name\":\"ACTIVZBOLIVIA SRL\",\"primary_external_code\":\"406\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:49\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000406-RE-000416 - TENENCIA ESENCIA TONIFICADORA \\/ ESSENCE TONER NSOC40311-19PE\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000406-RE-000416\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2470\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000406-RE-000416\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"7\",\"name\":\"ACTIVZBOLIVIA SRL\",\"primary_external_code\":\"406\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-06-11 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-29 19:33:18\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000406-RE-000499 - Cierre corporativo anual 2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000406-RE-000499\",\"finishedDate\":null,\"fixRateValue\":650,\"fix_rate_value\":650,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2558\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"100% al final\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000406-RE-000499\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"approved\",\"updated_at\":\"2024-06-11 22:06:51\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"7\",\"name\":\"ACTIVZBOLIVIA SRL\",\"primary_external_code\":\"406\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-29 22:30:53\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000522-SR-001087 - 000522-RE-000635 - TENENCIA GEL AIR FRESHENER NSOH29623-19EC \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000522-RE-000635\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2565\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000522-SR-001087\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"103\",\"name\":\"BRIGARD CASTRO S.A.S.\",\"primary_external_code\":\"522\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-29 22:31:55\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000522-SR-001088 - 000522-RE-000636 - TENENCIA DETERGENTE LIQUIDO PARA TODO TIPO DE ROPA GEL UNIVERDAL NSOH01662-21PE \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000522-RE-000636\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2566\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000522-SR-001088\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"103\",\"name\":\"BRIGARD CASTRO S.A.S.\",\"primary_external_code\":\"522\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-29 22:33:39\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000522-SR-001089 - 000522-RE-000637 - TENENCIA DETERGENTE EN POLVO PARA TODO TIPO DE ROPA COLORES VIVOS (PERSIL) \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000522-RE-000637\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2567\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000522-SR-001089\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"103\",\"name\":\"BRIGARD CASTRO S.A.S.\",\"primary_external_code\":\"522\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-29 22:35:06\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000522-SR-001090 - 000522-RE-000638 - TENENCIA DETERGENTE LIQUIDO PARA TODO TIPO DE ROPA GEL COLORES VIVOS (PERSIL) \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000522-RE-000638\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2568\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000522-SR-001090\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"103\",\"name\":\"BRIGARD CASTRO S.A.S.\",\"primary_external_code\":\"522\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-29 22:36:05\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000522-SR-001091 - 000522-RE-000639 - TENECIA DETERGENTE EN POLVO PARA TODO TIPO DE ROPA UNIVERSAL (PERSIL) NSOH01659-21PE \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000522-RE-000639\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2569\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000522-SR-001091\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"103\",\"name\":\"BRIGARD CASTRO S.A.S.\",\"primary_external_code\":\"522\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-29 22:36:54\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000522-SR-001092 - 000522-RE-000640 - TENENCIA RENUZIT SIMPLY VAINILLA GEL AIR PRESHENER NSOH09272-20CO \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000522-RE-000640\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2570\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000522-SR-001092\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"103\",\"name\":\"BRIGARD CASTRO S.A.S.\",\"primary_external_code\":\"522\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-26 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-26 15:49:55\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000522-RE-000626 - CAMBIOS DETERGENTE EN POLVO PARA TODO TIPO DE ROPA UNIVERSAL (PERSIL) NSOH01659-21PE\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000522-RE-000626\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2749\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000522-RE-000626\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-26 15:49:56\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"103\",\"name\":\"BRIGARD CASTRO S.A.S.\",\"primary_external_code\":\"522\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-26 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-26 15:50:58\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000522-RE-000627 - CAMBIOS DETERGENTE EN POLVO PARA TODO TIPO DE ROPA COLORES VIVOS (PERSIL) NSOH01660-21PE\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000522-RE-000627\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2750\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000522-RE-000627\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-26 10:50:59\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"103\",\"name\":\"BRIGARD CASTRO S.A.S.\",\"primary_external_code\":\"522\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-26 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-26 15:52:01\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000522-RE-000628 - CAMBIOS DETERGENTE L\\u00cdQUIDO PARA TODO TIPO DE ROPA GEL UNIVERSAL (PERSIL) NSOH01662-21PE\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000522-RE-000628\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2751\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000522-RE-000628\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-26 10:52:02\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"103\",\"name\":\"BRIGARD CASTRO S.A.S.\",\"primary_external_code\":\"522\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-26 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-26 15:53:06\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000522-RE-000629 - HOMOLOGACION DETERGENTE LIQUIDO PARA TODO TIPO DE ROPA GEL COLORES VIVOS (PERSIL) NSOH01661 - 21 PE\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000522-RE-000629\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2752\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000522-RE-000629\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-26 09:53:07\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"103\",\"name\":\"BRIGARD CASTRO S.A.S.\",\"primary_external_code\":\"522\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-26 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-26 15:53:55\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000522-RE-000630 - HOMOLOGACION DETERGENTE EN POLVO PARA TODO TIPO DE ROPA COLORES VIVOS (PERSIL) NSOH01660 - 21PE\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000522-RE-000630\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2753\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000522-RE-000630\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-26 09:53:55\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"103\",\"name\":\"BRIGARD CASTRO S.A.S.\",\"primary_external_code\":\"522\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-26 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-26 15:54:45\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000522-RE-000631 - HOMOLOGACI\\u00d3N DETERGENTE L\\u00cdQUIDO PARA TODO TIPO DE ROPA GEL UNIVERSAL (PERSIL) NSOH01662-21PE\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000522-RE-000631\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2754\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000522-RE-000631\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-26 09:54:46\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"103\",\"name\":\"BRIGARD CASTRO S.A.S.\",\"primary_external_code\":\"522\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-26 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-26 15:56:29\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000522-RE-000632 - HOMOLOGACI\\u00d3N DETERGENTE EN POLVO PARA TODO TIPO DE ROPA UNIVERSAL (PERSIL) NSOH01659-21PE\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000522-RE-000632\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2755\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000522-RE-000632\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-26 09:56:29\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"103\",\"name\":\"BRIGARD CASTRO S.A.S.\",\"primary_external_code\":\"522\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-26 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-26 15:57:22\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000522-RE-000633 - HOMOLOGACI\\u00d3N GEL AIR FRESHENER NSOH29623-19EC.\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000522-RE-000633\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2756\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000522-RE-000633\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-26 09:57:23\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"103\",\"name\":\"BRIGARD CASTRO S.A.S.\",\"primary_external_code\":\"522\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-26 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-26 15:58:06\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000522-RE-000634 - HOMOLOGACI\\u00d3N RENUZIT SIMPLY VANILLA GEL AIR FRESHENER NSOH09272- 20CO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000522-RE-000634\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2757\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000522-RE-000634\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-26 09:58:07\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"103\",\"name\":\"BRIGARD CASTRO S.A.S.\",\"primary_external_code\":\"522\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2025-03-10 00:00:00\",\"confidential\":false,\"created_at\":\"2024-04-01 21:32:19\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000406-RE-000644 - Cierre corporativo anual 2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000406-RE-000644\",\"finishedDate\":null,\"fixRateValue\":650,\"fix_rate_value\":650,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2781\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000406-RE-000644\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":4,\"statusMarking\":\"billed\",\"updated_at\":\"2025-03-10 09:22:03\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"7\",\"name\":\"ACTIVZBOLIVIA SRL\",\"primary_external_code\":\"406\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-05-17 00:00:00\",\"confidential\":false,\"created_at\":\"2024-05-17 22:09:55\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000406-SR-001170 - Servicios Legales Mensuales\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000406-SR-001170\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2843\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"VAlor hora adicional por abogado 100 usd\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":null,\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"pending_completion\",\"updated_at\":\"2024-05-17 22:09:55\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"lmorenog@emba.com\",\"enabled\":true,\"fullName\":\"Luis Moreno Gutierrez\",\"id\":8,\"locale\":\"es\",\"shortName\":\"lmoreno\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"lmorenog@emba.com\"},\"customer\":{\"id\":\"7\",\"name\":\"ACTIVZBOLIVIA SRL\",\"primary_external_code\":\"406\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"2\",\"externalCode\":\"AR04\",\"name\":\"Arbitraje\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2025-02-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-05-17 22:11:21\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000406-SR-001171 - Representacion legal\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000406-SR-001171\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2844\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":null,\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2025-02-12 11:29:43\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:16\",\"daysAllow\":302,\"email\":\"aloayza@emba.com\",\"enabled\":true,\"fullName\":\"Ana Luz Loayza\",\"id\":51,\"locale\":\"es\",\"shortName\":\"aloayza\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"aloayza@emba.com\"},\"customer\":{\"id\":\"7\",\"name\":\"ACTIVZBOLIVIA SRL\",\"primary_external_code\":\"406\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"2\",\"externalCode\":\"AR04\",\"name\":\"Arbitraje\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-05-17 00:00:00\",\"confidential\":false,\"created_at\":\"2024-05-17 22:16:23\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000406-SR-001172 - Servicios Legales integrales por hora\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000406-SR-001172\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2845\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":null,\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"pending_completion\",\"updated_at\":\"2024-05-17 22:16:23\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2024-03-19 13:50:44\",\"daysAllow\":302,\"email\":\"agomez@timemanagerweb.com\",\"enabled\":true,\"fullName\":\"Andrea Gomez\",\"id\":84,\"locale\":\"es\",\"shortName\":\"AG\",\"superAdmin\":false,\"updated_at\":\"2024-08-29 14:19:23\",\"userType\":4,\"username\":\"agomez@timemanagerweb.com\"},\"customer\":{\"id\":\"7\",\"name\":\"ACTIVZBOLIVIA SRL\",\"primary_external_code\":\"406\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"2\",\"externalCode\":\"AR04\",\"name\":\"Arbitraje\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-10-01 00:00:00\",\"confidential\":false,\"created_at\":\"2024-09-23 17:03:13\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000599-RE-000719 - CPtest any\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000719\",\"finishedDate\":null,\"fixRateValue\":2000,\"fix_rate_value\":2000,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2901\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000599-RE-000719\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-10-01 16:53:05\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":27,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-10-01 00:00:00\",\"confidential\":false,\"created_at\":\"2024-09-23 17:05:32\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000406-SC-000977 - Any prueba3\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000406-SC-000977\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2902\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":null,\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-10-01 17:39:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"amorenog@emba.com\",\"enabled\":true,\"fullName\":\"Andres Moreno Gutierrez\",\"id\":5,\"locale\":\"es\",\"shortName\":\"amoreno\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"amorenog@emba.com\"},\"customer\":{\"id\":\"7\",\"name\":\"ACTIVZBOLIVIA SRL\",\"primary_external_code\":\"406\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-09-26 00:00:00\",\"confidential\":false,\"created_at\":\"2024-09-23 17:08:03\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000599-RE-000720 - Any prueba323\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000720\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2903\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000599-RE-000720\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-10-01 20:49:49\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"aaraoz@emba.com\",\"enabled\":true,\"fullName\":\"Alvaro Araoz Ardaya\",\"id\":17,\"locale\":\"es\",\"shortName\":\"aaraoz\",\"superAdmin\":false,\"updated_at\":\"2024-12-04 15:29:19\",\"userType\":1,\"username\":\"aaraoz@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"2\",\"externalCode\":\"AR04\",\"name\":\"Arbitraje\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-09-23 00:00:00\",\"confidential\":false,\"created_at\":\"2024-09-23 17:12:10\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000599-RE-000721 - Test informeany\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000721\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2904\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000599-RE-000721\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-10-01 21:11:18\",\"withIVA\":true,\"responsible\":null,\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-09-26 00:00:00\",\"confidential\":false,\"created_at\":\"2024-09-24 16:17:47\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000599-BK-000379 - alertas pruebas\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-BK-000379\",\"finishedDate\":null,\"fixRateValue\":10000,\"fix_rate_value\":10000,\"hourLimit\":2,\"hour_limit\":2,\"id\":\"2905\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":50,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000599-BK-000379\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"approved\",\"updated_at\":\"2024-09-26 17:05:13\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2024-02-08 00:16:01\",\"daysAllow\":302,\"email\":\"ckaegui@emba.com\",\"enabled\":true,\"fullName\":\"Camila Kaegui\",\"id\":75,\"locale\":\"es\",\"shortName\":\"ckaegui\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"ckaegui@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-09-26 00:00:00\",\"confidential\":false,\"created_at\":\"2024-09-26 08:29:14\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000406-SC-000979 - Freetest Any\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000406-SC-000979\",\"finishedDate\":null,\"fixRateValue\":1000,\"fix_rate_value\":1000,\"hourLimit\":10,\"hour_limit\":10,\"id\":\"2908\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":50,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":null,\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"approved\",\"updated_at\":\"2024-09-26 13:45:50\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:16\",\"daysAllow\":302,\"email\":\"aloayza@emba.com\",\"enabled\":true,\"fullName\":\"Ana Luz Loayza\",\"id\":51,\"locale\":\"es\",\"shortName\":\"aloayza\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"aloayza@emba.com\"},\"customer\":{\"id\":\"7\",\"name\":\"ACTIVZBOLIVIA SRL\",\"primary_external_code\":\"406\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"2\",\"externalCode\":\"AR04\",\"name\":\"Arbitraje\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-10-01 00:00:00\",\"confidential\":false,\"created_at\":\"2024-10-01 12:00:13\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000406-RE-000723 - Any prueba3\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000406-RE-000723\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2909\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000406-RE-000723\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-10-01 12:00:25\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"atejerina@emba.com\",\"enabled\":true,\"fullName\":\"Andre Luis Tejerina Queiroz\",\"id\":25,\"locale\":\"es\",\"shortName\":\"atejerin\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"atejerina@emba.com\"},\"customer\":{\"id\":\"7\",\"name\":\"ACTIVZBOLIVIA SRL\",\"primary_external_code\":\"406\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-10-01 00:00:00\",\"confidential\":false,\"created_at\":\"2024-10-01 12:01:51\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000406-RE-000724 - Any prueba3\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000406-RE-000724\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2910\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000406-RE-000724\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-10-01 12:02:08\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:16\",\"daysAllow\":302,\"email\":\"aloayza@emba.com\",\"enabled\":true,\"fullName\":\"Ana Luz Loayza\",\"id\":51,\"locale\":\"es\",\"shortName\":\"aloayza\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"aloayza@emba.com\"},\"customer\":{\"id\":\"7\",\"name\":\"ACTIVZBOLIVIA SRL\",\"primary_external_code\":\"406\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-10-01 00:00:00\",\"confidential\":false,\"created_at\":\"2024-10-01 12:07:56\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000406-RE-000725 - Test Any prueba\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000406-RE-000725\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2911\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000406-RE-000725\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-10-01 17:39:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"amorenog@emba.com\",\"enabled\":true,\"fullName\":\"Andres Moreno Gutierrez\",\"id\":5,\"locale\":\"es\",\"shortName\":\"amoreno\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"amorenog@emba.com\"},\"customer\":{\"id\":\"7\",\"name\":\"ACTIVZBOLIVIA SRL\",\"primary_external_code\":\"406\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-10-28 00:00:00\",\"confidential\":false,\"created_at\":\"2024-10-02 16:05:03\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000599-RE-000726 - Test Any prueba\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000726\",\"finishedDate\":null,\"fixRateValue\":2000,\"fix_rate_value\":2000,\"hourLimit\":5,\"hour_limit\":5,\"id\":\"2912\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":50,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000599-RE-000726\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"billed\",\"updated_at\":\"2024-10-28 14:39:53\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"aaraoz@emba.com\",\"enabled\":true,\"fullName\":\"Alvaro Araoz Ardaya\",\"id\":17,\"locale\":\"es\",\"shortName\":\"aaraoz\",\"superAdmin\":false,\"updated_at\":\"2024-12-04 15:29:19\",\"userType\":1,\"username\":\"aaraoz@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-10-02 00:00:00\",\"confidential\":false,\"created_at\":\"2024-10-02 16:49:37\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000599-RE-000728 - Pruebasxhoras\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000728\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2914\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000599-RE-000728\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-10-03 17:22:04\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"aaraoz@emba.com\",\"enabled\":true,\"fullName\":\"Alvaro Araoz Ardaya\",\"id\":17,\"locale\":\"es\",\"shortName\":\"aaraoz\",\"superAdmin\":false,\"updated_at\":\"2024-12-04 15:29:19\",\"userType\":1,\"username\":\"aaraoz@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-10-03 00:00:00\",\"confidential\":false,\"created_at\":\"2024-10-03 11:01:14\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000406-RE-000733 - pruebaxhorasconCAPMensual\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000406-RE-000733\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2919\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000406-RE-000733\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-10-04 14:54:03\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"aaraoz@emba.com\",\"enabled\":true,\"fullName\":\"Alvaro Araoz Ardaya\",\"id\":17,\"locale\":\"es\",\"shortName\":\"aaraoz\",\"superAdmin\":false,\"updated_at\":\"2024-12-04 15:29:19\",\"userType\":1,\"username\":\"aaraoz@emba.com\"},\"customer\":{\"id\":\"7\",\"name\":\"ACTIVZBOLIVIA SRL\",\"primary_external_code\":\"406\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-10-03 00:00:00\",\"confidential\":false,\"created_at\":\"2024-10-03 11:02:40\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000406-SC-000980 - pruebaxhorasconCAPMensual\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000406-SC-000980\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2920\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":null,\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-10-03 11:02:46\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"aaraoz@emba.com\",\"enabled\":true,\"fullName\":\"Alvaro Araoz Ardaya\",\"id\":17,\"locale\":\"es\",\"shortName\":\"aaraoz\",\"superAdmin\":false,\"updated_at\":\"2024-12-04 15:29:19\",\"userType\":1,\"username\":\"aaraoz@emba.com\"},\"customer\":{\"id\":\"7\",\"name\":\"ACTIVZBOLIVIA SRL\",\"primary_external_code\":\"406\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-10-03 00:00:00\",\"confidential\":false,\"created_at\":\"2024-10-03 11:35:13\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000599-SC-000981 - pruebaxhorasconCAP\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-SC-000981\",\"finishedDate\":null,\"fixRateValue\":1000,\"fix_rate_value\":1000,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2921\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":null,\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-10-04 22:16:57\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"aaraoz@emba.com\",\"enabled\":true,\"fullName\":\"Alvaro Araoz Ardaya\",\"id\":17,\"locale\":\"es\",\"shortName\":\"aaraoz\",\"superAdmin\":false,\"updated_at\":\"2024-12-04 15:29:19\",\"userType\":1,\"username\":\"aaraoz@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-10-03 00:00:00\",\"confidential\":false,\"created_at\":\"2024-10-03 14:25:25\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000599-RE-000735 - pruebaxhoraconmontoeditable\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000735\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2923\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000599-RE-000735\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-10-03 19:30:27\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"atejerina@emba.com\",\"enabled\":true,\"fullName\":\"Andre Luis Tejerina Queiroz\",\"id\":25,\"locale\":\"es\",\"shortName\":\"atejerin\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"atejerina@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-10-03 00:00:00\",\"confidential\":false,\"created_at\":\"2024-10-03 14:52:28\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000599-RE-000736 - pruebaxtramite\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000736\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2924\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000599-RE-000736\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-10-03 19:55:15\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"aaraoz@emba.com\",\"enabled\":true,\"fullName\":\"Alvaro Araoz Ardaya\",\"id\":17,\"locale\":\"es\",\"shortName\":\"aaraoz\",\"superAdmin\":false,\"updated_at\":\"2024-12-04 15:29:19\",\"userType\":1,\"username\":\"aaraoz@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-10-04 00:00:00\",\"confidential\":false,\"created_at\":\"2024-10-04 10:39:58\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000599-RE-000737 - pruebasxmontofijoxasunto\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000737\",\"finishedDate\":null,\"fixRateValue\":5000,\"fix_rate_value\":5000,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2925\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":0,\"notes\":\"ggg\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000599-RE-000737\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-10-04 10:40:04\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"aaraoz@emba.com\",\"enabled\":true,\"fullName\":\"Alvaro Araoz Ardaya\",\"id\":17,\"locale\":\"es\",\"shortName\":\"aaraoz\",\"superAdmin\":false,\"updated_at\":\"2024-12-04 15:29:19\",\"userType\":1,\"username\":\"aaraoz@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-10-04 00:00:00\",\"confidential\":false,\"created_at\":\"2024-10-04 10:42:13\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000406-RE-000738 - Transferencia de Cuotas y Activos\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000406-RE-000738\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2926\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000406-RE-000738\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-10-04 15:44:40\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"atejerina@emba.com\",\"enabled\":true,\"fullName\":\"Andre Luis Tejerina Queiroz\",\"id\":25,\"locale\":\"es\",\"shortName\":\"atejerin\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"atejerina@emba.com\"},\"customer\":{\"id\":\"7\",\"name\":\"ACTIVZBOLIVIA SRL\",\"primary_external_code\":\"406\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"2\",\"externalCode\":\"AR04\",\"name\":\"Arbitraje\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-10-04 00:00:00\",\"confidential\":false,\"created_at\":\"2024-10-04 11:01:08\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000599-SC-000982 - pruebasxhitosoe\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-SC-000982\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2927\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":null,\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-10-04 11:01:14\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"aaraoz@emba.com\",\"enabled\":true,\"fullName\":\"Alvaro Araoz Ardaya\",\"id\":17,\"locale\":\"es\",\"shortName\":\"aaraoz\",\"superAdmin\":false,\"updated_at\":\"2024-12-04 15:29:19\",\"userType\":1,\"username\":\"aaraoz@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-10-04 00:00:00\",\"confidential\":false,\"created_at\":\"2024-10-04 13:09:23\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000406-SC-000983 - pruebaconcapMens\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000406-SC-000983\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2928\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":null,\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-10-04 19:02:07\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"aaraoz@emba.com\",\"enabled\":true,\"fullName\":\"Alvaro Araoz Ardaya\",\"id\":17,\"locale\":\"es\",\"shortName\":\"aaraoz\",\"superAdmin\":false,\"updated_at\":\"2024-12-04 15:29:19\",\"userType\":1,\"username\":\"aaraoz@emba.com\"},\"customer\":{\"id\":\"7\",\"name\":\"ACTIVZBOLIVIA SRL\",\"primary_external_code\":\"406\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2025-02-19 00:00:00\",\"confidential\":false,\"created_at\":\"2024-10-04 15:40:38\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000599-RE-000739 - ANY PRUEBA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000739\",\"finishedDate\":null,\"fixRateValue\":1000,\"fix_rate_value\":1000,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2929\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000599-RE-000739\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2025-02-19 10:22:11\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"cpaz@emba.com\",\"enabled\":true,\"fullName\":\"Carla Paz\",\"id\":28,\"locale\":\"es\",\"shortName\":\"cpaz\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"cpaz@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-10-04 00:00:00\",\"confidential\":false,\"created_at\":\"2024-10-04 15:59:17\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000599-RE-000740 - PRUEBA22\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000740\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2930\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000599-RE-000740\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-10-04 16:13:37\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"atejerina@emba.com\",\"enabled\":true,\"fullName\":\"Andre Luis Tejerina Queiroz\",\"id\":25,\"locale\":\"es\",\"shortName\":\"atejerin\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"atejerina@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-10-04 00:00:00\",\"confidential\":false,\"created_at\":\"2024-10-04 17:14:16\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000599-RE-000741 - XHORACONCAP\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000741\",\"finishedDate\":null,\"fixRateValue\":1000,\"fix_rate_value\":1000,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2931\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000599-RE-000741\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-10-04 17:14:32\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":27,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-10-07 00:00:00\",\"confidential\":false,\"created_at\":\"2024-10-07 15:31:47\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000599-RE-000742 - PRUEBA ANY33\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000742\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2932\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000599-RE-000742\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-10-07 20:33:44\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"aaraoz@emba.com\",\"enabled\":true,\"fullName\":\"Alvaro Araoz Ardaya\",\"id\":17,\"locale\":\"es\",\"shortName\":\"aaraoz\",\"superAdmin\":false,\"updated_at\":\"2024-12-04 15:29:19\",\"userType\":1,\"username\":\"aaraoz@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-10-11 00:00:00\",\"confidential\":false,\"created_at\":\"2024-10-11 09:24:45\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000599-RE-000743 - PRUEBAOCTUBRE\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000743\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":14,\"hour_limit\":14,\"id\":\"2933\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000599-RE-000743\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2025-03-10 14:20:58\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:16\",\"daysAllow\":302,\"email\":\"aloayza@emba.com\",\"enabled\":true,\"fullName\":\"Ana Luz Loayza\",\"id\":51,\"locale\":\"es\",\"shortName\":\"aloayza\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"aloayza@emba.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-12-11 00:00:00\",\"confidential\":false,\"created_at\":\"2024-12-11 11:30:11\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000599-SC-000984 - PRUEBA NICOL\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-SC-000984\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2935\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":null,\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-12-11 11:30:11\",\"withIVA\":true,\"responsible\":null,\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":null},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-12-11 00:00:00\",\"confidential\":false,\"created_at\":\"2024-12-11 12:26:58\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000599-RE-000744 - Consultas Legales por hora\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000744\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2936\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":null,\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"pending_completion\",\"updated_at\":\"2024-12-11 12:26:58\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2021-05-11 23:40:08\",\"daysAllow\":302,\"email\":\"pcorredor26@gmail.com\",\"enabled\":true,\"fullName\":\"AMTM Pruebas\",\"id\":77,\"locale\":\"es\",\"shortName\":\"AM\",\"superAdmin\":true,\"updated_at\":\"2025-07-21 10:12:54\",\"userType\":1,\"username\":\"pcorredor26@gmail.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-12-11 00:00:00\",\"confidential\":false,\"created_at\":\"2024-12-11 12:29:33\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000549-BK-000380 - Transferencia de Cuotas y Activos\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000549-BK-000380\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2937\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"PRUEBAS\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":null,\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"pending_completion\",\"updated_at\":\"2024-12-11 12:29:33\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2021-05-11 23:40:08\",\"daysAllow\":302,\"email\":\"pcorredor26@gmail.com\",\"enabled\":true,\"fullName\":\"AMTM Pruebas\",\"id\":77,\"locale\":\"es\",\"shortName\":\"AM\",\"superAdmin\":true,\"updated_at\":\"2025-07-21 10:12:54\",\"userType\":1,\"username\":\"pcorredor26@gmail.com\"},\"customer\":{\"id\":\"94\",\"name\":\"BLENASTOR BOLIVIA\",\"primary_external_code\":\"549\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2025-01-20 00:00:00\",\"confidential\":false,\"created_at\":\"2025-01-20 12:42:37\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000599-RE-000747 - Test Any prueba\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000747\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":14,\"hour_limit\":14,\"id\":\"2940\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":null,\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2025-01-20 12:43:18\",\"withIVA\":true,\"responsible\":null,\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2025-03-17 00:00:00\",\"confidential\":false,\"created_at\":\"2025-01-20 17:06:50\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000599-RE-000748 - PERMANENCIA DE TRES A\\u00d1OS CON CONTRATO EXTRANJERO- STEFAN MICHAEL KOSEL\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-RE-000748\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2941\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000599-RE-000748\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2025-03-17 16:15:11\",\"withIVA\":true,\"responsible\":null,\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2025-02-10 00:00:00\",\"confidential\":false,\"created_at\":\"2025-02-10 11:33:20\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000599-BK-000381 - PERMANENCIA DE TRES A\\u00d1OS CON CONTRATO EXTRANJERO- STEFAN MICHAEL KOSEL\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599-BK-000381\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2942\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":null,\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"pending_completion\",\"updated_at\":\"2025-02-10 11:33:20\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2021-05-11 23:40:08\",\"daysAllow\":302,\"email\":\"pcorredor26@gmail.com\",\"enabled\":true,\"fullName\":\"AMTM Pruebas\",\"id\":77,\"locale\":\"es\",\"shortName\":\"AM\",\"superAdmin\":true,\"updated_at\":\"2025-07-21 10:12:54\",\"userType\":1,\"username\":\"pcorredor26@gmail.com\"},\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2025-03-10 00:00:00\",\"confidential\":false,\"created_at\":\"2025-03-10 09:26:45\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000599 - Servicios Legales integrales por hora\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000599\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2943\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":null,\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2025-03-10 09:26:45\",\"withIVA\":true,\"responsible\":null,\"customer\":{\"id\":\"2\",\"name\":\"3M COMPANY\",\"primary_external_code\":\"599\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":null}]}}}\n","time":"2025-07-30T10:50:33-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: POST https://apinewtm.com/graphql/\nHeaders: map[Accept:[application/json] Authorization:[Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJpYXQiOjE3NTM4ODY1MjIsImV4cCI6MTc1Mzk2NjUyMiwiaWQiOjEwNSwidXNlcm5hbWUiOiJpbnRlZ3JhY2lvbmVzQGVtYmEuYm8iLCJhcGlrZXkiOiI5Yzg0ZjYzZTRlMzk2ZGZmOWU5ZjU3NDI5OGRmZWUzOSIsImFwaWtleUNyZWF0ZWRBdCI6eyJkYXRlIjoiMjAyNS0wNy0xNyAxMDo0MToyNS4wMDAwMDAiLCJ0aW1lem9uZV90eXBlIjozLCJ0aW1lem9uZSI6IkFtZXJpY2EvQm9nb3RhIn0sImZ1bGxOYW1lIjoiSW50ZWdyYWNpw7NuIEVNQkEiLCJlbWFpbCI6ImludGVncmFjaW9uZXNAZW1iYS5ibyIsImxvY2FsZSI6ImVzIiwiZGF5c0FsbG93ZWQiOjMwLCJpc0Nvb3JkaW5hdG9yIjpmYWxzZSwidHlwZVRhc2tWaWV3IjoibGlzdHMiLCJkYXlzYWxsb3ciOjMwLCJyb2xlcyI6e30sInNob3J0X25hbWUiOiJJTi5FTUJBIiwicGVybWlzc2lvbnMiOlsic3luY19leHRlcm5hbF9idXNpbmVzcyIsInN5bmNfZXh0ZXJuYWxfY3VzdG9tZXIiLCJzeW5jX2V4dGVybmFsX21pbGVzdG9uZSIsImFic2VuY2VfYXBwcm92ZSIsImFic2VuY2VfY3JlYXRlX2FsbCIsImFic2VuY2VfY3JlYXRlX293biIsImFic2VuY2VfbWVudSIsImFjY291bnRpbmdfYnVzaW5lc3NfbGlzdCIsImFjY291bnRpbmdfY3VzdG9tZXJfbGlzdCIsImJpbGxpbmdfcGVyaW9kX2RlbGV0ZV9hbGwiLCJiaWxsaW5nX3BlcmlvZF9lZGl0X2FsbCIsImJpbGxpbmdfcGVyaW9kX2xpc3QiLCJiaWxsaW5nX3BlcmlvZF9yZWFjdGl2YXRlIiwiYm9hcmRfcmF0ZV91c2VyX2NyZWF0ZSIsImJvYXJkX3JhdGVfdXNlcl9lZGl0IiwiYnVzaW5lc3NfY3JlYXRlIiwiYnVzaW5lc3NfZGVzY3JpcHRpb25fc2F2ZSIsImJ1c2luZXNzX2VkaXQiLCJidXNpbmVzc19saXN0X2FsbCIsImJ1c2luZXNzX21lbnUiLCJidXNpbmVzc19yZXNwb25zaWJsZV9saXN0X2FsbCIsImJ1c2luZXNzX3NlZV9iaWxsaW5nX2luZm8iLCJidXNpbmVzc2VzX2FsbG93ZWRfdXNlcl9jcmVhdGUiLCJidXNpbmVzc2VzX2FsbG93ZWRfdXNlcl9kZWxldGUiLCJjb21wYW55X2Rpc2FibGUiLCJjb21wYW55X2VkaXQiLCJjb21wYW55X2xpc3QiLCJjb25jZXB0X2NyZWF0ZSIsImNvbmNlcHRfZWRpdCIsImNvbmNlcHRfbWVudSIsImNvbnRhY3RfY3JlYXRlIiwiY29udGFjdF9jcmVhdGVfZmFzdCIsImNvbnRhY3RfZWRpdCIsImNvbnRhY3RfbGlzdCIsImNvbnRhY3RfbWVudSIsImN1c3RvbWVyX2NyZWF0ZSIsImN1c3RvbWVyX2NyZWF0ZV9mYXN0IiwiY3VzdG9tZXJfZWRpdCIsImN1c3RvbWVyX2xpc3QiLCJjdXN0b21lcl9saXN0X2FsbCIsImN1c3RvbWVyX21lbnUiLCJleHBlbnNlX2NyZWF0ZV9hbGwiLCJleHBlbnNlX2RlbGV0ZV9hbGwiLCJleHBlbnNlX2R1cGxpY2F0ZSIsImV4cGVuc2VfZWRpdF9hbGwiLCJleHBlbnNlX2xpc3RfYWxsIiwiZXhwZW5zZV9tZW51IiwiZXhwZW5zZV9yZWplY3RfYWxsIiwiZmFiX3Nob3ciLCJmaWxlX21lbnUiLCJnZW9yZWZlcmVuY2VfY3JlYXRlIiwiZ2VvcmVmZXJlbmNlX2VkaXQiLCJnZW9yZWZlcmVuY2VfbWVudSIsImdvX3RvX2xlZ2FjeSIsImluZGljYXRvcnNfbWVudSIsImludm9pY2VfY3JlYXRlIiwiaW52b2ljZV9kZXRhaWxfbGlzdF9hbGwiLCJpbnZvaWNlX2ZpeF90aW1lc19jdXN0b21fdmFsdWUiLCJpbnZvaWNlX2xpc3RfYWxsIiwiaW52b2ljZWFkdmFuY2VfY3JlYXRlIiwiaW52b2ljZWFkdmFuY2VfbGlzdCIsImludm9pY2VhZHZhbmNlX3VwZGF0ZSIsImxvZ19saXN0X2FsbCIsImxvZ19saXN0X293biIsIm1pbGVzdG9uZV9jcmVhdGUiLCJtaWxlc3RvbmVfZGVsZXRlIiwibWlsZXN0b25lX2VkaXQiLCJtb250aGx5X2ZpeF9yYXRlX2dyb3VwX2NyZWF0ZSIsIm1vbnRobHlfZml4X3JhdGVfZ3JvdXBfZWRpdCIsIm1vbnRobHlfdXNlcl9jb3N0X2NyZWF0ZSIsIm1vbnRobHlfdXNlcl9jb3N0X2VkaXQiLCJwYXltZW50X2NyZWF0ZSIsInBheW1lbnRfZGVsZXRlIiwicGF5bWVudF9lZGl0IiwicGF5bWVudF9tZW51IiwicHJvY2VkdXJlX21lbnUiLCJwcm9jZWR1cmVfcmF0ZV9jcmVhdGUiLCJwcm9jZWR1cmVfcmF0ZV9kZXRhaWxfY3JlYXRlIiwicHJvY2VkdXJlX3JhdGVfZGV0YWlsX2VkaXQiLCJwcm9jZWR1cmVfcmF0ZV9kZXRhaWxfbGlzdCIsInByb2NlZHVyZV9yYXRlX2VkaXQiLCJwcm9jZWR1cmVfcmF0ZV9saXN0IiwicHJvY2VkdXJlX3JhdGVfbWVudSIsInByb2NlZHVyZV90cmFuc2FjdGlvbl9saXN0IiwicHJvamVjdF9hcmNoaXZlX2Nhc2NhZGVfYWxsIiwicHJvamVjdF9kZWxldGVfY2FzY2FkZV9hbGwiLCJwcm9qZWN0X3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInJhdGVfYnVzaW5lc3NfY2F0ZWdvcnlfY3JlYXRlIiwicmF0ZV9idXNpbmVzc19jYXRlZ29yeV9lZGl0IiwicmF0ZV9idXNpbmVzc191c2VyX2NyZWF0ZSIsInJhdGVfYnVzaW5lc3NfdXNlcl9lZGl0IiwicmF0ZV9leGNoYW5nZV9jcmVhdGUiLCJyYXRlX2V4Y2hhbmdlX2VkaXQiLCJyYXRlX2V4Y2hhbmdlX2xpc3QiLCJyYXRlX3VzZXJfY3JlYXRlIiwicmF0ZV91c2VyX2VkaXQiLCJyb2xlX2NyZWF0ZSIsInJvbGVfZWRpdF9hbGwiLCJyb2xlX2xpc3RfYWxsIiwic2VjdGlvbl9hcmNoaXZlX2Nhc2NhZGVfYWxsIiwic2VjdGlvbl9kZWxldGVfY2FzY2FkZV9hbGwiLCJzZWN0aW9uX3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInNlZV9tZW51X3JhdGVfZXhjaGFuZ2UiLCJzZXJpZV9jcmVhdGUiLCJzZXJpZV9lZGl0Iiwic2VyaWVfbWVudSIsInNldHRpbmdzX3ZpZXciLCJzdXBwbGllcl9jcmVhdGUiLCJ0YXNrX2FkZF90aW1lX2FsbCIsInRhc2tfYWRkX3RpbWVfb3duIiwidGFza19hc3NpZ25lZF91c2VyX2VtYWlsIiwidGFza19jbG9zZWRfZW1haWwiLCJ0YXNrX2NyZWF0ZV9hbGwiLCJ0YXNrX2NyZWF0ZV9jb21tZW50X2VtYWlsIiwidGFza19jcmVhdGVfc2VsZiIsInRhc2tfY3JlYXRlX3RlYW0iLCJ0YXNrX2RlbGV0ZV9hbGwiLCJ0YXNrX2RlbGV0ZV9vd24iLCJ0YXNrX2RlbGV0ZV90ZWFtIiwidGFza19lZGl0X2FsbCIsInRhc2tfZWRpdF9kdWVfZGF0ZSIsInRhc2tfZWRpdF9vd24iLCJ0YXNrX2VkaXRfdGVhbSIsInRhc2tfbGlzdF9hbGwiLCJ0YXNrX2xpc3Rfb3duIiwidGFza19saXN0X3RlYW0iLCJ0YXNrX21hc3NpdmVpbXBvcnQiLCJ0YXNrX21lbnUiLCJ0YXNrX21pZ3JhdGlvbiIsInRhc2tfc2V0X2FkZGl0aW9uYWxfYXNzaWduZWVzIiwidGFza19zZXRfZHVlX2RhdGUiLCJ0YXNrX3NldF9lc3RpbWF0ZWRfdGltZSIsInRhc2tfc2V0X3ByaW9yaXR5IiwidGFza19zZXRfcHJvZ3Jlc3MiLCJ0YXhfZWRpdF9hbGwiLCJ0YXhfbGlzdF9hbGwiLCJ0ZWFtX2FyY2hpdmVfY2FzY2FkZV9hbGwiLCJ0ZWFtX2NyZWF0ZV9hbGwiLCJ0ZWFtX2RlbGV0ZV9hbGwiLCJ0ZWFtX2VkaXRfYWxsIiwidGVhbV9saXN0X2FsbCIsInRlYW1fbGlzdF9vd24iLCJ0ZWFtX3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInRpbWVfYWNjZXB0X2FsbCIsInRpbWVfYWNjZXB0X293biIsInRpbWVfYXBwcm92ZV9hbGwiLCJ0aW1lX2FwcHJvdmVfb3duIiwidGltZV9jcmVhdGVfYWxsIiwidGltZV9jcmVhdGVfb3duIiwidGltZV9kZWxldGVfYWxsIiwidGltZV9kZWxldGVfb3duIiwidGltZV9kZW55X2FsbCIsInRpbWVfZGVueV9vd24iLCJ0aW1lX2Rvd25sb2FkZmlsZV9hbGwiLCJ0aW1lX2Rvd25sb2FkZmlsZV9vd24iLCJ0aW1lX2VkaXRfYWxsIiwidGltZV9lZGl0X2Nsb3NlX3BlcmlvZF9hbGwiLCJ0aW1lX2VkaXRfY2xvc2VfcGVyaW9kX293biIsInRpbWVfZWRpdF9vd24iLCJ0aW1lX2xpc3RfYWxsIiwidGltZV9saXN0X293biIsInRpbWVfbWVudSIsInRpbWVfbWludXRlc196ZXJvIiwidGltZV9yZWplY3RfYWxsIiwidGltZV9yZXN0cmljdGVkX3BlcmlvZF9jcmVhdGUiLCJ0aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX2VkaXQiLCJ0aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX21lbnUiLCJ0aW1lX3NoYXJlX2FsbCIsInRpbWVfc2hhcmVfb3duIiwidGltZV9zaG93X2NhbGVuZGFyX3ZpZXciLCJ0aW1lX3VwbG9hZGZpbGVfYWxsIiwidGltZV91cGxvYWRmaWxlX293biIsInRyYW5zYWN0aW9uX2FkYXB0ZXJfbGlzdCIsInRyYW5zYWN0aW9uX2xpc3QiLCJ1c2VyX2Fic2VuY2VzX3Nob3ciLCJ1c2VyX2Nvc3RfY3JlYXRlIiwidXNlcl9jb3N0X2VkaXQiLCJ1c2VyX2Nvc3RfbGlzdCIsInVzZXJfY29zdF9tZW51IiwidXNlcl9jb3N0X3JhdGVfY3JlYXRlIiwidXNlcl9jb3N0X3JhdGVfZWRpdCIsInVzZXJfY29zdF9yYXRlX2xpc3QiLCJ1c2VyX2NyZWF0ZSIsInVzZXJfZGlzYWJsZSIsInVzZXJfZWRpdCIsInVzZXJfZWRpdF9kYXlzX2FsbG93X29ubHkiLCJ1c2VyX2dyb3VwX3JvbGVfY3JlYXRlX2FsbCIsInVzZXJfZ3JvdXBfcm9sZV9kZWxldGVfYWxsIiwidXNlcl9ncm91cF9yb2xlX2VkaXRfYWxsIiwidXNlcl9ncm91cF9yb2xlc19saXN0X2FsbCIsInVzZXJfbGlzdCIsInVzZXJfbGlzdF9hbGwiLCJ1c2VyX21hc3NfYWN0aXZhdGlvbiIsInVzZXJfcHJvZHVjdGl2aXR5X2NyZWF0ZSIsInVzZXJfcHJvZHVjdGl2aXR5X2Rpc2FibGUiLCJ1c2VyX3Byb2R1Y3Rpdml0eV9lZGl0IiwidXNlcl9wcm9kdWN0aXZpdHlfZW5hYmxlIiwidXNlcl9wcm9kdWN0aXZpdHlfbWVudSIsInVzZXJfdGltZV9yZXN0cmljdGVkX3BlcmlvZF9jcmVhdGUiLCJ1c2VyX3RpbWVfcmVzdHJpY3RlZF9wZXJpb2RfZGVsZXRlIiwidXNlcl90aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX2VkaXQiLCJ1c2VyZ3JvdXBfY3JlYXRlX2FsbCIsInVzZXJncm91cF9kZWxldGVfYWxsIiwidXNlcmdyb3VwX2VkaXRfYWxsIiwidXNlcmdyb3VwX2xpc3RfYWxsIiwidXNlcmdyb3VwX21lbnUiLCJ1c2Vyc191c2VyX2dyb3VwX2NyZWF0ZV9hbGwiLCJ1c2Vyc191c2VyX2dyb3VwX2RlbGV0ZV9hbGwiLCJ1c2Vyc191c2VyX2dyb3VwX2VkaXRfYWxsIiwidXNlcnNfdXNlcl9ncm91cHNfbGlzdF9hbGwiXSwiaG9tZXBhZ2UiOm51bGx9.kShN7NXGoaz1oFro-yYNyIpIEcnNpo1GiB8SFGKFUJtDQoqyp1I1w-CMA8Kta3vWXnUZwx-y2z1yVSJaMpZbqQgKFlakpcf6351bZSL8IAUPExSfLz0HYYCWFx-Usx94BBTqosKsRhnT8PkPN3dGxs8-XTIEDi9gN-Pk9OSHmM5mPkTsaaxTY40M-F7Y0Up2y6s_lwFaX13CmstiYZSXzyKL9SUBBx-E6-8qQAfuKPIoZ_50jSGPW98-IkAcWwqO6yGf-M07dSfFZ2vLfwc3ulHm2p8jVSmRxJ_O43BEWQD5cvqGbVIvSMXkS4y98DL4Vencjjg27iu3CUJsDNBBTg] Content-Type:[application/json] Origin:[https://azure-function.timemanagerweb.com] Tenant-Name:[pruebas-dos] User-Agent:[Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36]]\nBody: map[query:query ($limit: Int, $orderBy: String, $orderDesc: Boolean, $page: Int) { BusinessMeta(limit: $limit, orderBy: $orderBy, orderDesc: $orderDesc, page: $page) { meta { hasNextPage hasPreviousPage limit next page pages previous total } rows { apply_procedures billable business_customer_code caseNumber closed_date confidential created_at discountAmount discountPercent displayName enableBusinessAllowedUsers expedient finishedDate fixRateValue fix_rate_value hourLimit hour_limit id internal_code isBillable limitAlert notes partialCharges partial_charges primary_external_code processing secondaryExternalCode secondary_external_code status statusMarking updated_at withIVA responsible { created_at daysAllow email enabled fullName id locale shortName superAdmin updated_at userType username } customer { id name primary_external_code company { id name } } practiceArea { id externalCode name } } } } variables:map[limit:100 orderBy:orderBy orderDesc:true page:3]]\n","time":"2025-07-30T10:50:33-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: POST https://apinewtm.com/graphql/ | Status: 200 | Duration: 726.6357ms\nHeaders: map[Access-Control-Allow-Credentials:[true] Access-Control-Allow-Origin:[https://azure-function.timemanagerweb.com] Access-Control-Expose-Headers:[link, access-control-allow-credentials] Cache-Control:[no-cache, private] Content-Type:[application/json] Date:[Wed, 30 Jul 2025 14:50:34 GMT] Server:[] Vary:[Authorization]]\nBody: {\"data\":{\"BusinessMeta\":{\"meta\":{\"hasNextPage\":true,\"hasPreviousPage\":true,\"limit\":100,\"next\":4,\"page\":3,\"pages\":16,\"previous\":2,\"total\":1573},\"rows\":[{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2025-03-13 00:00:00\",\"confidential\":false,\"created_at\":\"2020-08-13 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000024 - Asesor\\u00eda por horas\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000024\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"30\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000341-RE-000024\",\"processing\":false,\"secondaryExternalCode\":\"24\",\"secondary_external_code\":\"24\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2025-03-13 10:11:50\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"11\",\"externalCode\":\"AR21\",\"name\":\"Der. Administrativo\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-03 00:00:00\",\"confidential\":false,\"created_at\":\"2021-06-04 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000040 - RECTIFICACI\\u00d3N DEL PRODUCTO MARCAPASOS IMPLANTABLE MECTRONIC CON DI-57077\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000040\",\"finishedDate\":null,\"fixRateValue\":300,\"fix_rate_value\":300,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"948\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000040\",\"processing\":false,\"secondaryExternalCode\":\"2732\",\"secondary_external_code\":\"2732\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 15:18:58\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-03 00:00:00\",\"confidential\":false,\"created_at\":\"2021-06-04 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000041 - INSCRIPCI\\u00d3N DE CATETERES: ENDOVASCULAR, HEMODIALISIS DI 51863\\/2019\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000041\",\"finishedDate\":null,\"fixRateValue\":300,\"fix_rate_value\":300,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"949\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000041\",\"processing\":false,\"secondaryExternalCode\":\"2733\",\"secondary_external_code\":\"2733\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 14:57:49\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-03 00:00:00\",\"confidential\":false,\"created_at\":\"2021-06-04 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000042 - REINSCRIPCI\\u00d3N DEL PRODUCTO AMPHIRION DEEP. ADMIRAL XTREME, PACIFIC XTREME\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000042\",\"finishedDate\":null,\"fixRateValue\":300,\"fix_rate_value\":300,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"950\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000042\",\"processing\":false,\"secondaryExternalCode\":\"2730\",\"secondary_external_code\":\"2730\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 14:20:56\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-03 00:00:00\",\"confidential\":false,\"created_at\":\"2021-09-01 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000054 - RECTIFICACI\\u00d3N DEL PRODUCTO CATETER ANGIOFRAFICOS CARDIOVASCULAR F.15371\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000054\",\"finishedDate\":null,\"fixRateValue\":300,\"fix_rate_value\":300,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"953\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000054\",\"processing\":false,\"secondaryExternalCode\":\"2918\",\"secondary_external_code\":\"2918\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 15:17:59\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-03 00:00:00\",\"confidential\":false,\"created_at\":\"2021-09-11 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000055 - RENOVACI\\u00d3N DEL PRODUCTO ENDOLUMINAL PARA AORTA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000055\",\"finishedDate\":null,\"fixRateValue\":300,\"fix_rate_value\":300,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"954\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000055\",\"processing\":false,\"secondaryExternalCode\":\"2932\",\"secondary_external_code\":\"2932\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 14:21:59\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-10-03 00:00:00\",\"confidential\":false,\"created_at\":\"2022-08-09 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000072 - Denuncia AGEMED - Comercializaci\\u00f3n no autorizada de productos Diabetes\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000072\",\"finishedDate\":null,\"fixRateValue\":3870,\"fix_rate_value\":3870,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"956\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000072\",\"processing\":false,\"secondaryExternalCode\":\"3520\",\"secondary_external_code\":\"3520\",\"status\":1,\"statusMarking\":\"approved\",\"updated_at\":\"2024-10-03 17:25:16\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-03 00:00:00\",\"confidential\":false,\"created_at\":\"2023-08-30 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000087 - TENENCIA CATETERES DE DIAGNOSTICO Y TERAPEUTICOS PARA ABLACI\\u00d3N INTECARDIACA DI-63195\\/2023 GESTI 2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000087\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"960\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000087\",\"processing\":false,\"secondaryExternalCode\":\"4298\",\"secondary_external_code\":\"4298\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 15:23:02\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-03 00:00:00\",\"confidential\":false,\"created_at\":\"2023-08-30 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000088 - TENENCIA ASTRA MRI SURESCAN AZURE MRI SURESCAN DI-86628\\/2023 GESTI\\u00d3N 2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000088\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"961\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000088\",\"processing\":false,\"secondaryExternalCode\":\"4300\",\"secondary_external_code\":\"4300\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 15:22:06\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-03 00:00:00\",\"confidential\":false,\"created_at\":\"2023-09-11 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000099 - INSCRIPCI\\u00d3N NSO CLOSUREFASTTM ENDOVENOUS RADIOFREQUENCY ABLATION (RFA) CATHETER DI-86830\\/2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000099\",\"finishedDate\":null,\"fixRateValue\":300,\"fix_rate_value\":300,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"962\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000099\",\"processing\":false,\"secondaryExternalCode\":\"4335\",\"secondary_external_code\":\"4335\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 15:00:04\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-03 00:00:00\",\"confidential\":false,\"created_at\":\"2023-09-11 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000100 - TENENCIA NSO CLOSUREFASTTM ENDOVENOUS RADIOFREQUENCY ABLATION (RFA) CATHETER DI-86830\\/2023 GES2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000100\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"963\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000100\",\"processing\":false,\"secondaryExternalCode\":\"4336\",\"secondary_external_code\":\"4336\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 15:30:58\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-03 00:00:00\",\"confidential\":false,\"created_at\":\"2023-09-13 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000101 - REINSCRIPCI\\u00d3N DE NSO RESOLUTE ONYX ZOTAROLIMUS-ELUTING CORONARY STENT SYSTEM CON DI-64773\\/2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000101\",\"finishedDate\":null,\"fixRateValue\":300,\"fix_rate_value\":300,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"964\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000101\",\"processing\":false,\"secondaryExternalCode\":\"4340\",\"secondary_external_code\":\"4340\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 15:59:20\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-11 00:00:00\",\"confidential\":false,\"created_at\":\"2023-10-04 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000109 - INSCRIPCI\\u00d3N DE NSO PERCUTANEOUS LEAD INTRODUCER DI-87057\\/2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000109\",\"finishedDate\":null,\"fixRateValue\":300,\"fix_rate_value\":300,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"967\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":0,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000109\",\"processing\":false,\"secondaryExternalCode\":\"4394\",\"secondary_external_code\":\"4394\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-11 16:22:14\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-03 00:00:00\",\"confidential\":false,\"created_at\":\"2023-10-04 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000110 - TENENCIA DE NSO PERCUTANEOUS LEAD INTRODUCER DI-87057\\/2023 GESTION 2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000110\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"968\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000110\",\"processing\":false,\"secondaryExternalCode\":\"4395\",\"secondary_external_code\":\"4395\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 15:28:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-03 00:00:00\",\"confidential\":false,\"created_at\":\"2023-10-10 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000111 - INSCRIPCI\\u00d3N NSO Onyx Frontier\\u2122 Zotarolimus-Eluting Coronary Stent System AC096-60-2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000111\",\"finishedDate\":null,\"fixRateValue\":300,\"fix_rate_value\":300,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"969\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000111\",\"processing\":false,\"secondaryExternalCode\":\"4506\",\"secondary_external_code\":\"4506\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 15:59:02\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-03 00:00:00\",\"confidential\":false,\"created_at\":\"2023-10-10 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000112 - TENENCIA NSO Onyx Frontier\\u2122 Zotarolimus-Eluting Coronary Stent System AC096-60-2023 GESTION 2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000112\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"970\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000112\",\"processing\":false,\"secondaryExternalCode\":\"4507\",\"secondary_external_code\":\"4507\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 15:59:38\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-03 00:00:00\",\"confidential\":false,\"created_at\":\"2023-10-11 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000114 - REINSCRIPCI\\u00d3N DE NSO PRODUCTO CANULA CIRCUITO EXTRA CORPOREA \\/ CARDIOPLEGIA \\/ SUCCION DI-64657\\/2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000114\",\"finishedDate\":null,\"fixRateValue\":300,\"fix_rate_value\":300,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"971\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000114\",\"processing\":false,\"secondaryExternalCode\":\"4514\",\"secondary_external_code\":\"4514\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 15:19:57\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-11 00:00:00\",\"confidential\":false,\"created_at\":\"2023-10-16 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000116 - MOD EVERA TM (XT DR, S DR, XT VR, S VR); EVERA MRI (XT DR, S DR, XT VR, S VR) SURESCAN DI-46249\\/2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000116\",\"finishedDate\":null,\"fixRateValue\":300,\"fix_rate_value\":300,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"973\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":0,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000116\",\"processing\":false,\"secondaryExternalCode\":\"4518\",\"secondary_external_code\":\"4518\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-11 16:22:43\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-03 00:00:00\",\"confidential\":false,\"created_at\":\"2023-11-14 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000135 - TENENCIA DE NSO CAPSURE SENSE MRI\\u2122 SURESCAN\\u2122 CON DI-87554\\/2023 GESTION 2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000135\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"981\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000135\",\"processing\":false,\"secondaryExternalCode\":\"4587\",\"secondary_external_code\":\"4587\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 15:26:14\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-03 00:00:00\",\"confidential\":false,\"created_at\":\"2023-11-14 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000137 - TENENCIA DE NSO CAPSURE\\u2122 EPI CON DI-87581\\/2023 GESTION 2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000137\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"983\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000137\",\"processing\":false,\"secondaryExternalCode\":\"4589\",\"secondary_external_code\":\"4589\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 15:27:50\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-03 00:00:00\",\"confidential\":false,\"created_at\":\"2020-06-27 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000164 - TENENCIA PRODUCTO SHILEY, TRACHEOST OMY TUBE DI-51140\\/2019\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000164\",\"finishedDate\":null,\"fixRateValue\":400,\"fix_rate_value\":400,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1486\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000164\",\"processing\":false,\"secondaryExternalCode\":\"2115\",\"secondary_external_code\":\"2115\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 16:33:02\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-07 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-21 21:29:22\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000322 - REINSCRIPCI\\u00d3N SISTEMA VENTILADOR 840 PURITAN BENNETT (SERIE 800) CERTIFICADO N\\u00b01934\\/2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000322\",\"finishedDate\":null,\"fixRateValue\":300,\"fix_rate_value\":300,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2357\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"100% al final\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000341-RE-000322\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-07 03:21:36\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-07 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-21 21:34:01\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000323 - INSCRIPCI\\u00d3N FRACHEOSTOMY TUBE WITH TAPERGUARD CUFF, INNER CANNULA DI-87961\\/2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000323\",\"finishedDate\":null,\"fixRateValue\":300,\"fix_rate_value\":300,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2358\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"100% al final\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000341-RE-000323\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-07 03:22:33\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:48\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000481-RE-000378 - TENENCIA TASKI PRO STRIP NSOH60361-16BO \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000481-RE-000378\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2432\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000481-RE-000378\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"202\",\"name\":\"Diversey de Argentina S.A.\",\"primary_external_code\":\"481\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:48\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000481-RE-000379 - TENENCIA VIEW ULTRA NSOH60362-16BO \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000481-RE-000379\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2433\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000481-RE-000379\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"202\",\"name\":\"Diversey de Argentina S.A.\",\"primary_external_code\":\"481\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:48\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000481-RE-000380 - TENENCIA DRAX ULTRA NSOH6033-16BO \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000481-RE-000380\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2434\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000481-RE-000380\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"202\",\"name\":\"Diversey de Argentina S.A.\",\"primary_external_code\":\"481\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:48\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000481-RE-000381 - TENENCIA TASKI R 5 CONCENTRADO NSOH61148-16BOE \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000481-RE-000381\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2435\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000481-RE-000381\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"202\",\"name\":\"Diversey de Argentina S.A.\",\"primary_external_code\":\"481\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:48\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000481-RE-000382 - TENENCIA REMOVEDOR DE CERAS PARA PISOS LAVABLES NSOH61533-17BO \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000481-RE-000382\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2436\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000481-RE-000382\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"202\",\"name\":\"Diversey de Argentina S.A.\",\"primary_external_code\":\"481\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:48\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000481-RE-000383 - TENENCIA BLANQUEADOR CLORADO NSOH61530-17BO \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000481-RE-000383\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2437\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000481-RE-000383\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"202\",\"name\":\"Diversey de Argentina S.A.\",\"primary_external_code\":\"481\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:48\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000481-RE-000384 - TENENCIA AROMATIZANTE PARA PRENDAS NSOH61532-17BO \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000481-RE-000384\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2438\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000481-RE-000384\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"202\",\"name\":\"Diversey de Argentina S.A.\",\"primary_external_code\":\"481\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:48\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000481-RE-000385 - TENENCIA LIMPIADOR LIQUIDO DESODORANTE DESINFECTANTE NSOH61531-17BO \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000481-RE-000385\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2439\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000481-RE-000385\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"202\",\"name\":\"Diversey de Argentina S.A.\",\"primary_external_code\":\"481\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:48\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000481-RE-000386 - TENENCIA LIMPIADOR DESIMFECTANTE CONCENTRADO NSOH61529-17BO \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000481-RE-000386\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2440\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000481-RE-000386\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"202\",\"name\":\"Diversey de Argentina S.A.\",\"primary_external_code\":\"481\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:48\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000481-RE-000387 - TENENCIA DESINFECTANTE CLORADO NSOH61535-17BO \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000481-RE-000387\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2441\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000481-RE-000387\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"202\",\"name\":\"Diversey de Argentina S.A.\",\"primary_external_code\":\"481\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:48\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000481-RE-000388 - TENENCIA DETERGENTE PARA LAVADO DE VAJILLA NSOH61537-17BO \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000481-RE-000388\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2442\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000481-RE-000388\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"202\",\"name\":\"Diversey de Argentina S.A.\",\"primary_external_code\":\"481\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:48\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000481-RE-000389 - TENENCIA SANITIZANTE DE SUPERFICIES NSOH61538-17BO \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000481-RE-000389\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2443\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000481-RE-000389\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"202\",\"name\":\"Diversey de Argentina S.A.\",\"primary_external_code\":\"481\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:48\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000481-RE-000390 - TENENCIA DESINCRUSTANTE DE OPTIMA EFICACIA PARA SUPERFICIES CON SUCIEDAD DE GRASA PESADA Y\\/O CARBONIZADA NSOH61534-17BO \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000481-RE-000390\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2444\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000481-RE-000390\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"202\",\"name\":\"Diversey de Argentina S.A.\",\"primary_external_code\":\"481\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:48\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000481-RE-000391 - TENENCIA DRASTICK NSOH62907-17BO \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000481-RE-000391\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2445\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000481-RE-000391\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"202\",\"name\":\"Diversey de Argentina S.A.\",\"primary_external_code\":\"481\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:48\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000481-RE-000392 - TENENCIA DETERGENTE CONCENTRADO PARA EL PRE-LAVADO Y LAVADO DE ROPA NSOH76525-21BO \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000481-RE-000392\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2446\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000481-RE-000392\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"202\",\"name\":\"Diversey de Argentina S.A.\",\"primary_external_code\":\"481\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:48\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000481-RE-000393 - TENENCIA CLAX NEUTRAPUR NSOH62767-17BO \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000481-RE-000393\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2447\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000481-RE-000393\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"202\",\"name\":\"Diversey de Argentina S.A.\",\"primary_external_code\":\"481\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:48\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000481-RE-000394 - TENENCIA CLAX MILD NSOH62764-17BO \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000481-RE-000394\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2448\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000481-RE-000394\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"202\",\"name\":\"Diversey de Argentina S.A.\",\"primary_external_code\":\"481\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:48\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000481-RE-000395 - TENENCIA DETERGENTE LIQUIDO PARA EL LAVADO DE ROPA NSOH61536-17BO \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000481-RE-000395\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2449\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000481-RE-000395\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"202\",\"name\":\"Diversey de Argentina S.A.\",\"primary_external_code\":\"481\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:48\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000481-RE-000396 - TENENCIA CLAX CID NSOH62763-17BO \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000481-RE-000396\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2450\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000481-RE-000396\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"202\",\"name\":\"Diversey de Argentina S.A.\",\"primary_external_code\":\"481\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:49\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000481-RE-000397 - TENENCIA CLAX BETA NSOH62766-17BO \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000481-RE-000397\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2451\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000481-RE-000397\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"202\",\"name\":\"Diversey de Argentina S.A.\",\"primary_external_code\":\"481\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:49\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000481-RE-000398 - TENENCIA CLAX ALCA NSOH63050-17BO \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000481-RE-000398\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2452\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000481-RE-000398\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"202\",\"name\":\"Diversey de Argentina S.A.\",\"primary_external_code\":\"481\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:49\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000481-RE-000399 - TENENCIA DETERGENTE LIQUIDO PARA EL LAVADO DE ROPA, MARCA CLAX ALFA NSOH64239-18BO \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000481-RE-000399\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2453\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000481-RE-000399\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"202\",\"name\":\"Diversey de Argentina S.A.\",\"primary_external_code\":\"481\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:49\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000481-RE-000400 - TENENCIA DRAX HORNOS T PARRILLAS NSOH62751-17BO \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000481-RE-000400\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2454\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000481-RE-000400\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"202\",\"name\":\"Diversey de Argentina S.A.\",\"primary_external_code\":\"481\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:49\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000481-RE-000401 - TENENCIA STRIDE NSOH60357-16BO \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000481-RE-000401\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2455\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000481-RE-000401\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"202\",\"name\":\"Diversey de Argentina S.A.\",\"primary_external_code\":\"481\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-29 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-29 15:13:15\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000493 - INSCRIPCI\\u00d3N MONOSOF TM MONOFILAMENT NYLON DI-88442\\/2024\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000493\",\"finishedDate\":null,\"fixRateValue\":300,\"fix_rate_value\":300,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2550\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"100% al final\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000341-RE-000493\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-28 21:27:34\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-11 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-01 03:12:27\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000503 - CATHLAB \\/ CAS TENENCIA ARTIC FRONT ADVANCE PRO TM DI-88036\\/2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000503\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2571\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000503\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-11 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-01 03:14:09\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000504 - CATHLAB \\/ CAS TENENCIA ARTIC FRONT ADVANCE PRO TM DI-88062\\/2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000504\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2572\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000504\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-11 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-01 03:15:45\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000505 - CATHLAB \\/ CORO TENENCIA CLOSED SUCTION SYSTEM ENDOTRACHEAL LENGTH DI-69067\\/2019\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000505\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2573\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000505\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-01 03:17:07\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000506 - CATHLAB \\/ CORO TENENCIA CATETERES: ENDOVASCULAR, HEMODIALISIS DI-51863\\/2019\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000506\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2574\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000506\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-01 03:18:50\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000507 - CATHLAB \\/ CORO TENENCIA BALLOON CATHETER (VER ANEXOS 1-6) DI-57930\\/2021\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000507\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2575\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000507\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-01 03:22:21\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000509 - CATHLAB \\/ CORO TENENCIA RAPID EXCHANGE BALLON DILATATION CATHETER (VER ANEXO) DI-63313\\/2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000509\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2577\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000509\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-01 03:23:44\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000510 - CATHLAB \\/ CORO TENENCIA AMPHIRION DEEP PTA CATHETER, ADMIRAL XTREME PTA CATHETER DI-57982\\/2021\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000510\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2578\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000510\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-01 03:25:46\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000511 - CATHLAB \\/ CORO TENENCIA CATETER INTRAVASCULAR PARA GUIADO DI-53410\\/2019\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000511\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2579\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000511\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-01 03:27:23\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000512 - CATHLAB \\/ CORO TENENCIA CATETERES, INTRAVASCULARES PARA GUIADO (VER FORMULA) DI-53423\\/2019 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000512\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2580\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000512\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-01 03:29:15\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000513 - CATHLAB \\/ CORO TENENCIA CATETER DE ASPIRACI\\u00d3N DI-53864\\/2020\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000513\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2581\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000513\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-01 03:30:51\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000514 - CATHLAB \\/ CORO TENENCIA DISPOSITIVO DE PROTECCI\\u00d3N CEREBRAL PROXIMAL MO MA ULTRA DI-53409\\/2019\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000514\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2582\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000514\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-01 03:32:39\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000515 - CATHLAB \\/ CORO TENENCIA ALAMBRE GU\\u00cdA ANGIOGRAFICO (VER FORMULA) DI-53425\\/2019 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000515\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2583\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000515\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-01 03:33:47\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000516 - CATHLAB \\/ CORO TENENCIA CATETERES BAL\\u00d3N ANGIOFRAFICOS (VER FORMULA) DI-53438\\/2019\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000516\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2584\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000516\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-01 03:35:08\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000517 - CATHLAB \\/ CORO TENENCIA DI-53424\\/2019 CATETER CON BALON PARA ANGIOPLASTIA TRANSLUMINAL PERCUTANEA (ATP) DE ARTERIAS PERIFIERICAS\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000517\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2585\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000517\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-01 16:04:39\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000519 - CATHLAB \\/ CORO TENENCIA STENTS CORONARIOS\\/ STENTS PERIFIERICOS DI-53856\\/2019 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000519\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2587\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000519\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-01 16:06:27\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000520 - CATHLAB \\/ CRHF TENENCIA VALVULAS PARA CIRUGIA DEL CORAZON DI-52442\\/2019\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000520\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2588\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000520\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-01 16:07:33\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000521 - CATHLAB \\/ CRHF TENENCIA MARCAPASOS IMPLANTABLE MEDTRONIC DI-57077\\/2020\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000521\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2589\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000521\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-01 16:09:37\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000522 - CATHLAB \\/ CRHF TENENCIA DI-52740\\/2019 MEDTRONIC ENDURANT IIVALIANT CAPTIVIA \\/ VALIANT NAVION\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000522\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2590\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000522\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-01 16:10:31\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000523 - CATHLAB \\/ CORO TENENCIA DI-51017\\/2024 SELECTSITE DEFLECTABLE CATHETER SYSTEM; ATTAIN DEFLECTABLE CATHETER DELIVERY SYSTEM \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000523\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2591\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000523\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-01 16:14:25\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000524 - CATHLAB \\/ CORO TENENCIA DI-63313\\/2017 CATETER BALON DE DILATACI\\u00d3N DE INTERCAMBIO RAPIDO PARA ANGIOPLASTIA TRANSLUMINAL\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000524\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2592\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000524\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-01 16:15:39\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000525 - CATHLAB \\/ SHA TENENCIA PROTESIS ENDOLUMINAL APARA AORTA DI-59982\\/2021\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000525\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2593\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000525\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-01 16:20:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000526 - OR\\u0026CU \\/ SI TENENCIA DI-80205\\/2022 V-LOC TM PBT (DISPOSITIVO NO ABSORBIBLE PARA CIERRE DE HERIDAS DE PBT)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000526\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2594\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000526\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-01 16:21:52\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000527 - TA \\/ DIA TENENCIA MINIMED INFUSI\\u00d3N SETS DI-77064\\/2021 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000527\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2595\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000527\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-01 16:22:59\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000528 - TA \\/ DIA TENENCIA I-PORT ADVANCE DI-77089\\/2021 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000528\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2596\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000528\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-01 16:23:50\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000529 - CATHLAB \\/ CORO TENENCIA PREVAIL tm PACLITAXEL-COATED PTCA BALLOON CATHETER DI-76990\\/2021\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000529\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2597\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000529\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-01 16:26:25\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000530 - CATHLAB \\/ SHA TENENCIA DI-64657\\/2023 CANULA CIRCUITO EXTRA CORPOREA\\/CARDIOPLEGIA\\/ SUCCION Y ACCESORIOS QUIRURGICOS\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000530\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2598\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000530\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-01 16:27:21\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000531 - OR\\u0026CU \\/ SI TENENCIA DEXTILE ANATOMICAL MESH DI-76444\\/2021 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000531\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2600\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000531\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-01 16:28:21\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000532 - OR\\u0026CU \\/ SI TENENCIA DI-76250\\/2021 POLYGLACTIN 910- SUTURA ABSORBIBLE SINTETICA DE POLIGLACTINA 910, CON AGUA TRENZADA Y REVESTIDA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000532\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2601\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000532\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-01 16:29:19\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000533 - OR\\u0026CU \\/ SI TENENCIA DI-76251\\/2021 MAXSORRB-SUTURA ABSORBIBLE SINTETICA MONOFILAMENTO DE POLIDIOXNONA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000533\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2602\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000533\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-01 16:30:53\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000534 - OR\\u0026CU \\/ SI TENENCIA BONE WAX - CERA PARA HUESO DI-76248\\/2021 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000534\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2604\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000534\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-01 16:31:39\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000535 - CATHLAB \\/ CORO TENENCIA LAUNCHER GUIDE CATHETER DI-76585\\/2021\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000535\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2605\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000535\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-01 16:32:23\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000536 - CATHLAB \\/ CORO TENENCIA RESOLUTE ONYX ZOTAROLIMUS-ELUTING CORONARY SYSTEM DI-64773\\/2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000536\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2607\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000536\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-01 16:33:14\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000537 - CATHLAB \\/ CORO TENENCIA DI-53865\\/2019 LAUNCHER CATHETER (CAT\\u00c9TER GUIA INTRAVASCULAR PARA EL SISTEMA PERIFERICO O CORONARIO)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000537\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2608\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000537\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-01 16:34:10\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000538 - OR\\u0026CU \\/ SI TENENCIA DI-68785\\/2019 FARMACEUTICO- E-4051-CT VALLEYLAB BAYONET FORCEPS SCOVILLE-GREENWOOD 19.7 cm-15mm \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000538\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2609\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000538\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-01 16:35:01\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000539 - OR\\u0026CU \\/ SI TENENCIA DI-511138\\/2029 LIGASURE HARDWARE AND INSTRUMENTS \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000539\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2610\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000539\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-01 16:35:49\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000540 - OR\\u0026CU \\/ SI TENENCIA DI-51862\\/2019 DIA AUTO SUTURE UNIVERSAL STAPLER 030412 ENDO GIA AUTO SUTURE \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000540\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2611\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000540\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-01 16:36:45\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000541 - OR\\u0026CU \\/ SI TENENCIA DI-70963\\/2019 E1020 VALLELABtm HEX-LOCKING BLADE ELECTRODE REUSABLE 2 75\\u0022 (7.0 CM) \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000541\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2613\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000541\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-01 16:37:36\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000542 - OR\\u0026CU \\/ NS TENENCIA 42866 STRATA@ II VALVE, REGULAR DI-72740\\/2020\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000542\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2614\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000542\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-01 16:38:40\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000543 - OR\\u0026CU \\/ SI(HW,VS\\u0026ES) TENENCIA CERTIFICADO DE COMERCIALIZACI\\u00d3N 1835\\/2023 PLATAFORMA DE ENERGIA (GENERADOR ELECTROQUIRURGICO DE ALTA FRECUAENCIA) VALLEYLAB tm FT SERIES ENERGY PLATFORM MODELO: VLFT10GEN \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000543\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2615\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000543\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-01 16:39:37\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000544 - OR\\u0026CU \\/ SI TENENCIA CERTIFICADO DE COMERCIALIZACI\\u00d3N N\\u00b0 1140\\/2022 MEDICAPTURE MEDICAL IMAGE STORAGE DEVICE MODELO -MVR LITE- MEDICAL IMAGE RECORDING DEVICES - MVR PRO - MEDIACAL RECORDING DEVICES ACCESORIOS GESTI\\u00d3N 2024\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000544\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2616\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000544\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-01 16:40:39\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000545 - CATHLAB \\/ PVH TENENCIA CERTIFICADO DE COMERCIALIZACI\\u00d3N N\\u00b0 1257\\/2022 CLOSURERFG TM RADIOFREQUENCY GENERATOR MODELO: RFG3 ACCESORIOS\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000545\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2617\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000545\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-01 16:41:36\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000546 - OR\\u0026CU \\/ RI TENENCIA CERTIFICADO DE COMERCIALIZACI\\u00d3N N\\u00b0 1934\\/2023 SISTEMA VENTILADOR 840 PURITAN BENNET (SERIE 800)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000546\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2618\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000546\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-01 16:42:40\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000547 - OR\\u0026CU \\/ CSF TENENCIA CERTIFICADO DE COMERCILALIZACI\\u00d3N N\\u00b0 628\\/2020 NEWPORT RESPIRADOR e360 (e360e, e360T) ACCESORIOS\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000547\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2619\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000547\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-04 22:16:30\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000549 - LINEA OR\\u0026CU \\/ RI -TENENECIA Dl-87961\\/2023. INSCRIPCI\\u00d3N TRACHEOSTOMY TUBE WITH TAPERGUARD CUFF, INNER, CANNULA.\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000549\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2624\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000549\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-28 15:58:24\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-05 15:51:41\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000560 - LINEA CATHLAB \\/ PVH - INSCRIPCI\\u00d3N DI-88762\\/2024 MO.MA ULTRA TM CEREBRAL PROTECTION DEVICE\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000560\",\"finishedDate\":null,\"fixRateValue\":300,\"fix_rate_value\":300,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2641\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000341-RE-000560\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-28 21:16:58\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-11 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-11 05:05:14\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000561 - CATHLAB \\/ CRM TENENCIA 6996SQ SUBCUTANEOUS UNIPOLAR LEAD DI-88064\\/2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000561\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2647\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000561\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-28 15:58:24\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-11 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-11 05:14:23\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000562 - OR\\u0026CU \\/ SI TENENCIA BIOSYtm MONOFILAMENT ABSORBABLE SUTURE DI-87928\\/2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000562\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2648\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000562\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-28 15:58:24\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-11 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-11 05:17:27\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000563 - CATHLAB \\/ CRHF TENENCIA DI-46248\\/2023 ATTAIN ABILITY PLUS\\/CAPSURE FIX NOVUS\\/ CAPSURE VDD-2\\/SELECTSECURE\\/ SPRINT QUATTRO SECURE\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000563\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2649\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000563\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-28 15:58:24\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-11 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-11 05:19:11\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000564 - CATHLAB \\/CRM TENENCIA CAPSURE FIX NOVUS MRItm SURESCANtm (VER FORMULA) DI-87904\\/2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000564\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2650\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000564\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-28 15:58:24\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-11 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-11 05:20:49\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000565 - OR\\u0026CU \\/ SI TENENCIA DI-87902\\/2023 SURGIDACtm - TRIPLE STITCH RELOAD (VER FORMULA)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000565\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2651\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000565\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-28 15:58:24\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-11 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-11 05:22:52\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000566 - OR\\u0026CU \\/ SI TENENCIA DI-80971\\/2022 MED-CHROMIC GUT ABSORBABLE SUTURE, MILD CHROMIC GUT ABSORBABLE\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000566\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2652\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000566\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-28 15:58:24\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-09-23 00:00:00\",\"confidential\":false,\"created_at\":\"2024-09-23 15:07:57\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000481-RE-000713 - Servicios Legales integrales por hora\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000481-RE-000713\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2892\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000481-RE-000713\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-09-23 15:07:58\",\"withIVA\":true,\"responsible\":null,\"customer\":{\"id\":\"202\",\"name\":\"Diversey de Argentina S.A.\",\"primary_external_code\":\"481\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"9\",\"externalCode\":\"AR20\",\"name\":\"Contrataci\\u00f3n P\\u00fablica\"}}]}}}\n","time":"2025-07-30T10:50:34-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: POST https://apinewtm.com/graphql/\nHeaders: map[Accept:[application/json] Authorization:[Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJpYXQiOjE3NTM4ODY1MjIsImV4cCI6MTc1Mzk2NjUyMiwiaWQiOjEwNSwidXNlcm5hbWUiOiJpbnRlZ3JhY2lvbmVzQGVtYmEuYm8iLCJhcGlrZXkiOiI5Yzg0ZjYzZTRlMzk2ZGZmOWU5ZjU3NDI5OGRmZWUzOSIsImFwaWtleUNyZWF0ZWRBdCI6eyJkYXRlIjoiMjAyNS0wNy0xNyAxMDo0MToyNS4wMDAwMDAiLCJ0aW1lem9uZV90eXBlIjozLCJ0aW1lem9uZSI6IkFtZXJpY2EvQm9nb3RhIn0sImZ1bGxOYW1lIjoiSW50ZWdyYWNpw7NuIEVNQkEiLCJlbWFpbCI6ImludGVncmFjaW9uZXNAZW1iYS5ibyIsImxvY2FsZSI6ImVzIiwiZGF5c0FsbG93ZWQiOjMwLCJpc0Nvb3JkaW5hdG9yIjpmYWxzZSwidHlwZVRhc2tWaWV3IjoibGlzdHMiLCJkYXlzYWxsb3ciOjMwLCJyb2xlcyI6e30sInNob3J0X25hbWUiOiJJTi5FTUJBIiwicGVybWlzc2lvbnMiOlsic3luY19leHRlcm5hbF9idXNpbmVzcyIsInN5bmNfZXh0ZXJuYWxfY3VzdG9tZXIiLCJzeW5jX2V4dGVybmFsX21pbGVzdG9uZSIsImFic2VuY2VfYXBwcm92ZSIsImFic2VuY2VfY3JlYXRlX2FsbCIsImFic2VuY2VfY3JlYXRlX293biIsImFic2VuY2VfbWVudSIsImFjY291bnRpbmdfYnVzaW5lc3NfbGlzdCIsImFjY291bnRpbmdfY3VzdG9tZXJfbGlzdCIsImJpbGxpbmdfcGVyaW9kX2RlbGV0ZV9hbGwiLCJiaWxsaW5nX3BlcmlvZF9lZGl0X2FsbCIsImJpbGxpbmdfcGVyaW9kX2xpc3QiLCJiaWxsaW5nX3BlcmlvZF9yZWFjdGl2YXRlIiwiYm9hcmRfcmF0ZV91c2VyX2NyZWF0ZSIsImJvYXJkX3JhdGVfdXNlcl9lZGl0IiwiYnVzaW5lc3NfY3JlYXRlIiwiYnVzaW5lc3NfZGVzY3JpcHRpb25fc2F2ZSIsImJ1c2luZXNzX2VkaXQiLCJidXNpbmVzc19saXN0X2FsbCIsImJ1c2luZXNzX21lbnUiLCJidXNpbmVzc19yZXNwb25zaWJsZV9saXN0X2FsbCIsImJ1c2luZXNzX3NlZV9iaWxsaW5nX2luZm8iLCJidXNpbmVzc2VzX2FsbG93ZWRfdXNlcl9jcmVhdGUiLCJidXNpbmVzc2VzX2FsbG93ZWRfdXNlcl9kZWxldGUiLCJjb21wYW55X2Rpc2FibGUiLCJjb21wYW55X2VkaXQiLCJjb21wYW55X2xpc3QiLCJjb25jZXB0X2NyZWF0ZSIsImNvbmNlcHRfZWRpdCIsImNvbmNlcHRfbWVudSIsImNvbnRhY3RfY3JlYXRlIiwiY29udGFjdF9jcmVhdGVfZmFzdCIsImNvbnRhY3RfZWRpdCIsImNvbnRhY3RfbGlzdCIsImNvbnRhY3RfbWVudSIsImN1c3RvbWVyX2NyZWF0ZSIsImN1c3RvbWVyX2NyZWF0ZV9mYXN0IiwiY3VzdG9tZXJfZWRpdCIsImN1c3RvbWVyX2xpc3QiLCJjdXN0b21lcl9saXN0X2FsbCIsImN1c3RvbWVyX21lbnUiLCJleHBlbnNlX2NyZWF0ZV9hbGwiLCJleHBlbnNlX2RlbGV0ZV9hbGwiLCJleHBlbnNlX2R1cGxpY2F0ZSIsImV4cGVuc2VfZWRpdF9hbGwiLCJleHBlbnNlX2xpc3RfYWxsIiwiZXhwZW5zZV9tZW51IiwiZXhwZW5zZV9yZWplY3RfYWxsIiwiZmFiX3Nob3ciLCJmaWxlX21lbnUiLCJnZW9yZWZlcmVuY2VfY3JlYXRlIiwiZ2VvcmVmZXJlbmNlX2VkaXQiLCJnZW9yZWZlcmVuY2VfbWVudSIsImdvX3RvX2xlZ2FjeSIsImluZGljYXRvcnNfbWVudSIsImludm9pY2VfY3JlYXRlIiwiaW52b2ljZV9kZXRhaWxfbGlzdF9hbGwiLCJpbnZvaWNlX2ZpeF90aW1lc19jdXN0b21fdmFsdWUiLCJpbnZvaWNlX2xpc3RfYWxsIiwiaW52b2ljZWFkdmFuY2VfY3JlYXRlIiwiaW52b2ljZWFkdmFuY2VfbGlzdCIsImludm9pY2VhZHZhbmNlX3VwZGF0ZSIsImxvZ19saXN0X2FsbCIsImxvZ19saXN0X293biIsIm1pbGVzdG9uZV9jcmVhdGUiLCJtaWxlc3RvbmVfZGVsZXRlIiwibWlsZXN0b25lX2VkaXQiLCJtb250aGx5X2ZpeF9yYXRlX2dyb3VwX2NyZWF0ZSIsIm1vbnRobHlfZml4X3JhdGVfZ3JvdXBfZWRpdCIsIm1vbnRobHlfdXNlcl9jb3N0X2NyZWF0ZSIsIm1vbnRobHlfdXNlcl9jb3N0X2VkaXQiLCJwYXltZW50X2NyZWF0ZSIsInBheW1lbnRfZGVsZXRlIiwicGF5bWVudF9lZGl0IiwicGF5bWVudF9tZW51IiwicHJvY2VkdXJlX21lbnUiLCJwcm9jZWR1cmVfcmF0ZV9jcmVhdGUiLCJwcm9jZWR1cmVfcmF0ZV9kZXRhaWxfY3JlYXRlIiwicHJvY2VkdXJlX3JhdGVfZGV0YWlsX2VkaXQiLCJwcm9jZWR1cmVfcmF0ZV9kZXRhaWxfbGlzdCIsInByb2NlZHVyZV9yYXRlX2VkaXQiLCJwcm9jZWR1cmVfcmF0ZV9saXN0IiwicHJvY2VkdXJlX3JhdGVfbWVudSIsInByb2NlZHVyZV90cmFuc2FjdGlvbl9saXN0IiwicHJvamVjdF9hcmNoaXZlX2Nhc2NhZGVfYWxsIiwicHJvamVjdF9kZWxldGVfY2FzY2FkZV9hbGwiLCJwcm9qZWN0X3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInJhdGVfYnVzaW5lc3NfY2F0ZWdvcnlfY3JlYXRlIiwicmF0ZV9idXNpbmVzc19jYXRlZ29yeV9lZGl0IiwicmF0ZV9idXNpbmVzc191c2VyX2NyZWF0ZSIsInJhdGVfYnVzaW5lc3NfdXNlcl9lZGl0IiwicmF0ZV9leGNoYW5nZV9jcmVhdGUiLCJyYXRlX2V4Y2hhbmdlX2VkaXQiLCJyYXRlX2V4Y2hhbmdlX2xpc3QiLCJyYXRlX3VzZXJfY3JlYXRlIiwicmF0ZV91c2VyX2VkaXQiLCJyb2xlX2NyZWF0ZSIsInJvbGVfZWRpdF9hbGwiLCJyb2xlX2xpc3RfYWxsIiwic2VjdGlvbl9hcmNoaXZlX2Nhc2NhZGVfYWxsIiwic2VjdGlvbl9kZWxldGVfY2FzY2FkZV9hbGwiLCJzZWN0aW9uX3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInNlZV9tZW51X3JhdGVfZXhjaGFuZ2UiLCJzZXJpZV9jcmVhdGUiLCJzZXJpZV9lZGl0Iiwic2VyaWVfbWVudSIsInNldHRpbmdzX3ZpZXciLCJzdXBwbGllcl9jcmVhdGUiLCJ0YXNrX2FkZF90aW1lX2FsbCIsInRhc2tfYWRkX3RpbWVfb3duIiwidGFza19hc3NpZ25lZF91c2VyX2VtYWlsIiwidGFza19jbG9zZWRfZW1haWwiLCJ0YXNrX2NyZWF0ZV9hbGwiLCJ0YXNrX2NyZWF0ZV9jb21tZW50X2VtYWlsIiwidGFza19jcmVhdGVfc2VsZiIsInRhc2tfY3JlYXRlX3RlYW0iLCJ0YXNrX2RlbGV0ZV9hbGwiLCJ0YXNrX2RlbGV0ZV9vd24iLCJ0YXNrX2RlbGV0ZV90ZWFtIiwidGFza19lZGl0X2FsbCIsInRhc2tfZWRpdF9kdWVfZGF0ZSIsInRhc2tfZWRpdF9vd24iLCJ0YXNrX2VkaXRfdGVhbSIsInRhc2tfbGlzdF9hbGwiLCJ0YXNrX2xpc3Rfb3duIiwidGFza19saXN0X3RlYW0iLCJ0YXNrX21hc3NpdmVpbXBvcnQiLCJ0YXNrX21lbnUiLCJ0YXNrX21pZ3JhdGlvbiIsInRhc2tfc2V0X2FkZGl0aW9uYWxfYXNzaWduZWVzIiwidGFza19zZXRfZHVlX2RhdGUiLCJ0YXNrX3NldF9lc3RpbWF0ZWRfdGltZSIsInRhc2tfc2V0X3ByaW9yaXR5IiwidGFza19zZXRfcHJvZ3Jlc3MiLCJ0YXhfZWRpdF9hbGwiLCJ0YXhfbGlzdF9hbGwiLCJ0ZWFtX2FyY2hpdmVfY2FzY2FkZV9hbGwiLCJ0ZWFtX2NyZWF0ZV9hbGwiLCJ0ZWFtX2RlbGV0ZV9hbGwiLCJ0ZWFtX2VkaXRfYWxsIiwidGVhbV9saXN0X2FsbCIsInRlYW1fbGlzdF9vd24iLCJ0ZWFtX3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInRpbWVfYWNjZXB0X2FsbCIsInRpbWVfYWNjZXB0X293biIsInRpbWVfYXBwcm92ZV9hbGwiLCJ0aW1lX2FwcHJvdmVfb3duIiwidGltZV9jcmVhdGVfYWxsIiwidGltZV9jcmVhdGVfb3duIiwidGltZV9kZWxldGVfYWxsIiwidGltZV9kZWxldGVfb3duIiwidGltZV9kZW55X2FsbCIsInRpbWVfZGVueV9vd24iLCJ0aW1lX2Rvd25sb2FkZmlsZV9hbGwiLCJ0aW1lX2Rvd25sb2FkZmlsZV9vd24iLCJ0aW1lX2VkaXRfYWxsIiwidGltZV9lZGl0X2Nsb3NlX3BlcmlvZF9hbGwiLCJ0aW1lX2VkaXRfY2xvc2VfcGVyaW9kX293biIsInRpbWVfZWRpdF9vd24iLCJ0aW1lX2xpc3RfYWxsIiwidGltZV9saXN0X293biIsInRpbWVfbWVudSIsInRpbWVfbWludXRlc196ZXJvIiwidGltZV9yZWplY3RfYWxsIiwidGltZV9yZXN0cmljdGVkX3BlcmlvZF9jcmVhdGUiLCJ0aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX2VkaXQiLCJ0aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX21lbnUiLCJ0aW1lX3NoYXJlX2FsbCIsInRpbWVfc2hhcmVfb3duIiwidGltZV9zaG93X2NhbGVuZGFyX3ZpZXciLCJ0aW1lX3VwbG9hZGZpbGVfYWxsIiwidGltZV91cGxvYWRmaWxlX293biIsInRyYW5zYWN0aW9uX2FkYXB0ZXJfbGlzdCIsInRyYW5zYWN0aW9uX2xpc3QiLCJ1c2VyX2Fic2VuY2VzX3Nob3ciLCJ1c2VyX2Nvc3RfY3JlYXRlIiwidXNlcl9jb3N0X2VkaXQiLCJ1c2VyX2Nvc3RfbGlzdCIsInVzZXJfY29zdF9tZW51IiwidXNlcl9jb3N0X3JhdGVfY3JlYXRlIiwidXNlcl9jb3N0X3JhdGVfZWRpdCIsInVzZXJfY29zdF9yYXRlX2xpc3QiLCJ1c2VyX2NyZWF0ZSIsInVzZXJfZGlzYWJsZSIsInVzZXJfZWRpdCIsInVzZXJfZWRpdF9kYXlzX2FsbG93X29ubHkiLCJ1c2VyX2dyb3VwX3JvbGVfY3JlYXRlX2FsbCIsInVzZXJfZ3JvdXBfcm9sZV9kZWxldGVfYWxsIiwidXNlcl9ncm91cF9yb2xlX2VkaXRfYWxsIiwidXNlcl9ncm91cF9yb2xlc19saXN0X2FsbCIsInVzZXJfbGlzdCIsInVzZXJfbGlzdF9hbGwiLCJ1c2VyX21hc3NfYWN0aXZhdGlvbiIsInVzZXJfcHJvZHVjdGl2aXR5X2NyZWF0ZSIsInVzZXJfcHJvZHVjdGl2aXR5X2Rpc2FibGUiLCJ1c2VyX3Byb2R1Y3Rpdml0eV9lZGl0IiwidXNlcl9wcm9kdWN0aXZpdHlfZW5hYmxlIiwidXNlcl9wcm9kdWN0aXZpdHlfbWVudSIsInVzZXJfdGltZV9yZXN0cmljdGVkX3BlcmlvZF9jcmVhdGUiLCJ1c2VyX3RpbWVfcmVzdHJpY3RlZF9wZXJpb2RfZGVsZXRlIiwidXNlcl90aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX2VkaXQiLCJ1c2VyZ3JvdXBfY3JlYXRlX2FsbCIsInVzZXJncm91cF9kZWxldGVfYWxsIiwidXNlcmdyb3VwX2VkaXRfYWxsIiwidXNlcmdyb3VwX2xpc3RfYWxsIiwidXNlcmdyb3VwX21lbnUiLCJ1c2Vyc191c2VyX2dyb3VwX2NyZWF0ZV9hbGwiLCJ1c2Vyc191c2VyX2dyb3VwX2RlbGV0ZV9hbGwiLCJ1c2Vyc191c2VyX2dyb3VwX2VkaXRfYWxsIiwidXNlcnNfdXNlcl9ncm91cHNfbGlzdF9hbGwiXSwiaG9tZXBhZ2UiOm51bGx9.kShN7NXGoaz1oFro-yYNyIpIEcnNpo1GiB8SFGKFUJtDQoqyp1I1w-CMA8Kta3vWXnUZwx-y2z1yVSJaMpZbqQgKFlakpcf6351bZSL8IAUPExSfLz0HYYCWFx-Usx94BBTqosKsRhnT8PkPN3dGxs8-XTIEDi9gN-Pk9OSHmM5mPkTsaaxTY40M-F7Y0Up2y6s_lwFaX13CmstiYZSXzyKL9SUBBx-E6-8qQAfuKPIoZ_50jSGPW98-IkAcWwqO6yGf-M07dSfFZ2vLfwc3ulHm2p8jVSmRxJ_O43BEWQD5cvqGbVIvSMXkS4y98DL4Vencjjg27iu3CUJsDNBBTg] Content-Type:[application/json] Origin:[https://azure-function.timemanagerweb.com] Tenant-Name:[pruebas-dos] User-Agent:[Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36]]\nBody: map[query:query ($limit: Int, $orderBy: String, $orderDesc: Boolean, $page: Int) { BusinessMeta(limit: $limit, orderBy: $orderBy, orderDesc: $orderDesc, page: $page) { meta { hasNextPage hasPreviousPage limit next page pages previous total } rows { apply_procedures billable business_customer_code caseNumber closed_date confidential created_at discountAmount discountPercent displayName enableBusinessAllowedUsers expedient finishedDate fixRateValue fix_rate_value hourLimit hour_limit id internal_code isBillable limitAlert notes partialCharges partial_charges primary_external_code processing secondaryExternalCode secondary_external_code status statusMarking updated_at withIVA responsible { created_at daysAllow email enabled fullName id locale shortName superAdmin updated_at userType username } customer { id name primary_external_code company { id name } } practiceArea { id externalCode name } } } } variables:map[limit:100 orderBy:orderBy orderDesc:true page:4]]\n","time":"2025-07-30T10:50:34-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: POST https://apinewtm.com/graphql/ | Status: 200 | Duration: 738.6701ms\nHeaders: map[Access-Control-Allow-Credentials:[true] Access-Control-Allow-Origin:[https://azure-function.timemanagerweb.com] Access-Control-Expose-Headers:[link, access-control-allow-credentials] Cache-Control:[no-cache, private] Content-Type:[application/json] Date:[Wed, 30 Jul 2025 14:50:35 GMT] Server:[] Vary:[Authorization]]\nBody: {\"data\":{\"BusinessMeta\":{\"meta\":{\"hasNextPage\":true,\"hasPreviousPage\":true,\"limit\":100,\"next\":5,\"page\":4,\"pages\":16,\"previous\":3,\"total\":1573},\"rows\":[{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-08-30 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000403-RE-000090 - INSCRIPCI\\u00d3N DE NSO \\u03b2-human Chorionic Gonadotropin (\\u03b2-HCG) Test Kit (CLIA)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000403-RE-000090\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"992\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000403-RE-000090\",\"processing\":false,\"secondaryExternalCode\":\"4293\",\"secondary_external_code\":\"4293\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"456\",\"name\":\"MMGC SRL\",\"primary_external_code\":\"403\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-08-30 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000403-RE-000092 - INSCRIPCI\\u00d3N DE NSO \\u03b2-hCG Test Cassette (Whole Blood\\/Serum\\/Plasma)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000403-RE-000092\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"994\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000403-RE-000092\",\"processing\":false,\"secondaryExternalCode\":\"4295\",\"secondary_external_code\":\"4295\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"456\",\"name\":\"MMGC SRL\",\"primary_external_code\":\"403\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-08-31 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000403-RE-000093 - INSCRIPCI\\u00d3N DE NSO PRUEBA R\\u00c1PIDA DE EMBARAZO (hCG). Ref: FHC-101H \\/ FHC-103H.\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000403-RE-000093\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"995\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000403-RE-000093\",\"processing\":false,\"secondaryExternalCode\":\"4308\",\"secondary_external_code\":\"4308\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"456\",\"name\":\"MMGC SRL\",\"primary_external_code\":\"403\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-05 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-05 18:17:14\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000403-RE-000171 - Inscripci\\u00f3n de NSO MYOGLOBINA (MYO) TEST KIT (CLIA) REF.-CI-MYO CON NSO RI-6037\\/2024\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000403-RE-000171\",\"finishedDate\":null,\"fixRateValue\":405,\"fix_rate_value\":405,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2307\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"reg\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000403-RE-000171\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"456\",\"name\":\"MMGC SRL\",\"primary_external_code\":\"403\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-16 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-16 20:23:06\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000403-RE-000172 - INSCRIPCI\\u00d3N DE NSO NTERMINAL PRO-B-TYPE NATRIURETIC PEPTIDE (NT-PRO8NP) TEST KIT (CLIA) REF.-CI-NBNP RI-6032\\/2024\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000403-RE-000172\",\"finishedDate\":null,\"fixRateValue\":405,\"fix_rate_value\":405,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2332\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000403-RE-000172\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"456\",\"name\":\"MMGC SRL\",\"primary_external_code\":\"403\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-19 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-19 21:55:53\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000403-RE-000174 - INSCRIPCI\\u00d3N DE NSO INTERLEVKIN-G (IL-G) TEST KIT (CLIA) REF.- CI-IL6 CON RS. ACO92-791-2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000403-RE-000174\",\"finishedDate\":null,\"fixRateValue\":405,\"fix_rate_value\":405,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2334\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000403-RE-000174\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"456\",\"name\":\"MMGC SRL\",\"primary_external_code\":\"403\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-21 21:37:44\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000403-RE-000324 - INSCRIPCI\\u00d3N D-DIMER TEST KIT (CLIA) REF. CI-DDM RI-5977\\/2024\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000403-RE-000324\",\"finishedDate\":null,\"fixRateValue\":405,\"fix_rate_value\":405,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2359\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"100% al final\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000403-RE-000324\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 14:21:02\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"456\",\"name\":\"MMGC SRL\",\"primary_external_code\":\"403\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-21 21:40:24\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000403-RE-000325 - INSCRIPCI\\u00d3N CREATINE KINASE MB (CKMB) TEST KIT (CLIA) REF. CI-CKMB RI-5970\\/2024\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000403-RE-000325\",\"finishedDate\":null,\"fixRateValue\":405,\"fix_rate_value\":405,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2360\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"100% al final\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000403-RE-000325\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 14:24:10\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"456\",\"name\":\"MMGC SRL\",\"primary_external_code\":\"403\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-07 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-21 22:05:32\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000403-RE-000332 - INSCRIPCI\\u00d3N DE NSO CARDIAC TROPONIN-T (CTNT) TEST KIT (CLIA) RI-6028\\/2024\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000403-RE-000332\",\"finishedDate\":null,\"fixRateValue\":405,\"fix_rate_value\":405,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2367\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"100% al final\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000403-RE-000332\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-07 03:20:08\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"456\",\"name\":\"MMGC SRL\",\"primary_external_code\":\"403\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-11 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:46\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000403-RE-000334 - ALLTEST - TENENCIA CHAGAS RAPID TEST CASSETTE (WHOLE BLOOD\\/SERUM\\/PLASMA) RI-5672\\/2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000403-RE-000334\",\"finishedDate\":null,\"fixRateValue\":387,\"fix_rate_value\":387,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2388\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000403-RE-000334\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"456\",\"name\":\"MMGC SRL\",\"primary_external_code\":\"403\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-11 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:46\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000403-RE-000335 - TONGZHOU-TENENCIA DENGUE IGG\\/IGM AND NS1 COMBO RAPID TEST (WHOLE BLOOD\\/SERUM\\/PLASMA) RI-5892\\/2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000403-RE-000335\",\"finishedDate\":null,\"fixRateValue\":387,\"fix_rate_value\":387,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2389\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000403-RE-000335\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"456\",\"name\":\"MMGC SRL\",\"primary_external_code\":\"403\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-11 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:46\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000403-RE-000336 - MINOLTA-TENENCIA CERTIFIADO DE COMERCIALIZACI\\u00d3N UNIVERSAL DR MODELOS MARS 1417V, MARS 1717V-VSI N\\u00b0 817\\/2021\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000403-RE-000336\",\"finishedDate\":null,\"fixRateValue\":387,\"fix_rate_value\":387,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2390\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000403-RE-000336\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"456\",\"name\":\"MMGC SRL\",\"primary_external_code\":\"403\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-11 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:46\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000403-RE-000337 - ALLTEST-TENENCIA COVID-19 ANTIGEN RAPID TEST (ORAL FLUID) RI-4399\\/2021\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000403-RE-000337\",\"finishedDate\":null,\"fixRateValue\":387,\"fix_rate_value\":387,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2391\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000403-RE-000337\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"456\",\"name\":\"MMGC SRL\",\"primary_external_code\":\"403\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-11 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:46\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000403-RE-000338 - ALLTEST-TENENCIA SARS-COV-2 ANTIGEN RAPID TEST (NASAL SWAB) RI-4398\\/2021\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000403-RE-000338\",\"finishedDate\":null,\"fixRateValue\":387,\"fix_rate_value\":387,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2392\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000403-RE-000338\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"456\",\"name\":\"MMGC SRL\",\"primary_external_code\":\"403\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-11 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:46\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000403-RE-000339 - ALLTEST-TENENCIA PRUEBA R\\u00c1PIDA PARA EMBARAZO (HGC) (GONADOTROPINA CORI\\u00d3NICA HUMANA) (AUTODIAGN\\u00d3STICO) RI-5577\\/2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000403-RE-000339\",\"finishedDate\":null,\"fixRateValue\":387,\"fix_rate_value\":387,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2393\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000403-RE-000339\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"456\",\"name\":\"MMGC SRL\",\"primary_external_code\":\"403\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-11 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:46\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000403-RE-000340 - ALLTEST-TENENCIA HCV RAPID TEST CASSETTE (WHOLE BLOOD\\/SERUM\\/PLASMA) RI-5448\\/2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000403-RE-000340\",\"finishedDate\":null,\"fixRateValue\":387,\"fix_rate_value\":387,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2394\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000403-RE-000340\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"456\",\"name\":\"MMGC SRL\",\"primary_external_code\":\"403\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-11 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:46\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000403-RE-000341 - ALLTEST-TENENCIA ABO AND RHD BLOOD GROUPING RAPID TEST CASSETTE (WHOLE BLOOD) RI-5248\\/2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000403-RE-000341\",\"finishedDate\":null,\"fixRateValue\":387,\"fix_rate_value\":387,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2395\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000403-RE-000341\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"456\",\"name\":\"MMGC SRL\",\"primary_external_code\":\"403\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-02 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:46\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000403-RE-000342 - ALL TEST - TENENCIA HCG PREGNANCY ENHANCED SENSITIVITY RAPID TEST DIPSTICK (URINE); HCG PREGNANCY ENHANCED SENITIVITY RAPIP TEST CASSETTE (URINE) RI-5702\\/2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000403-RE-000342\",\"finishedDate\":null,\"fixRateValue\":387,\"fix_rate_value\":387,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2396\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000403-RE-000342\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"456\",\"name\":\"MMGC SRL\",\"primary_external_code\":\"403\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-11 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:46\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000403-RE-000343 - ALLTEST-TENENCIA CARDIAC TROPONIN-I (CTNI) TEST KIT (CLIA) RI-5851\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000403-RE-000343\",\"finishedDate\":null,\"fixRateValue\":387,\"fix_rate_value\":387,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2397\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000403-RE-000343\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"456\",\"name\":\"MMGC SRL\",\"primary_external_code\":\"403\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-11 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:46\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000403-RE-000344 - TONGZHOU-TENENCIA PREGNANCY (HCG) RAPID TEST (SERUM\\/PLASMA\\/URINE) RI-5832\\/2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000403-RE-000344\",\"finishedDate\":null,\"fixRateValue\":387,\"fix_rate_value\":387,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2398\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000403-RE-000344\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"456\",\"name\":\"MMGC SRL\",\"primary_external_code\":\"403\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-11 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:46\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000403-RE-000345 - ALLTEST-TENENCIA CREATINE KINASE MB (CKMB) TEST KIT (CLIA) RI-5970\\/2024\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000403-RE-000345\",\"finishedDate\":null,\"fixRateValue\":387,\"fix_rate_value\":387,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2399\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000403-RE-000345\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"456\",\"name\":\"MMGC SRL\",\"primary_external_code\":\"403\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-11 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:46\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000403-RE-000346 - ALLTEST-TENENCIA MYOGLOBINA (MYO(TEST KIT (CLIA) REF: CI-MYO RI-6037\\/2014\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000403-RE-000346\",\"finishedDate\":null,\"fixRateValue\":387,\"fix_rate_value\":387,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2400\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000403-RE-000346\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"456\",\"name\":\"MMGC SRL\",\"primary_external_code\":\"403\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-11 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-11 05:25:39\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000567 - OR\\u0026CU \\/ SI TENENCIA TROCAR OPTICO - OPTICAL TROCAR DI-79688\\/2021\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000567\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2653\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000567\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-28 15:58:24\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-11 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-11 05:27:27\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000568 - TA \\/ DIA TENENCIA MINIMED INSULIN PUMP DI-79768\\/2021 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000568\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2654\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000568\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-28 15:58:24\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-11 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-11 05:28:59\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000569 - CATHLAB\\/CAS TENENCIA CLOSURERFS RADIOFREQUENCY STYLET DI-86632\\/2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000569\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2655\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000569\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-28 15:58:24\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-05 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-12 05:06:15\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000570 - CATHLAB\\/CRM TENENCIA DI-86628\\/2023 ASTRA (XT DR, S DR, XT SR, S SR) MRI SURESCAN; AZURE (XT DR, S DR, XT SR, S SR) MRI SURESCAN (VER FORMULA)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000570\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2661\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000570\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-05 08:01:17\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-12 05:08:04\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000571 - CATHLAB\\/CRM TENENCIA PERCUTANEOUS LEAD INTRODUCER (VER FORMULA) DI-87057\\/2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000571\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2662\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000571\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-28 15:58:24\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-12 05:19:26\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000572 - OR\\u0026CU\\/SI TENENCIA DI-86334\\/2023 VALLEYLAB tm REM ADULT UNIVERSAL PATIENT RETURN ELECTRODE \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000572\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2663\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000572\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-28 15:58:24\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-12 05:21:06\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000573 - OR\\u0026CU\\/SI(HW,VS\\u0026ES) TENENCIA SONICISI\\u00d3N tm 7 DI-87163\\/2023 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000573\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2664\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000573\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-28 15:58:24\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-12 05:22:55\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000574 - OR\\u0026CU \\/ SI TENENCIA DI-87282\\/2023 SURGINEEDLE tm AUTO SUTUREtm INSUFFLATION NEEDLE (VER FORMULA) \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000574\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2665\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000574\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-28 15:58:24\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-12 05:24:21\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000575 - OR\\u0026CU \\/ SI TENENCIA SURGITIEtm (VER FORMULA) DI-87791\\/2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000575\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2666\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000575\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-28 15:58:24\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-12 05:25:57\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000576 - CATHLAB\\/CRM TENENCIA 5071 SCREW-IN PACING LEAD DI-87678\\/2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000576\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2667\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000576\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-28 15:58:24\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-12 05:27:23\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000577 - CATHLAB\\/CRM TENENCIA DI-87903\\/2023 PRIMO MRI TM (DR, VR) SURESCAN TM ; MIRRO MRI TM (DR, VR) SURESCAN TM (VER FORMULA)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000577\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2668\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000577\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-28 15:58:24\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-12 05:28:47\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000578 - OR\\u0026CU \\/ RI TENENCIA TRACHEOSTOMY TUBE, DISPOSABLE INNER CANULA DI-84108\\/2022\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000578\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2669\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000578\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 16:31:41\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-12 05:30:54\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000579 - OR\\u0026CU \\/ SI TENENCIA CLEARITYtm VISUALIZATION SYSTEM 21-345 DI-86846\\/2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000579\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2670\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000579\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-28 15:58:24\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-12 05:32:51\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000580 - CATHLAB \\/ PVH TENENCIA DI-86830\\/2023 CLOSUREFASTtm ENDOVENOUS RADIOFREQUENCY ABLATION (RFA) CATHETER\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000580\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2671\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000580\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-28 15:58:24\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-12 05:34:22\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000581 - CATHLAB \\/ PVH TENENCIA HELI-FX ENDOANCHOR SYSTEM DI-79625\\/2021\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000581\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2672\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000581\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-28 15:58:24\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-12 05:35:41\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000582 - OR\\u0026CU \\/ SI TENENCIA SURGISLEEVE - PROTECTOR DE HERIDAS DI-80056\\/2022\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000582\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2673\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000582\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-28 15:58:24\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-12 05:37:59\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000583 - CATHLAB \\/ PVH TENENCIA VENASEALtm CLOSURE SYSTEM DI-83097\\/2022\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000583\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2674\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000583\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-28 15:58:25\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-12 05:39:25\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000584 - TA \\/ DBS TENENCIA HEMOCOR HPH HEMOCONCENTRATOR DI-78381\\/2021 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000584\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2675\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000584\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-28 15:58:25\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-12 05:40:51\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000585 - CATHLAB \\/ CRM TENENCIA CAPSURE SENCE MRItm SURESCAN DI-87554\\/2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000585\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2676\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000585\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-28 15:58:25\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-12 05:42:28\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000586 - CATHLAB \\/ CRM TENENCIA CAPSURE tm EPI (VER FORMULA) DI-87581\\/2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000586\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2677\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000586\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-28 15:58:25\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-12 05:43:49\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000587 - OR\\u0026CU \\/ SI TENENCIA BLADELESS TROCAR DI-79898\\/2021\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000587\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2678\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000587\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-28 15:58:25\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-12 05:45:05\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000588 - OR\\u0026CU \\/ SI TENENCIA LF3225 LIGASURE CURVED JAW, OPEN SEALERI DI-68461\\/2019\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000588\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2679\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000588\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-28 15:58:25\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-12 05:46:21\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000589 - OR\\u0026CU \\/ SI TENENCIA V-LOC 90, VLOC 180 DI-69472\\/2019\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000589\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2680\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000589\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-28 15:58:25\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-12 05:47:36\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000590 - OR\\u0026CU \\/ SI TENENCIA RELIATACK-ABSORBATACK (VER FORMULA) DI-70054\\/2019\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000590\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2681\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000590\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-28 15:58:25\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-12 05:48:56\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000591 - OR\\u0026CU \\/ SI TENENCIA PARIATENE, PARIETEX, PRO GRIP, SYMBOTEX DI-69622\\/2019\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000591\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2682\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000591\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-28 15:58:25\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-12 05:52:22\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000592 - CATHLAB \\/ CRHF TENENCIA DI-46249\\/2023 EVERA TM (XT DR, S DR, XT VR, S VR); EVERA MRI (XT DR, S DR, XT VR, S VR) SURESCAN (VER ANEXO)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000592\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2683\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000592\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-28 15:58:25\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-12 06:01:32\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000593 - OR\\u0026CU \\/ SI TENENCIA DI-77654\\/2021 SONICISIONtm CURVED JAW CORDLESS ULTRASONIC SISSECTION SYSTEM\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000593\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2684\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000593\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-28 15:58:25\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-12 06:02:49\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000594 - CATHLAB \\/ PVH TENENCIA PACIFIC XTREME DI-77658\\/2021\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000594\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2685\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000594\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-28 15:58:25\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-12 06:05:56\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000595 - OR\\u0026CU \\/ RI TENENCIA OXIGENADORES DE MENBRANA Y ACCESORIOS DI-52443\\/2029\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000595\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2686\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000595\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-28 15:58:25\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-12 06:07:22\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000596 - OR\\u0026CU \\/ SI TENENCIA DI-76176\\/2020 MIDSORB-SUTURA ABSORBIBLE SINTETICA MONOFILAMENTO DE POLIGLECAPRONA 25\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000596\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2687\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000596\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-28 15:58:25\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-12 06:08:47\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000597 - CATHLAB \\/ CRHF TENENCIA TYRX ABSORBABLE ANTIBACTERIAL ENVELOPE DI-75789\\/2020\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000597\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2688\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000597\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-28 15:58:25\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-12 06:10:36\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000598 - CATHLAB \\/ CRHF TENENCIA DI-53411\\/2020 VALVULAS BIOLOGICAS PARA CIRUGIA DE CORAZON (VER ANEXO 1-2) \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000598\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2689\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000598\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-28 15:58:25\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-12 06:20:52\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000599 - OR\\u0026CU \\/ SI TENENCIA DI-44438\\/2023 PLAN GUT; CHROMIC GUT; MONOSOFT; SOFSILLK; DEXON; SURGIPRO II (VER ANEXOS 1-11)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000599\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2690\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000341-RE-000599\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-28 15:58:25\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-18 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-18 21:15:03\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000615 - LINEA OR\\u0026ICU \\/ SI - INSCRIPCI\\u00d3N DI-88533\\/2024ENDO CLOSE TM AUTO SUTURE TM TROCAR SITE CLOSURE DEVICE\\u00a0\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000615\",\"finishedDate\":null,\"fixRateValue\":300,\"fix_rate_value\":300,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2727\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000341-RE-000615\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-28 21:00:48\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-18 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-18 21:19:48\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000616 - LINEA OR\\u0026CU \\/ RI -TENENCIA DI-88533\\/2024 ENDO CLOSE TM AUTO SUTURE TM TROCAR SITE CLOSURE DEVICE \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000616\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2728\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000341-RE-000616\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-28 15:58:25\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-18 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-18 21:22:37\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000617 - L\\u00ednea CATHLAB \\/ CORO, Inscripci\\u00f3n DI-88864\\/2024 C315 DELVERY CATHETER\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000617\",\"finishedDate\":null,\"fixRateValue\":300,\"fix_rate_value\":300,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2729\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000341-RE-000617\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-28 21:02:06\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-20 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-20 16:00:02\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000619 - OR\\u0026CU \\/ RGR (RI) TENENCIA DI-87961\\/2023 TRACHEOSTOMY TUBE WITH TAPERGUARD CUFF; INNER CANNULA (FORMULA)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000619\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2732\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000341-RE-000619\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-28 15:58:25\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-20 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-20 16:02:52\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000620 - LINEA CATHLAB \\/ CORO - INSCRIPCI\\u00d3N DI-88393-2024 ONYXFRONTIER TM ZOTAROLIMUS-ELUTING CORONARY STENT SYSTEM\\u00a0\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000620\",\"finishedDate\":null,\"fixRateValue\":300,\"fix_rate_value\":300,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2733\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000341-RE-000620\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-20 16:19:47\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-20 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-20 16:05:03\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000621 - LINEA CATHLAB \\/ CORO -TENENCIA DI-88393-2024 ONYX FRONTIER TM ZOTAROLIMUS-ELUTING CORONARY STENT SYSTEM.\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000621\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2734\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000341-RE-000621\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-28 15:58:25\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-20 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-20 16:07:32\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000622 - LINEA OR\\u0026ICU \\/SI -TENENCIA DI-88442\\/2024 MONOSOF TM MONOFILAMENT NYLON \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000622\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2735\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000341-RE-000622\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-28 15:58:25\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-20 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-20 16:10:13\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000623 - LINEA OR\\u0026ICU\\/ PM - INSCRIPCI\\u00d3N CERTIFICADON\\u00b0:\\u00a02114\\/2024 BIS TM COMPLETE MONITORING SYSTEM -REF:186-1046\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000623\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2736\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000341-RE-000623\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-28 21:25:51\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-20 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-20 16:13:25\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000624 - LINEA OR\\u0026ICU \\/ PM -TENENCIA CERTIFICADO N\\u00b0: 2114\\/2024 BIS TM COMPLETE MONITORING SYSTEM - REF\\u00b7186-1046.\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000624\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2737\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000341-RE-000624\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-28 15:58:25\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-20 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-20 16:15:59\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000625 - LINEA CATHLAB \\/ PVH -TENENCIA DI-88762\\/2024 MO.MA ULTRA TM CEREBRAL PROTECTION DEVICE.\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000625\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2738\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000341-RE-000625\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-28 15:58:25\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-02 00:00:00\",\"confidential\":false,\"created_at\":\"2024-04-02 20:07:06\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000649 - INSCRIPCI\\u00d3N DE NSO CAPSURE SENSE MRI? SURESCAN? CON DI-87554\\/2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000649\",\"finishedDate\":null,\"fixRateValue\":300,\"fix_rate_value\":300,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2788\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000341-RE-000649\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 14:58:33\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-02 00:00:00\",\"confidential\":false,\"created_at\":\"2024-04-02 20:50:52\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000650 - INSCRIPCI\\u00d3N DE NSO CAPSURE? EPI CON DI-87581\\/2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000650\",\"finishedDate\":null,\"fixRateValue\":300,\"fix_rate_value\":300,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2789\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000341-RE-000650\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 14:58:59\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-02 00:00:00\",\"confidential\":false,\"created_at\":\"2024-04-02 20:52:56\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000651 - INSCRIPCI\\u00d3N DE NSOC DEL PRODUCTO PACIFIC XTREME DI-77658\\/2021\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000651\",\"finishedDate\":null,\"fixRateValue\":300,\"fix_rate_value\":300,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2790\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000341-RE-000651\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 14:19:05\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-02 00:00:00\",\"confidential\":false,\"created_at\":\"2024-04-02 20:54:41\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000652 - TENENCIA CATETERES TERAPEUTICOS INTRAVASCULARES PARA GIDO Y ASPIRADO DI-53864\\/2020 GESTION 2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000652\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2791\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000341-RE-000652\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 15:24:01\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-02 00:00:00\",\"confidential\":false,\"created_at\":\"2024-04-02 20:56:18\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000653 - TENENCIA CHROMIC GUT ABSORBABLE SUTURE, MILD CHROMIC GUT ABSORBABLE CON DI-80971\\/2022 GESTION 2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000653\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2792\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000341-RE-000653\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 15:24:51\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-02 00:00:00\",\"confidential\":false,\"created_at\":\"2024-04-02 20:57:49\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000654 - TENENCIA DE HEMOCOR HPH HEMOCONCENTRADOR CON DI-78381\\/2021 GESTION 2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000654\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2793\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000341-RE-000654\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 15:25:17\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-02 00:00:00\",\"confidential\":false,\"created_at\":\"2024-04-02 21:02:25\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000655 - TENENCIA DE NSOC DEL PRODUCTO PACIFIC XTREME DI-77658\\/2021 GESTION 2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000655\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2794\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000341-RE-000655\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 14:22:21\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-02 00:00:00\",\"confidential\":false,\"created_at\":\"2024-04-02 21:03:50\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000656 - TENENCIA DEL PRODUCTO BALLOON CATHETER CON CI-57930\\/2021 GESTI\\u00d3N 2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000656\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2795\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000341-RE-000656\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 14:22:44\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-02 00:00:00\",\"confidential\":false,\"created_at\":\"2024-04-02 21:05:08\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000657 - TENENCIA DEL PRODUCTO LAUNCHER GUIDE CATHETER CON CI-76585\\/2021 GESTION 2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000657\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2796\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000341-RE-000657\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 15:29:14\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-02 00:00:00\",\"confidential\":false,\"created_at\":\"2024-04-02 21:06:49\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000658 - TENENCIA DEL PRODUCTO MEDICAPTURE MEDICAL IMAGE STORAGE DEVICE N\\u00b01140\\/2022 GESTION 2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000658\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2797\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000341-RE-000658\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 14:23:05\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-02 00:00:00\",\"confidential\":false,\"created_at\":\"2024-04-02 21:08:04\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000659 - TENENCIA DEL PRODUCTO PREVAIL TM PACLITAXEL-COATED PTCA BALLOON CATHETER DI-76990-2021 GESTION 2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000659\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2798\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000341-RE-000659\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 15:29:40\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-02 00:00:00\",\"confidential\":false,\"created_at\":\"2024-04-02 21:09:52\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000660 - TENENCIA DISPOSITIVO DE PROTECCI\\u00d3N CEREBRAL PROXIMAL Mo.Ma. ULTRA DI-53409\\/2019 GESTION 2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000660\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2799\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000341-RE-000660\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 14:25:43\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-02 00:00:00\",\"confidential\":false,\"created_at\":\"2024-04-02 21:11:25\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000661 - TENENCIA ELECTRODOS E INDUCTORES PARA MARCAPASO (LEAD, INTRO, ACCESS) DI-46248\\/2018 GESTION 2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000661\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2800\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000341-RE-000661\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 15:30:07\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-02 00:00:00\",\"confidential\":false,\"created_at\":\"2024-04-02 21:12:35\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000662 - TENENCIA LAUNCHER CATHETER (CATETER GUIA INTRAVASCULAR PARA SISTEMA PERIFERICO O DI-53865\\/19 GES2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000662\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2801\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000341-RE-000662\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 14:14:15\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-02 00:00:00\",\"confidential\":false,\"created_at\":\"2024-04-02 21:20:10\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000663 - TENENCIA PRODUCTO ALAMBRE GU\\u00cdA ANGIOGRAFICOS DI-53425\\/2019 GESTION 2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000663\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2802\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000341-RE-000663\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 15:31:27\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-02 00:00:00\",\"confidential\":false,\"created_at\":\"2024-04-02 21:21:36\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000664 - TENENCIA PRODUCTO AMPHIRION DEEP, ADMIRAL EXTREME DI-57982\\/2016 GESTION 2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000664\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2803\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000341-RE-000664\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 14:26:01\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-02 00:00:00\",\"confidential\":false,\"created_at\":\"2024-04-02 21:23:07\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000665 - TENENCIA PRODUCTO CATETER CON BALON PARA ANGIOPLASTIA TRANSLUMINAL DI-53424\\/2019 GESTION 2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000665\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2804\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000341-RE-000665\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 15:40:17\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-02 00:00:00\",\"confidential\":false,\"created_at\":\"2024-04-02 21:26:58\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000666 - TENENCIA PRODUCTO CATETER DIAGNOSTICO DX TERITY DI-68467\\/2019 GESTION 2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000666\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2805\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000341-RE-000666\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 15:40:40\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-02 00:00:00\",\"confidential\":false,\"created_at\":\"2024-04-02 21:28:24\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000667 - TENENCIA PRODUCTO CATETER INTRAVASCULAR PARA GUIADO DI-53423 GESTION 2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000667\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2806\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000341-RE-000667\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 15:41:04\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-02 00:00:00\",\"confidential\":false,\"created_at\":\"2024-04-02 21:29:43\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000668 - TENENCIA PRODUCTO CATETERES BALON ANGIOGRAFICOS DI-53438\\/2019 GESTION 2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000668\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2807\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000341-RE-000668\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 15:41:20\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-03 00:00:00\",\"confidential\":false,\"created_at\":\"2024-04-02 21:31:05\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000669 - TENENCIA PRODUCTO CATETERES INDUCTORES DE ELECTRODOS MEDTRONIC DI-51017\\/2019 GESTION 2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000669\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2808\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000341-RE-000669\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 15:41:36\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-03 00:00:00\",\"confidential\":false,\"created_at\":\"2024-04-03 12:48:57\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000670 - TENENCIA PRODUCTO CATETERES INTRAVASCULARES PARA GUIADO DI-53410\\/2019 GESTION 2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000670\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2809\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000341-RE-000670\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 15:41:54\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-03 00:00:00\",\"confidential\":false,\"created_at\":\"2024-04-03 12:58:14\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000671 - TENENCIA PRODUCTO CATETERES: ENDOVASCULAR, HEMODIALISIS DI-51863\\/2019 GESTION 2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000671\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2810\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000341-RE-000671\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 15:42:12\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-03 00:00:00\",\"confidential\":false,\"created_at\":\"2024-04-03 12:59:24\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000672 - TENENCIA PRODUCTO MARCAPASOS IMPLANTABLES DI-57077\\/2015 GESTION 2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000672\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2811\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000341-RE-000672\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 15:51:30\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-03 00:00:00\",\"confidential\":false,\"created_at\":\"2024-04-03 13:00:52\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000673 - TENENCIA PRODUCTO OXIGENADORES DE MENBRANA Y ACCESORIOS DI-52443\\/2019 GESTION 2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000673\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2812\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000341-RE-000673\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 15:42:32\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-03 00:00:00\",\"confidential\":false,\"created_at\":\"2024-04-03 13:02:17\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000674 - TENENCIA PRODUCTO RESOLUTE ONYX DI-64773\\/2018 GESTION 2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000674\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2813\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000341-RE-000674\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 14:13:49\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-03 00:00:00\",\"confidential\":false,\"created_at\":\"2024-04-03 13:03:37\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000675 - TENENCIA PRODUCTO STENTS CORONARIOS \\/ STENTS PERIF\\u00c9RICOS DI-53856\\/2019 GESTION 2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000675\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2814\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000341-RE-000675\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 15:42:52\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-03 00:00:00\",\"confidential\":false,\"created_at\":\"2024-04-03 13:10:42\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000676 - TENENCIA PRODUCTO VALVULAS BIOL\\u00d3GICAS DI-53411\\/2020 GESTION 2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000676\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2815\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000341-RE-000676\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 15:43:11\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-03 00:00:00\",\"confidential\":false,\"created_at\":\"2024-04-03 13:11:52\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000677 - TENENCIA PRODUCTO VALVULAS MECANICAS DI-52442\\/2019 GESTION 2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000677\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2816\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000341-RE-000677\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 15:43:37\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-03 00:00:00\",\"confidential\":false,\"created_at\":\"2024-04-03 13:13:14\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000678 - TENENCIA VENASEAL tm CLOSURE SYSTEM CON DI-83097\\/2022 GESTI\\u00d3N 2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000678\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2817\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000341-RE-000678\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 14:26:28\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-03 00:00:00\",\"confidential\":false,\"created_at\":\"2024-04-03 16:29:22\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000679 - TENENCIA PRODUCTO NEWPORT RESPIRADOR e360, e360E, e360T CON ACCESORIOS CC-628-2020 GESTION 2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000679\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2819\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000341-RE-000679\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 16:32:29\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-03 00:00:00\",\"confidential\":false,\"created_at\":\"2024-04-03 16:30:39\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000680 - TENENCIA PRODUCTO SISTEMA VENTILADOR 840 PURITAN BENNET (SERIE 800) CC-408-2018 GESTION 2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000680\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2820\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000341-RE-000680\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 16:33:20\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2025-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-09-23 14:52:16\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-SC-000985 - Consultas Legales por hora\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-SC-000985\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2889\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000341-SC-000985\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2025-03-12 15:18:25\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2024-02-08 00:16:01\",\"daysAllow\":302,\"email\":\"ckaegui@emba.com\",\"enabled\":true,\"fullName\":\"Camila Kaegui\",\"id\":75,\"locale\":\"es\",\"shortName\":\"ckaegui\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"ckaegui@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"9\",\"externalCode\":\"AR20\",\"name\":\"Contrataci\\u00f3n P\\u00fablica\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-09-23 00:00:00\",\"confidential\":false,\"created_at\":\"2024-09-23 16:54:21\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-SC-000976 - Test Any2\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-SC-000976\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2900\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":null,\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-10-03 17:25:28\",\"withIVA\":true,\"responsible\":null,\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"3\",\"externalCode\":null,\"name\":\"Back Office\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2025-01-13 00:00:00\",\"confidential\":false,\"created_at\":\"2024-10-02 17:24:15\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000341-RE-000732 - pruebasxhitosoe\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000341-RE-000732\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2918\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000341-RE-000732\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":4,\"statusMarking\":\"billed\",\"updated_at\":\"2025-01-13 14:12:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"aaraoz@emba.com\",\"enabled\":true,\"fullName\":\"Alvaro Araoz Ardaya\",\"id\":17,\"locale\":\"es\",\"shortName\":\"aaraoz\",\"superAdmin\":false,\"updated_at\":\"2024-12-04 15:29:19\",\"userType\":1,\"username\":\"aaraoz@emba.com\"},\"customer\":{\"id\":\"444\",\"name\":\"MEDTRONIC LOGISTICS LLC\",\"primary_external_code\":\"341\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}}]}}}\n","time":"2025-07-30T10:50:35-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: POST https://apinewtm.com/graphql/\nHeaders: map[Accept:[application/json] Authorization:[Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJpYXQiOjE3NTM4ODY1MjIsImV4cCI6MTc1Mzk2NjUyMiwiaWQiOjEwNSwidXNlcm5hbWUiOiJpbnRlZ3JhY2lvbmVzQGVtYmEuYm8iLCJhcGlrZXkiOiI5Yzg0ZjYzZTRlMzk2ZGZmOWU5ZjU3NDI5OGRmZWUzOSIsImFwaWtleUNyZWF0ZWRBdCI6eyJkYXRlIjoiMjAyNS0wNy0xNyAxMDo0MToyNS4wMDAwMDAiLCJ0aW1lem9uZV90eXBlIjozLCJ0aW1lem9uZSI6IkFtZXJpY2EvQm9nb3RhIn0sImZ1bGxOYW1lIjoiSW50ZWdyYWNpw7NuIEVNQkEiLCJlbWFpbCI6ImludGVncmFjaW9uZXNAZW1iYS5ibyIsImxvY2FsZSI6ImVzIiwiZGF5c0FsbG93ZWQiOjMwLCJpc0Nvb3JkaW5hdG9yIjpmYWxzZSwidHlwZVRhc2tWaWV3IjoibGlzdHMiLCJkYXlzYWxsb3ciOjMwLCJyb2xlcyI6e30sInNob3J0X25hbWUiOiJJTi5FTUJBIiwicGVybWlzc2lvbnMiOlsic3luY19leHRlcm5hbF9idXNpbmVzcyIsInN5bmNfZXh0ZXJuYWxfY3VzdG9tZXIiLCJzeW5jX2V4dGVybmFsX21pbGVzdG9uZSIsImFic2VuY2VfYXBwcm92ZSIsImFic2VuY2VfY3JlYXRlX2FsbCIsImFic2VuY2VfY3JlYXRlX293biIsImFic2VuY2VfbWVudSIsImFjY291bnRpbmdfYnVzaW5lc3NfbGlzdCIsImFjY291bnRpbmdfY3VzdG9tZXJfbGlzdCIsImJpbGxpbmdfcGVyaW9kX2RlbGV0ZV9hbGwiLCJiaWxsaW5nX3BlcmlvZF9lZGl0X2FsbCIsImJpbGxpbmdfcGVyaW9kX2xpc3QiLCJiaWxsaW5nX3BlcmlvZF9yZWFjdGl2YXRlIiwiYm9hcmRfcmF0ZV91c2VyX2NyZWF0ZSIsImJvYXJkX3JhdGVfdXNlcl9lZGl0IiwiYnVzaW5lc3NfY3JlYXRlIiwiYnVzaW5lc3NfZGVzY3JpcHRpb25fc2F2ZSIsImJ1c2luZXNzX2VkaXQiLCJidXNpbmVzc19saXN0X2FsbCIsImJ1c2luZXNzX21lbnUiLCJidXNpbmVzc19yZXNwb25zaWJsZV9saXN0X2FsbCIsImJ1c2luZXNzX3NlZV9iaWxsaW5nX2luZm8iLCJidXNpbmVzc2VzX2FsbG93ZWRfdXNlcl9jcmVhdGUiLCJidXNpbmVzc2VzX2FsbG93ZWRfdXNlcl9kZWxldGUiLCJjb21wYW55X2Rpc2FibGUiLCJjb21wYW55X2VkaXQiLCJjb21wYW55X2xpc3QiLCJjb25jZXB0X2NyZWF0ZSIsImNvbmNlcHRfZWRpdCIsImNvbmNlcHRfbWVudSIsImNvbnRhY3RfY3JlYXRlIiwiY29udGFjdF9jcmVhdGVfZmFzdCIsImNvbnRhY3RfZWRpdCIsImNvbnRhY3RfbGlzdCIsImNvbnRhY3RfbWVudSIsImN1c3RvbWVyX2NyZWF0ZSIsImN1c3RvbWVyX2NyZWF0ZV9mYXN0IiwiY3VzdG9tZXJfZWRpdCIsImN1c3RvbWVyX2xpc3QiLCJjdXN0b21lcl9saXN0X2FsbCIsImN1c3RvbWVyX21lbnUiLCJleHBlbnNlX2NyZWF0ZV9hbGwiLCJleHBlbnNlX2RlbGV0ZV9hbGwiLCJleHBlbnNlX2R1cGxpY2F0ZSIsImV4cGVuc2VfZWRpdF9hbGwiLCJleHBlbnNlX2xpc3RfYWxsIiwiZXhwZW5zZV9tZW51IiwiZXhwZW5zZV9yZWplY3RfYWxsIiwiZmFiX3Nob3ciLCJmaWxlX21lbnUiLCJnZW9yZWZlcmVuY2VfY3JlYXRlIiwiZ2VvcmVmZXJlbmNlX2VkaXQiLCJnZW9yZWZlcmVuY2VfbWVudSIsImdvX3RvX2xlZ2FjeSIsImluZGljYXRvcnNfbWVudSIsImludm9pY2VfY3JlYXRlIiwiaW52b2ljZV9kZXRhaWxfbGlzdF9hbGwiLCJpbnZvaWNlX2ZpeF90aW1lc19jdXN0b21fdmFsdWUiLCJpbnZvaWNlX2xpc3RfYWxsIiwiaW52b2ljZWFkdmFuY2VfY3JlYXRlIiwiaW52b2ljZWFkdmFuY2VfbGlzdCIsImludm9pY2VhZHZhbmNlX3VwZGF0ZSIsImxvZ19saXN0X2FsbCIsImxvZ19saXN0X293biIsIm1pbGVzdG9uZV9jcmVhdGUiLCJtaWxlc3RvbmVfZGVsZXRlIiwibWlsZXN0b25lX2VkaXQiLCJtb250aGx5X2ZpeF9yYXRlX2dyb3VwX2NyZWF0ZSIsIm1vbnRobHlfZml4X3JhdGVfZ3JvdXBfZWRpdCIsIm1vbnRobHlfdXNlcl9jb3N0X2NyZWF0ZSIsIm1vbnRobHlfdXNlcl9jb3N0X2VkaXQiLCJwYXltZW50X2NyZWF0ZSIsInBheW1lbnRfZGVsZXRlIiwicGF5bWVudF9lZGl0IiwicGF5bWVudF9tZW51IiwicHJvY2VkdXJlX21lbnUiLCJwcm9jZWR1cmVfcmF0ZV9jcmVhdGUiLCJwcm9jZWR1cmVfcmF0ZV9kZXRhaWxfY3JlYXRlIiwicHJvY2VkdXJlX3JhdGVfZGV0YWlsX2VkaXQiLCJwcm9jZWR1cmVfcmF0ZV9kZXRhaWxfbGlzdCIsInByb2NlZHVyZV9yYXRlX2VkaXQiLCJwcm9jZWR1cmVfcmF0ZV9saXN0IiwicHJvY2VkdXJlX3JhdGVfbWVudSIsInByb2NlZHVyZV90cmFuc2FjdGlvbl9saXN0IiwicHJvamVjdF9hcmNoaXZlX2Nhc2NhZGVfYWxsIiwicHJvamVjdF9kZWxldGVfY2FzY2FkZV9hbGwiLCJwcm9qZWN0X3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInJhdGVfYnVzaW5lc3NfY2F0ZWdvcnlfY3JlYXRlIiwicmF0ZV9idXNpbmVzc19jYXRlZ29yeV9lZGl0IiwicmF0ZV9idXNpbmVzc191c2VyX2NyZWF0ZSIsInJhdGVfYnVzaW5lc3NfdXNlcl9lZGl0IiwicmF0ZV9leGNoYW5nZV9jcmVhdGUiLCJyYXRlX2V4Y2hhbmdlX2VkaXQiLCJyYXRlX2V4Y2hhbmdlX2xpc3QiLCJyYXRlX3VzZXJfY3JlYXRlIiwicmF0ZV91c2VyX2VkaXQiLCJyb2xlX2NyZWF0ZSIsInJvbGVfZWRpdF9hbGwiLCJyb2xlX2xpc3RfYWxsIiwic2VjdGlvbl9hcmNoaXZlX2Nhc2NhZGVfYWxsIiwic2VjdGlvbl9kZWxldGVfY2FzY2FkZV9hbGwiLCJzZWN0aW9uX3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInNlZV9tZW51X3JhdGVfZXhjaGFuZ2UiLCJzZXJpZV9jcmVhdGUiLCJzZXJpZV9lZGl0Iiwic2VyaWVfbWVudSIsInNldHRpbmdzX3ZpZXciLCJzdXBwbGllcl9jcmVhdGUiLCJ0YXNrX2FkZF90aW1lX2FsbCIsInRhc2tfYWRkX3RpbWVfb3duIiwidGFza19hc3NpZ25lZF91c2VyX2VtYWlsIiwidGFza19jbG9zZWRfZW1haWwiLCJ0YXNrX2NyZWF0ZV9hbGwiLCJ0YXNrX2NyZWF0ZV9jb21tZW50X2VtYWlsIiwidGFza19jcmVhdGVfc2VsZiIsInRhc2tfY3JlYXRlX3RlYW0iLCJ0YXNrX2RlbGV0ZV9hbGwiLCJ0YXNrX2RlbGV0ZV9vd24iLCJ0YXNrX2RlbGV0ZV90ZWFtIiwidGFza19lZGl0X2FsbCIsInRhc2tfZWRpdF9kdWVfZGF0ZSIsInRhc2tfZWRpdF9vd24iLCJ0YXNrX2VkaXRfdGVhbSIsInRhc2tfbGlzdF9hbGwiLCJ0YXNrX2xpc3Rfb3duIiwidGFza19saXN0X3RlYW0iLCJ0YXNrX21hc3NpdmVpbXBvcnQiLCJ0YXNrX21lbnUiLCJ0YXNrX21pZ3JhdGlvbiIsInRhc2tfc2V0X2FkZGl0aW9uYWxfYXNzaWduZWVzIiwidGFza19zZXRfZHVlX2RhdGUiLCJ0YXNrX3NldF9lc3RpbWF0ZWRfdGltZSIsInRhc2tfc2V0X3ByaW9yaXR5IiwidGFza19zZXRfcHJvZ3Jlc3MiLCJ0YXhfZWRpdF9hbGwiLCJ0YXhfbGlzdF9hbGwiLCJ0ZWFtX2FyY2hpdmVfY2FzY2FkZV9hbGwiLCJ0ZWFtX2NyZWF0ZV9hbGwiLCJ0ZWFtX2RlbGV0ZV9hbGwiLCJ0ZWFtX2VkaXRfYWxsIiwidGVhbV9saXN0X2FsbCIsInRlYW1fbGlzdF9vd24iLCJ0ZWFtX3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInRpbWVfYWNjZXB0X2FsbCIsInRpbWVfYWNjZXB0X293biIsInRpbWVfYXBwcm92ZV9hbGwiLCJ0aW1lX2FwcHJvdmVfb3duIiwidGltZV9jcmVhdGVfYWxsIiwidGltZV9jcmVhdGVfb3duIiwidGltZV9kZWxldGVfYWxsIiwidGltZV9kZWxldGVfb3duIiwidGltZV9kZW55X2FsbCIsInRpbWVfZGVueV9vd24iLCJ0aW1lX2Rvd25sb2FkZmlsZV9hbGwiLCJ0aW1lX2Rvd25sb2FkZmlsZV9vd24iLCJ0aW1lX2VkaXRfYWxsIiwidGltZV9lZGl0X2Nsb3NlX3BlcmlvZF9hbGwiLCJ0aW1lX2VkaXRfY2xvc2VfcGVyaW9kX293biIsInRpbWVfZWRpdF9vd24iLCJ0aW1lX2xpc3RfYWxsIiwidGltZV9saXN0X293biIsInRpbWVfbWVudSIsInRpbWVfbWludXRlc196ZXJvIiwidGltZV9yZWplY3RfYWxsIiwidGltZV9yZXN0cmljdGVkX3BlcmlvZF9jcmVhdGUiLCJ0aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX2VkaXQiLCJ0aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX21lbnUiLCJ0aW1lX3NoYXJlX2FsbCIsInRpbWVfc2hhcmVfb3duIiwidGltZV9zaG93X2NhbGVuZGFyX3ZpZXciLCJ0aW1lX3VwbG9hZGZpbGVfYWxsIiwidGltZV91cGxvYWRmaWxlX293biIsInRyYW5zYWN0aW9uX2FkYXB0ZXJfbGlzdCIsInRyYW5zYWN0aW9uX2xpc3QiLCJ1c2VyX2Fic2VuY2VzX3Nob3ciLCJ1c2VyX2Nvc3RfY3JlYXRlIiwidXNlcl9jb3N0X2VkaXQiLCJ1c2VyX2Nvc3RfbGlzdCIsInVzZXJfY29zdF9tZW51IiwidXNlcl9jb3N0X3JhdGVfY3JlYXRlIiwidXNlcl9jb3N0X3JhdGVfZWRpdCIsInVzZXJfY29zdF9yYXRlX2xpc3QiLCJ1c2VyX2NyZWF0ZSIsInVzZXJfZGlzYWJsZSIsInVzZXJfZWRpdCIsInVzZXJfZWRpdF9kYXlzX2FsbG93X29ubHkiLCJ1c2VyX2dyb3VwX3JvbGVfY3JlYXRlX2FsbCIsInVzZXJfZ3JvdXBfcm9sZV9kZWxldGVfYWxsIiwidXNlcl9ncm91cF9yb2xlX2VkaXRfYWxsIiwidXNlcl9ncm91cF9yb2xlc19saXN0X2FsbCIsInVzZXJfbGlzdCIsInVzZXJfbGlzdF9hbGwiLCJ1c2VyX21hc3NfYWN0aXZhdGlvbiIsInVzZXJfcHJvZHVjdGl2aXR5X2NyZWF0ZSIsInVzZXJfcHJvZHVjdGl2aXR5X2Rpc2FibGUiLCJ1c2VyX3Byb2R1Y3Rpdml0eV9lZGl0IiwidXNlcl9wcm9kdWN0aXZpdHlfZW5hYmxlIiwidXNlcl9wcm9kdWN0aXZpdHlfbWVudSIsInVzZXJfdGltZV9yZXN0cmljdGVkX3BlcmlvZF9jcmVhdGUiLCJ1c2VyX3RpbWVfcmVzdHJpY3RlZF9wZXJpb2RfZGVsZXRlIiwidXNlcl90aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX2VkaXQiLCJ1c2VyZ3JvdXBfY3JlYXRlX2FsbCIsInVzZXJncm91cF9kZWxldGVfYWxsIiwidXNlcmdyb3VwX2VkaXRfYWxsIiwidXNlcmdyb3VwX2xpc3RfYWxsIiwidXNlcmdyb3VwX21lbnUiLCJ1c2Vyc191c2VyX2dyb3VwX2NyZWF0ZV9hbGwiLCJ1c2Vyc191c2VyX2dyb3VwX2RlbGV0ZV9hbGwiLCJ1c2Vyc191c2VyX2dyb3VwX2VkaXRfYWxsIiwidXNlcnNfdXNlcl9ncm91cHNfbGlzdF9hbGwiXSwiaG9tZXBhZ2UiOm51bGx9.kShN7NXGoaz1oFro-yYNyIpIEcnNpo1GiB8SFGKFUJtDQoqyp1I1w-CMA8Kta3vWXnUZwx-y2z1yVSJaMpZbqQgKFlakpcf6351bZSL8IAUPExSfLz0HYYCWFx-Usx94BBTqosKsRhnT8PkPN3dGxs8-XTIEDi9gN-Pk9OSHmM5mPkTsaaxTY40M-F7Y0Up2y6s_lwFaX13CmstiYZSXzyKL9SUBBx-E6-8qQAfuKPIoZ_50jSGPW98-IkAcWwqO6yGf-M07dSfFZ2vLfwc3ulHm2p8jVSmRxJ_O43BEWQD5cvqGbVIvSMXkS4y98DL4Vencjjg27iu3CUJsDNBBTg] Content-Type:[application/json] Origin:[https://azure-function.timemanagerweb.com] Tenant-Name:[pruebas-dos] User-Agent:[Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36]]\nBody: map[query:query ($limit: Int, $orderBy: String, $orderDesc: Boolean, $page: Int) { BusinessMeta(limit: $limit, orderBy: $orderBy, orderDesc: $orderDesc, page: $page) { meta { hasNextPage hasPreviousPage limit next page pages previous total } rows { apply_procedures billable business_customer_code caseNumber closed_date confidential created_at discountAmount discountPercent displayName enableBusinessAllowedUsers expedient finishedDate fixRateValue fix_rate_value hourLimit hour_limit id internal_code isBillable limitAlert notes partialCharges partial_charges primary_external_code processing secondaryExternalCode secondary_external_code status statusMarking updated_at withIVA responsible { created_at daysAllow email enabled fullName id locale shortName superAdmin updated_at userType username } customer { id name primary_external_code company { id name } } practiceArea { id externalCode name } } } } variables:map[limit:100 orderBy:orderBy orderDesc:true page:5]]\n","time":"2025-07-30T10:50:35-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: POST https://apinewtm.com/graphql/ | Status: 200 | Duration: 809.1546ms\nHeaders: map[Access-Control-Allow-Credentials:[true] Access-Control-Allow-Origin:[https://azure-function.timemanagerweb.com] Access-Control-Expose-Headers:[link, access-control-allow-credentials] Cache-Control:[no-cache, private] Content-Type:[application/json] Date:[Wed, 30 Jul 2025 14:50:36 GMT] Server:[] Vary:[Authorization]]\nBody: {\"errors\":[{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",92,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",92,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",92,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",92,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",92,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",92,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",92,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",92,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",92,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",92,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",92,\"responsible\",\"username\"]}],\"data\":{\"BusinessMeta\":{\"meta\":{\"hasNextPage\":true,\"hasPreviousPage\":true,\"limit\":100,\"next\":6,\"page\":5,\"pages\":16,\"previous\":4,\"total\":1573},\"rows\":[{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2021-08-10 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000864-RE-000051 - Registro de Productos Alimenticios\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000864-RE-000051\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"31\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000864-RE-000051\",\"processing\":false,\"secondaryExternalCode\":\"51\",\"secondary_external_code\":\"51\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"764\",\"name\":\"NUTRICIA EXPORT B.V.\",\"primary_external_code\":\"864\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-09-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-03-15 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000910-SR-000893 - Outsourcing contable (FM)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000910-SR-000893\",\"finishedDate\":null,\"fixRateValue\":2800,\"fix_rate_value\":2800,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"155\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000910-SR-000893\",\"processing\":false,\"secondaryExternalCode\":\"1211\",\"secondary_external_code\":\"1211\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-09-05 10:44:44\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"cdelgado@emba.com\",\"enabled\":true,\"fullName\":\"Cristhian Delgado Ramirez\",\"id\":13,\"locale\":\"es\",\"shortName\":\"cdelgado\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"cdelgado@emba.com\"},\"customer\":{\"id\":\"4\",\"name\":\"ACCENTURE S.A.\",\"primary_external_code\":\"910\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"24\",\"externalCode\":\"AR05\",\"name\":\"Outsourcing\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-14 00:00:00\",\"confidential\":false,\"created_at\":\"2018-01-01 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000452-RE-000600 - Domicilio Legal (FM)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000452-RE-000600\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"469\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000452-RE-000600\",\"processing\":false,\"secondaryExternalCode\":\"86\",\"secondary_external_code\":\"86\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-14 14:34:24\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"495\",\"name\":\"Perfumeria Francesa (Bolivia) SRL\",\"primary_external_code\":\"452\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-07 00:00:00\",\"confidential\":false,\"created_at\":\"2018-01-01 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000452-SR-000005 - Representacion Legal (FM)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000452-SR-000005\",\"finishedDate\":null,\"fixRateValue\":550,\"fix_rate_value\":550,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"470\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000452-SR-000005\",\"processing\":false,\"secondaryExternalCode\":\"87\",\"secondary_external_code\":\"87\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-14 14:42:40\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"495\",\"name\":\"Perfumeria Francesa (Bolivia) SRL\",\"primary_external_code\":\"452\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-07 00:00:00\",\"confidential\":false,\"created_at\":\"2018-01-01 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000452-SR-000006 - Outsourcing contable (FM)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000452-SR-000006\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"471\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000452-SR-000006\",\"processing\":false,\"secondaryExternalCode\":\"88\",\"secondary_external_code\":\"88\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 13:51:56\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"cdelgado@emba.com\",\"enabled\":true,\"fullName\":\"Cristhian Delgado Ramirez\",\"id\":13,\"locale\":\"es\",\"shortName\":\"cdelgado\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"cdelgado@emba.com\"},\"customer\":{\"id\":\"495\",\"name\":\"Perfumeria Francesa (Bolivia) SRL\",\"primary_external_code\":\"452\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"34\",\"externalCode\":\"AR03\",\"name\":\"Der. Penal\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2019-03-20 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000452-SR-000053 - RECONOCIMIENTO NSOC ROUGE ALLURE\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000452-SR-000053\",\"finishedDate\":null,\"fixRateValue\":200,\"fix_rate_value\":200,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"473\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000452-SR-000053\",\"processing\":false,\"secondaryExternalCode\":\"1233\",\"secondary_external_code\":\"1233\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"495\",\"name\":\"Perfumeria Francesa (Bolivia) SRL\",\"primary_external_code\":\"452\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2018-01-01 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000451-SR-000007 - Mantenimiento de la Sociedad (FM)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000451-SR-000007\",\"finishedDate\":null,\"fixRateValue\":340,\"fix_rate_value\":340,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"485\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000451-SR-000007\",\"processing\":false,\"secondaryExternalCode\":\"90\",\"secondary_external_code\":\"90\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"516\",\"name\":\"PRODUCTOS DE CUIDADO PERSONAL Y DE LA SALUD DE BOLIVIA S.R.L.\",\"primary_external_code\":\"451\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2018-01-01 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000451-SR-000008 - Representacion Legal (FM)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000451-SR-000008\",\"finishedDate\":null,\"fixRateValue\":600,\"fix_rate_value\":600,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"486\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000451-SR-000008\",\"processing\":false,\"secondaryExternalCode\":\"91\",\"secondary_external_code\":\"91\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"516\",\"name\":\"PRODUCTOS DE CUIDADO PERSONAL Y DE LA SALUD DE BOLIVIA S.R.L.\",\"primary_external_code\":\"451\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-10-22 00:00:00\",\"confidential\":false,\"created_at\":\"2018-01-01 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000451-SR-000009 - Outsourcing contable (FM)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000451-SR-000009\",\"finishedDate\":null,\"fixRateValue\":1000,\"fix_rate_value\":1000,\"hourLimit\":4,\"hour_limit\":4,\"id\":\"487\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000451-SR-000009\",\"processing\":false,\"secondaryExternalCode\":\"92\",\"secondary_external_code\":\"92\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-10-22 15:07:19\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"cdelgado@emba.com\",\"enabled\":true,\"fullName\":\"Cristhian Delgado Ramirez\",\"id\":13,\"locale\":\"es\",\"shortName\":\"cdelgado\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"cdelgado@emba.com\"},\"customer\":{\"id\":\"516\",\"name\":\"PRODUCTOS DE CUIDADO PERSONAL Y DE LA SALUD DE BOLIVIA S.R.L.\",\"primary_external_code\":\"451\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"24\",\"externalCode\":\"AR05\",\"name\":\"Outsourcing\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-01-25 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000452-RE-000058 - APERTURA DE CUENTAS EN EL BANCO UNION EN MERITO A LA CIRCULAR N\\u00b0 118\\/2021 EMITIDA POR AGEMED\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000452-RE-000058\",\"finishedDate\":null,\"fixRateValue\":400,\"fix_rate_value\":400,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1010\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000452-RE-000058\",\"processing\":false,\"secondaryExternalCode\":\"3121\",\"secondary_external_code\":\"3121\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"495\",\"name\":\"Perfumeria Francesa (Bolivia) SRL\",\"primary_external_code\":\"452\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-07-31 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000452-RE-000085 - INSCRIPCI\\u00d3N DE NSO DUO LUMIERE DUO POUDRES ILLUMINATRICES\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000452-RE-000085\",\"finishedDate\":null,\"fixRateValue\":300,\"fix_rate_value\":300,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1012\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000452-RE-000085\",\"processing\":false,\"secondaryExternalCode\":\"4241\",\"secondary_external_code\":\"4241\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"495\",\"name\":\"Perfumeria Francesa (Bolivia) SRL\",\"primary_external_code\":\"452\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2023-10-24 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000452-RE-000126 - MODIFICACI\\u00d3N DE NSO N\\u00b01 DE CHANEL CREME RICHE REVITALISANTE AU CAMELIA ROUGE NSOC17863-22CO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000452-RE-000126\",\"finishedDate\":null,\"fixRateValue\":300,\"fix_rate_value\":300,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1014\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000452-RE-000126\",\"processing\":false,\"secondaryExternalCode\":\"4547\",\"secondary_external_code\":\"4547\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"495\",\"name\":\"Perfumeria Francesa (Bolivia) SRL\",\"primary_external_code\":\"452\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-20 00:00:00\",\"confidential\":false,\"created_at\":\"2022-01-11 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000451-RE-000057 - ALQUILER DE ALMACEN SEGUN REQUERIMIENTO DE AGEMED\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000451-RE-000057\",\"finishedDate\":null,\"fixRateValue\":280,\"fix_rate_value\":280,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1017\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"El monto deber\\u00e1 ser cobrado de forma mensual\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000451-RE-000057\",\"processing\":false,\"secondaryExternalCode\":\"3093\",\"secondary_external_code\":\"3093\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-20 19:37:14\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"516\",\"name\":\"PRODUCTOS DE CUIDADO PERSONAL Y DE LA SALUD DE BOLIVIA S.R.L.\",\"primary_external_code\":\"451\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-01-25 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000451-RE-000059 - APERTURA DE CUENTAS EN EL BANCO UNION EN MERITO A LA CIRCULAR N\\u00b0 118\\/2021 EMITIDA POR AGEMED\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000451-RE-000059\",\"finishedDate\":null,\"fixRateValue\":400,\"fix_rate_value\":400,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1018\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000451-RE-000059\",\"processing\":false,\"secondaryExternalCode\":\"3120\",\"secondary_external_code\":\"3120\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"516\",\"name\":\"PRODUCTOS DE CUIDADO PERSONAL Y DE LA SALUD DE BOLIVIA S.R.L.\",\"primary_external_code\":\"451\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-06-07 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000451-RE-000068 - RENOVACI\\u00d3N DE NSO JOHNSON\\u00b4S ACONDICIONADOR FRAGANCIA PROLONGADA NSOC47662-12CO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000451-RE-000068\",\"finishedDate\":null,\"fixRateValue\":250,\"fix_rate_value\":250,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1019\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000451-RE-000068\",\"processing\":false,\"secondaryExternalCode\":\"3417\",\"secondary_external_code\":\"3417\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"516\",\"name\":\"PRODUCTOS DE CUIDADO PERSONAL Y DE LA SALUD DE BOLIVIA S.R.L.\",\"primary_external_code\":\"451\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-05-02 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000451-RE-000080 - MODIFICACI\\u00d3N DE NSO LISTERINE ANTICARIES SIN ALCOHOL NSOC77596-21BO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000451-RE-000080\",\"finishedDate\":null,\"fixRateValue\":290,\"fix_rate_value\":290,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1021\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000451-RE-000080\",\"processing\":false,\"secondaryExternalCode\":\"4078\",\"secondary_external_code\":\"4078\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"516\",\"name\":\"PRODUCTOS DE CUIDADO PERSONAL Y DE LA SALUD DE BOLIVIA S.R.L.\",\"primary_external_code\":\"451\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-19 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-19 17:39:41\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000864-RE-000173 - Servicios Legales Mensuales por Horas (FM)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000864-RE-000173\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2333\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":null,\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"764\",\"name\":\"NUTRICIA EXPORT B.V.\",\"primary_external_code\":\"864\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-19 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-19 23:01:49\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000451-RE-000175 - MODIFICACI\\u00d3N DE NSO LISTERINE ANTICARIES ZERO ALCOHOL NSOC74757-16CO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000451-RE-000175\",\"finishedDate\":null,\"fixRateValue\":290,\"fix_rate_value\":290,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2339\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000451-RE-000175\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"516\",\"name\":\"PRODUCTOS DE CUIDADO PERSONAL Y DE LA SALUD DE BOLIVIA S.R.L.\",\"primary_external_code\":\"451\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-20 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-20 21:10:46\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000452-RE-000177 - HOMOLOGACI\\u00d3N SUBLIMAGE LE FLUIDE NSOC27089-23CO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000452-RE-000177\",\"finishedDate\":null,\"fixRateValue\":300,\"fix_rate_value\":300,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2347\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"100% al final\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000452-RE-000177\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"495\",\"name\":\"Perfumeria Francesa (Bolivia) SRL\",\"primary_external_code\":\"452\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-07 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-21 21:20:05\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000451-RE-000319 - HOMOLOGACI\\u00d3N NEUTROGENA SUNFRESH HYDRO BOOST FPS50+ COOR 2.0. NSOC26715-23CO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000451-RE-000319\",\"finishedDate\":null,\"fixRateValue\":290,\"fix_rate_value\":290,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2354\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"100% al final\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000451-RE-000319\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-07 03:32:43\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"516\",\"name\":\"PRODUCTOS DE CUIDADO PERSONAL Y DE LA SALUD DE BOLIVIA S.R.L.\",\"primary_external_code\":\"451\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-07 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-21 21:22:21\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000451-RE-000320 - MODIFICACI\\u00d3N DE NSO JOHNSON\\u00b4S BABY JABON CREMOSO NSOC11626-04CO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000451-RE-000320\",\"finishedDate\":null,\"fixRateValue\":290,\"fix_rate_value\":290,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2355\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"100% al final\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000451-RE-000320\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-07 03:33:21\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"516\",\"name\":\"PRODUCTOS DE CUIDADO PERSONAL Y DE LA SALUD DE BOLIVIA S.R.L.\",\"primary_external_code\":\"451\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-29 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-21 21:26:43\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000451-RE-000321 - MODIFICACI\\u00d3N DE NSO LISTERINE CONTROL CALCULO NSOC13163-04CO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000451-RE-000321\",\"finishedDate\":null,\"fixRateValue\":290,\"fix_rate_value\":290,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2356\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"100% al final\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000451-RE-000321\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"516\",\"name\":\"PRODUCTOS DE CUIDADO PERSONAL Y DE LA SALUD DE BOLIVIA S.R.L.\",\"primary_external_code\":\"451\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-07 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-21 21:42:39\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000451-RE-000326 - HOMOLOGACI\\u00d3N NEUTROGENA SUN FRESH HYDRO BOOST FPS 50 SIN COLOR NSOC26666-23CO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000451-RE-000326\",\"finishedDate\":null,\"fixRateValue\":290,\"fix_rate_value\":290,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2361\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"100% al final\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000451-RE-000326\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-07 03:17:22\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"516\",\"name\":\"PRODUCTOS DE CUIDADO PERSONAL Y DE LA SALUD DE BOLIVIA S.R.L.\",\"primary_external_code\":\"451\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-07 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-21 21:44:39\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000451-RE-000327 - HOMOLOGACI\\u00d3N JOHNSON\\u00b4S BABY DERMA PROTECT JABON NUTRITIVO NSOC25237-23CO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000451-RE-000327\",\"finishedDate\":null,\"fixRateValue\":290,\"fix_rate_value\":290,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2362\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"100% al final\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000451-RE-000327\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-07 03:18:04\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"516\",\"name\":\"PRODUCTOS DE CUIDADO PERSONAL Y DE LA SALUD DE BOLIVIA S.R.L.\",\"primary_external_code\":\"451\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-07 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-21 21:46:32\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000451-RE-000328 - HOMOLOGACI\\u00d3N JOHNSON\\u00b4S POLVO DE ALMIDON DERMOPROTECTOR NSOC26435-23CO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000451-RE-000328\",\"finishedDate\":null,\"fixRateValue\":290,\"fix_rate_value\":290,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2363\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"100% al final\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000451-RE-000328\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-07 03:18:44\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"516\",\"name\":\"PRODUCTOS DE CUIDADO PERSONAL Y DE LA SALUD DE BOLIVIA S.R.L.\",\"primary_external_code\":\"451\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-07 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-21 21:48:45\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000451-RE-000329 - RENOVACI\\u00d3N JOHNSON\\u00b4S HIDRATACI\\u00d3N INTENSA CREMA HIDRATANTE NSOC76769-17CO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000451-RE-000329\",\"finishedDate\":null,\"fixRateValue\":290,\"fix_rate_value\":290,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2364\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"100% al final\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000451-RE-000329\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-07 03:19:31\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"516\",\"name\":\"PRODUCTOS DE CUIDADO PERSONAL Y DE LA SALUD DE BOLIVIA S.R.L.\",\"primary_external_code\":\"451\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-29 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-21 21:55:59\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000451-RE-000330 - MODIFICACI\\u00d3N LISTERINE COOL MINT NSOC13153-04CO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000451-RE-000330\",\"finishedDate\":null,\"fixRateValue\":290,\"fix_rate_value\":290,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2365\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"100% al final\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000451-RE-000330\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"516\",\"name\":\"PRODUCTOS DE CUIDADO PERSONAL Y DE LA SALUD DE BOLIVIA S.R.L.\",\"primary_external_code\":\"451\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-07 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-21 22:03:38\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000452-RE-000331 - INSCRIPCI\\u00d3N DUO LUMIERE DUO POUDRES ILLUMINATRICES NSOC88406-24BO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000452-RE-000331\",\"finishedDate\":null,\"fixRateValue\":300,\"fix_rate_value\":300,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2366\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"100% al final\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000452-RE-000331\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-07 03:20:39\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"495\",\"name\":\"Perfumeria Francesa (Bolivia) SRL\",\"primary_external_code\":\"452\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-11 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:46\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000403-RE-000348 - ALLTEST-TENENCIA INTERLEUKIN-6 TEST KIT (CLIA) RI-5951\\/2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000403-RE-000348\",\"finishedDate\":null,\"fixRateValue\":387,\"fix_rate_value\":387,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2402\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000403-RE-000348\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"456\",\"name\":\"MMGC SRL\",\"primary_external_code\":\"403\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-11 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:46\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000403-RE-000349 - ALLTEST-TENENCIA D-DIMER TEST KIT (CLIA) REF. CI-DDM RI-5977\\/2024\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000403-RE-000349\",\"finishedDate\":null,\"fixRateValue\":387,\"fix_rate_value\":387,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2403\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000403-RE-000349\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"456\",\"name\":\"MMGC SRL\",\"primary_external_code\":\"403\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-11 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:46\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000403-RE-000350 - ALLTEST-TENENCIA CARDIAC TROPONIN-T (CTNT) TEST KIT (CLIA) RI-6028\\/2024\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000403-RE-000350\",\"finishedDate\":null,\"fixRateValue\":387,\"fix_rate_value\":387,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2404\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000403-RE-000350\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"456\",\"name\":\"MMGC SRL\",\"primary_external_code\":\"403\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-11 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:47\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000403-RE-000351 - ALLTEST -TENENCIA NOVATREND PLUS+DRY-TYPE FLUORESCENT IMMUNOASSAY ANALYZER CERT:2063\\/2024\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000403-RE-000351\",\"finishedDate\":null,\"fixRateValue\":387,\"fix_rate_value\":387,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2405\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000403-RE-000351\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"456\",\"name\":\"MMGC SRL\",\"primary_external_code\":\"403\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-11 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:47\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000403-RE-000352 - ALLTEST-TENENCIA N-TERMINAL PRO-B-TYPE NATRIURETIC PEPTIDE (NT-PROBNP) TEST KIT (CLIA) RI-6032\\/2024\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000403-RE-000352\",\"finishedDate\":null,\"fixRateValue\":387,\"fix_rate_value\":387,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2406\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000403-RE-000352\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"456\",\"name\":\"MMGC SRL\",\"primary_external_code\":\"403\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-11 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:47\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000403-RE-000353 - TONGZHOU-TENENCIA URINALYSIS REAGENT DIPSTICKS -MULTI PARAMETERS RI-5833\\/2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000403-RE-000353\",\"finishedDate\":null,\"fixRateValue\":387,\"fix_rate_value\":387,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2407\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000403-RE-000353\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"456\",\"name\":\"MMGC SRL\",\"primary_external_code\":\"403\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-11 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:47\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000403-RE-000354 - ALLTEST-TENENCIA URINALYSIS REAGENT STRIPS RI-5932\\/2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000403-RE-000354\",\"finishedDate\":null,\"fixRateValue\":387,\"fix_rate_value\":387,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2408\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000403-RE-000354\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"456\",\"name\":\"MMGC SRL\",\"primary_external_code\":\"403\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-11 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:47\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000403-RE-000355 - ALLTEST -TENECIA B-HUMAN CHORIONIC GONADOTROPIN (B-HCG) TEST KIT (CLIA) RI-5736\\/2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000403-RE-000355\",\"finishedDate\":null,\"fixRateValue\":387,\"fix_rate_value\":387,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2409\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000403-RE-000355\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"456\",\"name\":\"MMGC SRL\",\"primary_external_code\":\"403\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:49\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000361-RE-000410 - TENENCIA DABALASH NSOC51448-12CO \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000361-RE-000410\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2464\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000361-RE-000410\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"527\",\"name\":\"regulatory advisors S.A.S.\",\"primary_external_code\":\"361\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:49\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000361-RE-000411 - TENENCIA MASCARA DABA BY DABALASH VEGANO NSOC00725-20CO \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000361-RE-000411\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2465\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000361-RE-000411\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"527\",\"name\":\"regulatory advisors S.A.S.\",\"primary_external_code\":\"361\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:49\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000361-RE-000412 - TENENCIA MASCARA DABA BY DABALASH WATERPROOF NSOC00694-29CO \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000361-RE-000412\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2466\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000361-RE-000412\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"527\",\"name\":\"regulatory advisors S.A.S.\",\"primary_external_code\":\"361\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:49\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000509-RE-000417 - TENENCIA PSA OXYGEN GENERATOR 2 - COLUMN SYSTEM MODELOS: 0280, 01250, 0100 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000509-RE-000417\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2471\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000509-RE-000417\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"483\",\"name\":\"OXYMAT\",\"primary_external_code\":\"509\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:49\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000509-RE-000418 - TENENCIA PSA OXYGEN GENERATOR 2 - COLUMN SYSTEM MODELOS: 0640, 0430, 0190 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000509-RE-000418\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2472\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000509-RE-000418\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"483\",\"name\":\"OXYMAT\",\"primary_external_code\":\"509\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:49\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000509-RE-000419 - TENENCIA OXYGEN GENERATOR SYSTEM 2 - COLUMN SYSTEM MODELO. 060-3 (PALLET) \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000509-RE-000419\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2473\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000509-RE-000419\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"483\",\"name\":\"OXYMAT\",\"primary_external_code\":\"509\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-27 21:50:50\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000509-RE-000420 - TENECIA OXYGEN GENERATORBSYSTEM 2 - COLUMN SYSTEM MODEOS: 0200-3, 0200-4 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000509-RE-000420\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2474\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000509-RE-000420\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"483\",\"name\":\"OXYMAT\",\"primary_external_code\":\"509\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-29 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-29 15:25:53\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000451-RE-000494 - Modificaci\\u00f3n Listerine Cuidado Total NSOC27535-08CO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000451-RE-000494\",\"finishedDate\":null,\"fixRateValue\":290,\"fix_rate_value\":290,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2551\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000451-RE-000494\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"516\",\"name\":\"PRODUCTOS DE CUIDADO PERSONAL Y DE LA SALUD DE BOLIVIA S.R.L.\",\"primary_external_code\":\"451\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-29 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-29 19:07:40\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000403-RE-000496 - INSCRIPCI\\u00d3N Novatrend Plus Dry-Type Fluorescent Immunoassay Analyzer.AFR-600 CERT:2063\\/2024 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000403-RE-000496\",\"finishedDate\":null,\"fixRateValue\":405,\"fix_rate_value\":405,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2555\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"100% al final\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000403-RE-000496\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"456\",\"name\":\"MMGC SRL\",\"primary_external_code\":\"403\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-29 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-29 19:17:49\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000452-RE-000497 - HOMOLOGACI\\u00d3N DE NSO LA CREME MAIN NSOC27050-23CO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000452-RE-000497\",\"finishedDate\":null,\"fixRateValue\":300,\"fix_rate_value\":300,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2556\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"100% al final\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000452-RE-000497\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"495\",\"name\":\"Perfumeria Francesa (Bolivia) SRL\",\"primary_external_code\":\"452\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-29 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-29 21:08:45\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000451-RE-000500 - Cierre corporativo anual 2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000451-RE-000500\",\"finishedDate\":null,\"fixRateValue\":550,\"fix_rate_value\":550,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2560\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"100% al final\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000451-RE-000500\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"516\",\"name\":\"PRODUCTOS DE CUIDADO PERSONAL Y DE LA SALUD DE BOLIVIA S.R.L.\",\"primary_external_code\":\"451\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-01 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-01 15:26:45\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000403-RE-000518 - TENENCIA INTERLEVKIN-G (IL-G) TEST KIT (CLIA) REF.- CI-IL6 CON RS. ACO92-791-2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000403-RE-000518\",\"finishedDate\":null,\"fixRateValue\":387,\"fix_rate_value\":387,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2586\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000403-RE-000518\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-14 21:06:50\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"456\",\"name\":\"MMGC SRL\",\"primary_external_code\":\"403\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-04 22:22:04\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000403-RE-000559 - TENENCIA N\\u00b02125\\/2024 FIATEST FLUORESCENCE IMMUNO ASSAY ANALIZER. MOD.:AFR-100 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000403-RE-000559\",\"finishedDate\":null,\"fixRateValue\":387,\"fix_rate_value\":387,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2625\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000403-RE-000559\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-14 21:06:50\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"456\",\"name\":\"MMGC SRL\",\"primary_external_code\":\"403\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-18 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-18 19:05:08\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000403-RE-000601 - Inscripci\\u00f3n RI-6139\\/2024THYROID STIMULATING HORMONE (TSH) TEST KIT (CLIA) REF. CI-TSH\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000403-RE-000601\",\"finishedDate\":null,\"fixRateValue\":405,\"fix_rate_value\":405,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2713\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000403-RE-000601\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-18 21:28:57\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"456\",\"name\":\"MMGC SRL\",\"primary_external_code\":\"403\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-18 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-18 19:08:07\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000403-RE-000602 - Tenencia RI-6139\\/2024THYROID STIMULATING HORMONE (TSH) TEST KIT (CLIA) REF. CI-TSH\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000403-RE-000602\",\"finishedDate\":null,\"fixRateValue\":387,\"fix_rate_value\":387,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2714\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000403-RE-000602\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-18 21:29:44\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"456\",\"name\":\"MMGC SRL\",\"primary_external_code\":\"403\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-18 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-18 19:10:44\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000403-RE-000603 - Inscripci\\u00f3n RI-6143\\/2024 INFLUENZA A + B TEST CASSETTE (SWAB-NASAL ASPIRATE) REF. FI-FLU-502\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000403-RE-000603\",\"finishedDate\":null,\"fixRateValue\":405,\"fix_rate_value\":405,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2715\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000403-RE-000603\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-18 21:34:17\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"456\",\"name\":\"MMGC SRL\",\"primary_external_code\":\"403\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-18 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-18 19:24:09\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000403-RE-000604 - Tenencia RI-6143\\/2024 INFLUENZA A + B TEST CASSETTE (SWAB-NASAL ASPIRATE) REF. FI-FLU-502\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000403-RE-000604\",\"finishedDate\":null,\"fixRateValue\":387,\"fix_rate_value\":387,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2716\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000403-RE-000604\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-18 21:34:17\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"456\",\"name\":\"MMGC SRL\",\"primary_external_code\":\"403\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-18 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-18 19:31:21\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000403-RE-000605 - Inscripci\\u00f3n RI-6144\\/2024 \\u0392-HCG TEST CASSETTE (WHOLE BLOOD-SERUM-PLASMA) REF. FI-BHCG-402\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000403-RE-000605\",\"finishedDate\":null,\"fixRateValue\":405,\"fix_rate_value\":405,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2717\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000403-RE-000605\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-18 21:35:41\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"456\",\"name\":\"MMGC SRL\",\"primary_external_code\":\"403\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-18 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-18 19:43:42\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000403-RE-000606 - Tenencia RI-6144\\/2024 \\u0392-HCG TEST CASSETTE (WHOLE BLOOD-SERUM-PLASMA) REF. FI-BHCG-402\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000403-RE-000606\",\"finishedDate\":null,\"fixRateValue\":387,\"fix_rate_value\":387,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2718\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000403-RE-000606\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-18 21:35:42\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"456\",\"name\":\"MMGC SRL\",\"primary_external_code\":\"403\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-18 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-18 20:49:06\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000403-RE-000607 - Inscripci\\u00f3n RI-6135\\/2024 PROCALCITONIN (PCT) TEST KIT (CLIA) REF. CI-PCT\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000403-RE-000607\",\"finishedDate\":null,\"fixRateValue\":405,\"fix_rate_value\":405,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2719\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000403-RE-000607\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-18 21:38:03\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"456\",\"name\":\"MMGC SRL\",\"primary_external_code\":\"403\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-18 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-18 20:51:44\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000403-RE-000608 - Tenencia RI-6135\\/2024 PROCALCITONIN (PCT) TEST KIT (CLIA) REF. CI-PCT\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000403-RE-000608\",\"finishedDate\":null,\"fixRateValue\":387,\"fix_rate_value\":387,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2720\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000403-RE-000608\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-18 21:38:03\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"456\",\"name\":\"MMGC SRL\",\"primary_external_code\":\"403\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-18 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-18 21:08:04\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000451-RE-000613 - Modificaci\\u00f3n NSOC43171-11CO LISTERINE COOL MINT ZERO ALCOHOL\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000451-RE-000613\",\"finishedDate\":null,\"fixRateValue\":290,\"fix_rate_value\":290,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2725\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000451-RE-000613\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-28 21:11:44\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"516\",\"name\":\"PRODUCTOS DE CUIDADO PERSONAL Y DE LA SALUD DE BOLIVIA S.R.L.\",\"primary_external_code\":\"451\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-18 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-18 21:11:16\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000451-RE-000614 - Renovaci\\u00f3n NSOC76771-17CO JOHNSON\\u00b4S BA\\u00d1O LIQUIDO HIDRATACI\\u00d3N INTENSA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000451-RE-000614\",\"finishedDate\":null,\"fixRateValue\":290,\"fix_rate_value\":290,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2726\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000451-RE-000614\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-28 21:10:37\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"516\",\"name\":\"PRODUCTOS DE CUIDADO PERSONAL Y DE LA SALUD DE BOLIVIA S.R.L.\",\"primary_external_code\":\"451\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-18 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-18 21:26:17\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000452-RE-000618 - Modificaci\\u00f3n NSOC62210-17BO EGOISTE EAU DE TOILETTE\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000452-RE-000618\",\"finishedDate\":null,\"fixRateValue\":300,\"fix_rate_value\":300,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2730\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000452-RE-000618\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-28 20:52:41\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"495\",\"name\":\"Perfumeria Francesa (Bolivia) SRL\",\"primary_external_code\":\"452\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-01 00:00:00\",\"confidential\":false,\"created_at\":\"2024-04-01 18:11:08\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000451-RE-000642 - RENOVACI\\u00d3N DI-51498\\/2024 COTONETES\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000451-RE-000642\",\"finishedDate\":null,\"fixRateValue\":290,\"fix_rate_value\":290,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2771\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000451-RE-000642\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-01 21:59:18\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"516\",\"name\":\"PRODUCTOS DE CUIDADO PERSONAL Y DE LA SALUD DE BOLIVIA S.R.L.\",\"primary_external_code\":\"451\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-01 00:00:00\",\"confidential\":false,\"created_at\":\"2024-04-01 21:29:54\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000452-RE-000643 - Cierre corporativo anual 2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000452-RE-000643\",\"finishedDate\":null,\"fixRateValue\":1320,\"fix_rate_value\":1320,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2780\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000452-RE-000643\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-01 22:06:24\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"495\",\"name\":\"Perfumeria Francesa (Bolivia) SRL\",\"primary_external_code\":\"452\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-05-08 00:00:00\",\"confidential\":false,\"created_at\":\"2024-04-23 14:53:54\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000977-SC-000971 - Servicios Legales integrales por hora\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000977-SC-000971\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2833\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":null,\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-08 17:36:11\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2012-05-08 14:49:53\",\"daysAllow\":302,\"email\":\"ihurtado@emba.com\",\"enabled\":true,\"fullName\":\"Ingrid Hurtado\",\"id\":1,\"locale\":\"es\",\"shortName\":\"ihurtado\",\"superAdmin\":true,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":0,\"username\":\"ihurtado@emba.com\"},\"customer\":{\"id\":\"875\",\"name\":\"PRUEBAS 2304\",\"primary_external_code\":\"977\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-05-28 00:00:00\",\"confidential\":false,\"created_at\":\"2024-04-23 16:10:27\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000975-BK-000363 - TEST REGISTRO RAPIDO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000975-BK-000363\",\"finishedDate\":\"2024-05-28 00:00:00\",\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2834\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000975-BK-000363\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"finished\",\"updated_at\":\"2024-05-28 16:46:33\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2021-05-11 23:40:08\",\"daysAllow\":302,\"email\":\"pcorredor26@gmail.com\",\"enabled\":true,\"fullName\":\"AMTM Pruebas\",\"id\":77,\"locale\":\"es\",\"shortName\":\"AM\",\"superAdmin\":true,\"updated_at\":\"2025-07-21 10:12:54\",\"userType\":1,\"username\":\"pcorredor26@gmail.com\"},\"customer\":{\"id\":\"873\",\"name\":\"Test Reg. Rapido\",\"primary_external_code\":\"975\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-07-17 00:00:00\",\"confidential\":false,\"created_at\":\"2024-04-30 14:54:24\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000975-RE-000682 - Prueba monto fijo vac\\u00edo\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000975-RE-000682\",\"finishedDate\":null,\"fixRateValue\":500,\"fix_rate_value\":500,\"hourLimit\":20,\"hour_limit\":20,\"id\":\"2835\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":25,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000975-RE-000682\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"billed\",\"updated_at\":\"2024-07-17 16:07:56\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2021-05-11 23:40:08\",\"daysAllow\":302,\"email\":\"pcorredor26@gmail.com\",\"enabled\":true,\"fullName\":\"AMTM Pruebas\",\"id\":77,\"locale\":\"es\",\"shortName\":\"AM\",\"superAdmin\":true,\"updated_at\":\"2025-07-21 10:12:54\",\"userType\":1,\"username\":\"pcorredor26@gmail.com\"},\"customer\":{\"id\":\"873\",\"name\":\"Test Reg. Rapido\",\"primary_external_code\":\"975\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-05-09 00:00:00\",\"confidential\":false,\"created_at\":\"2024-05-09 17:02:02\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000978-RE-000683 - TEST REGISTRO RAPIDO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000978-RE-000683\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2836\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000978-RE-000683\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-09 17:23:11\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2021-05-11 23:40:08\",\"daysAllow\":70,\"email\":\"nicoln042001@gmail.com\",\"enabled\":true,\"fullName\":\"Soporte QA timekeeper\",\"id\":87,\"locale\":\"es\",\"shortName\":\"QA\",\"superAdmin\":false,\"updated_at\":\"2025-04-07 12:03:19\",\"userType\":1,\"username\":\"nicoln042001@gmail.com\"},\"customer\":{\"id\":\"876\",\"name\":\"TEST REGISTRO RAPIDO\",\"primary_external_code\":\"978\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-05-09 00:00:00\",\"confidential\":false,\"created_at\":\"2024-05-09 17:24:50\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000978-RE-000684 - PERMANENCIA DE TRES A\\u00d1OS CON CONTRATO EXTRANJERO- STEFAN MICHAEL KOSEL\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000978-RE-000684\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2837\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000978-RE-000684\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-09 17:27:43\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"aaraoz@emba.com\",\"enabled\":true,\"fullName\":\"Alvaro Araoz Ardaya\",\"id\":17,\"locale\":\"es\",\"shortName\":\"aaraoz\",\"superAdmin\":false,\"updated_at\":\"2024-12-04 15:29:19\",\"userType\":1,\"username\":\"aaraoz@emba.com\"},\"customer\":{\"id\":\"876\",\"name\":\"TEST REGISTRO RAPIDO\",\"primary_external_code\":\"978\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-05-09 00:00:00\",\"confidential\":false,\"created_at\":\"2024-05-09 17:25:33\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000978-RE-000685 - Test Any prueba\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000978-RE-000685\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2838\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000978-RE-000685\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-09 17:25:59\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"aaraoz@emba.com\",\"enabled\":true,\"fullName\":\"Alvaro Araoz Ardaya\",\"id\":17,\"locale\":\"es\",\"shortName\":\"aaraoz\",\"superAdmin\":false,\"updated_at\":\"2024-12-04 15:29:19\",\"userType\":1,\"username\":\"aaraoz@emba.com\"},\"customer\":{\"id\":\"876\",\"name\":\"TEST REGISTRO RAPIDO\",\"primary_external_code\":\"978\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-05-09 00:00:00\",\"confidential\":false,\"created_at\":\"2024-05-09 17:30:49\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000978-BK-000364 - REGISTRO RAPIDOA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000978-BK-000364\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2839\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000978-BK-000364\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-09 17:31:38\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2021-05-11 23:40:08\",\"daysAllow\":70,\"email\":\"nicoln042001@gmail.com\",\"enabled\":true,\"fullName\":\"Soporte QA timekeeper\",\"id\":87,\"locale\":\"es\",\"shortName\":\"QA\",\"superAdmin\":false,\"updated_at\":\"2025-04-07 12:03:19\",\"userType\":1,\"username\":\"nicoln042001@gmail.com\"},\"customer\":{\"id\":\"876\",\"name\":\"TEST REGISTRO RAPIDO\",\"primary_external_code\":\"978\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-05-10 00:00:00\",\"confidential\":false,\"created_at\":\"2024-05-10 19:11:55\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000982-SR-001169 - PRUEBAS 10MAYO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000982-SR-001169\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2840\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000982-SR-001169\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2025-03-10 14:21:24\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2012-05-08 14:49:53\",\"daysAllow\":302,\"email\":\"ihurtado@emba.com\",\"enabled\":true,\"fullName\":\"Ingrid Hurtado\",\"id\":1,\"locale\":\"es\",\"shortName\":\"ihurtado\",\"superAdmin\":true,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":0,\"username\":\"ihurtado@emba.com\"},\"customer\":{\"id\":\"880\",\"name\":\"AM PCORREDOR\",\"primary_external_code\":\"982\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-05-10 00:00:00\",\"confidential\":false,\"created_at\":\"2024-05-10 20:03:24\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000983-RE-000686 - Servicios Legales integrales por hora\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000983-RE-000686\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2841\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":null,\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"pending_completion\",\"updated_at\":\"2024-05-10 20:03:24\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2012-05-08 14:49:53\",\"daysAllow\":302,\"email\":\"ihurtado@emba.com\",\"enabled\":true,\"fullName\":\"Ingrid Hurtado\",\"id\":1,\"locale\":\"es\",\"shortName\":\"ihurtado\",\"superAdmin\":true,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":0,\"username\":\"ihurtado@emba.com\"},\"customer\":{\"id\":\"881\",\"name\":\"cyzone\",\"primary_external_code\":\"983\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-05-28 00:00:00\",\"confidential\":false,\"created_at\":\"2024-05-28 22:00:10\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000975-BK-000365 - test\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000975-BK-000365\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2849\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000975-BK-000365\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-28 22:01:39\",\"withIVA\":true,\"responsible\":null,\"customer\":{\"id\":\"873\",\"name\":\"Test Reg. Rapido\",\"primary_external_code\":\"975\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-05-29 00:00:00\",\"confidential\":false,\"created_at\":\"2024-05-29 21:43:55\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000992-RE-000690 - Test Any prueba\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000992-RE-000690\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2850\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000992-RE-000690\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-29 21:43:56\",\"withIVA\":true,\"responsible\":null,\"customer\":{\"id\":\"890\",\"name\":\"CLIENTE NUEVO\",\"primary_external_code\":\"992\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-07-18 00:00:00\",\"confidential\":false,\"created_at\":\"2024-07-18 12:30:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"001002-BK-000366 - prueba roles y usuarios\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"001002-BK-000366\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2852\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":null,\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-07-18 12:48:05\",\"withIVA\":true,\"responsible\":null,\"customer\":{\"id\":\"900\",\"name\":\"prueba roles y usuarios\",\"primary_external_code\":\"1002\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-07-23 00:00:00\",\"confidential\":false,\"created_at\":\"2024-07-23 13:37:44\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000986-RE-000691 - Procesos Internos\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000986-RE-000691\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2853\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":null,\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-07-23 13:38:11\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2021-05-11 23:40:08\",\"daysAllow\":302,\"email\":\"pcorredor26@gmail.com\",\"enabled\":true,\"fullName\":\"AMTM Pruebas\",\"id\":77,\"locale\":\"es\",\"shortName\":\"AM\",\"superAdmin\":true,\"updated_at\":\"2025-07-21 10:12:54\",\"userType\":1,\"username\":\"pcorredor26@gmail.com\"},\"customer\":{\"id\":\"884\",\"name\":\"Cliente Openatlas.com\",\"primary_external_code\":\"986\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"2\",\"externalCode\":\"AR04\",\"name\":\"Arbitraje\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-08-26 00:00:00\",\"confidential\":false,\"created_at\":\"2024-08-26 20:14:13\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000240-RE-000697 - Test Any prueba\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000240-RE-000697\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2866\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":null,\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-08-26 20:14:13\",\"withIVA\":true,\"responsible\":null,\"customer\":{\"id\":\"1\",\"name\":\"360 consulting group\",\"primary_external_code\":\"240\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"2\",\"externalCode\":\"AR04\",\"name\":\"Arbitraje\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-08-29 00:00:00\",\"confidential\":false,\"created_at\":\"2024-08-29 09:33:01\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000240-BK-000374 - prueba alertas\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000240-BK-000374\",\"finishedDate\":null,\"fixRateValue\":10000,\"fix_rate_value\":10000,\"hourLimit\":10,\"hour_limit\":10,\"id\":\"2867\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":50,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":null,\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"approved\",\"updated_at\":\"2024-08-29 18:29:39\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2021-05-11 23:40:08\",\"daysAllow\":70,\"email\":\"nicoln042001@gmail.com\",\"enabled\":true,\"fullName\":\"Soporte QA timekeeper\",\"id\":87,\"locale\":\"es\",\"shortName\":\"QA\",\"superAdmin\":false,\"updated_at\":\"2025-04-07 12:03:19\",\"userType\":1,\"username\":\"nicoln042001@gmail.com\"},\"customer\":{\"id\":\"1\",\"name\":\"360 consulting group\",\"primary_external_code\":\"240\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-08-29 00:00:00\",\"confidential\":false,\"created_at\":\"2024-08-29 09:36:27\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000240-BK-000375 - prueba alertas monto fijo mes\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000240-BK-000375\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":3,\"hour_limit\":3,\"id\":\"2868\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":null,\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-09-04 19:47:55\",\"withIVA\":true,\"responsible\":null,\"customer\":{\"id\":\"1\",\"name\":\"360 consulting group\",\"primary_external_code\":\"240\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":\"\",\"caseNumber\":\"\",\"closed_date\":null,\"confidential\":false,\"created_at\":\"2024-08-29 14:47:30\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"12133 - prueba alertas\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"12133\",\"finishedDate\":\"2024-08-29 00:00:00\",\"fixRateValue\":10000,\"fix_rate_value\":10000,\"hourLimit\":3,\"hour_limit\":3,\"id\":\"2869\",\"internal_code\":\"\",\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":null,\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-08-29 14:47:30\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2021-05-11 23:40:08\",\"daysAllow\":70,\"email\":\"nicoln042001@gmail.com\",\"enabled\":true,\"fullName\":\"Soporte QA timekeeper\",\"id\":87,\"locale\":\"es\",\"shortName\":\"QA\",\"superAdmin\":false,\"updated_at\":\"2025-04-07 12:03:19\",\"userType\":1,\"username\":\"nicoln042001@gmail.com\"},\"customer\":{\"id\":\"1\",\"name\":\"360 consulting group\",\"primary_external_code\":\"240\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":\"\",\"caseNumber\":\"\",\"closed_date\":null,\"confidential\":false,\"created_at\":\"2024-08-29 15:20:48\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"1234567 - prueba alertas monto fijo mes\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"1234567\",\"finishedDate\":null,\"fixRateValue\":10000,\"fix_rate_value\":10000,\"hourLimit\":3,\"hour_limit\":3,\"id\":\"2870\",\"internal_code\":\"\",\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":null,\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-08-29 15:20:48\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2021-05-11 23:40:08\",\"daysAllow\":70,\"email\":\"nicoln042001@gmail.com\",\"enabled\":true,\"fullName\":\"Soporte QA timekeeper\",\"id\":87,\"locale\":\"es\",\"shortName\":\"QA\",\"superAdmin\":false,\"updated_at\":\"2025-04-07 12:03:19\",\"userType\":1,\"username\":\"nicoln042001@gmail.com\"},\"customer\":{\"id\":\"1\",\"name\":\"360 consulting group\",\"primary_external_code\":\"240\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2025-06-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-08-29 18:35:24\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000240-BK-000376 - prueba limites\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000240-BK-000376\",\"finishedDate\":null,\"fixRateValue\":15000,\"fix_rate_value\":15000,\"hourLimit\":4,\"hour_limit\":4,\"id\":\"2871\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":100,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":null,\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2025-06-12 11:37:12\",\"withIVA\":true,\"responsible\":null,\"customer\":{\"id\":\"1\",\"name\":\"360 consulting group\",\"primary_external_code\":\"240\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2025-03-13 00:00:00\",\"confidential\":false,\"created_at\":\"2024-08-29 18:38:36\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000240-RE-000698 - prueba limites porcentaje\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000240-RE-000698\",\"finishedDate\":null,\"fixRateValue\":15000,\"fix_rate_value\":15000,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2872\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":0,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000240-RE-000698\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2025-03-13 15:15:41\",\"withIVA\":true,\"responsible\":null,\"customer\":{\"id\":\"1\",\"name\":\"360 consulting group\",\"primary_external_code\":\"240\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"5\",\"externalCode\":\"AR02\",\"name\":\"Der.Civil \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-08-29 00:00:00\",\"confidential\":false,\"created_at\":\"2024-08-29 18:47:39\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000240-BK-000377 - prueba monto fijo mensual alertas\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000240-BK-000377\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":3,\"hour_limit\":3,\"id\":\"2873\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":null,\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-08-29 18:47:39\",\"withIVA\":true,\"responsible\":null,\"customer\":{\"id\":\"1\",\"name\":\"360 consulting group\",\"primary_external_code\":\"240\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":\"\",\"caseNumber\":null,\"closed_date\":\"2024-08-29 00:00:00\",\"confidential\":false,\"created_at\":\"2024-08-29 18:57:31\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000240000699 - prueba porcentaje limite m.mensual\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000240000699\",\"finishedDate\":\"2024-08-29 00:00:00\",\"fixRateValue\":10000,\"fix_rate_value\":10000,\"hourLimit\":3,\"hour_limit\":3,\"id\":\"2874\",\"internal_code\":\"\",\"isBillable\":true,\"limitAlert\":50,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":null,\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-09-04 19:48:58\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2021-05-11 23:40:08\",\"daysAllow\":70,\"email\":\"nicoln042001@gmail.com\",\"enabled\":true,\"fullName\":\"Soporte QA timekeeper\",\"id\":87,\"locale\":\"es\",\"shortName\":\"QA\",\"superAdmin\":false,\"updated_at\":\"2025-04-07 12:03:19\",\"userType\":1,\"username\":\"nicoln042001@gmail.com\"},\"customer\":{\"id\":\"1\",\"name\":\"360 consulting group\",\"primary_external_code\":\"240\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-09-09 00:00:00\",\"confidential\":false,\"created_at\":\"2024-09-09 15:00:22\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000240-RE-000704 - prueba sin limite de alertas\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000240-RE-000704\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2880\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000240-RE-000704\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-09-09 15:00:33\",\"withIVA\":true,\"responsible\":null,\"customer\":{\"id\":\"1\",\"name\":\"360 consulting group\",\"primary_external_code\":\"240\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-09-09 00:00:00\",\"confidential\":false,\"created_at\":\"2024-09-09 15:19:09\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000240-RE-000705 - ASUNTO PENDIENTE\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000240-RE-000705\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":3,\"hour_limit\":3,\"id\":\"2881\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":null,\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"pending_completion\",\"updated_at\":\"2024-09-09 16:34:59\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"nicoln042001@gmail.com\",\"enabled\":true,\"fullName\":\"Daniel Marcelo Arredondo Zelada\",\"id\":6,\"locale\":\"es\",\"shortName\":\"darredon\",\"superAdmin\":false,\"updated_at\":\"2024-09-03 11:43:07\",\"userType\":1,\"username\":\"darredondo@emba.com.bo\"},\"customer\":{\"id\":\"1\",\"name\":\"360 consulting group\",\"primary_external_code\":\"240\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2025-03-17 00:00:00\",\"confidential\":false,\"created_at\":\"2024-09-09 15:56:55\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000240-SC-000972 - ASUNTO PENDIENTE M.FIJO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000240-SC-000972\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":3,\"hour_limit\":3,\"id\":\"2882\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":null,\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2025-03-17 16:12:10\",\"withIVA\":true,\"responsible\":null,\"customer\":{\"id\":\"1\",\"name\":\"360 consulting group\",\"primary_external_code\":\"240\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-09-09 00:00:00\",\"confidential\":false,\"created_at\":\"2024-09-09 16:28:10\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000240-BK-000378 - ASUNTO PENDIENTE M.FIJO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000240-BK-000378\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":3,\"hour_limit\":3,\"id\":\"2883\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":null,\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"pending_completion\",\"updated_at\":\"2024-09-09 16:28:10\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"nicoln042001@gmail.com\",\"enabled\":true,\"fullName\":\"Daniel Marcelo Arredondo Zelada\",\"id\":6,\"locale\":\"es\",\"shortName\":\"darredon\",\"superAdmin\":false,\"updated_at\":\"2024-09-03 11:43:07\",\"userType\":1,\"username\":\"darredondo@emba.com.bo\"},\"customer\":{\"id\":\"1\",\"name\":\"360 consulting group\",\"primary_external_code\":\"240\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-09-23 00:00:00\",\"confidential\":false,\"created_at\":\"2024-09-23 15:47:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000403-RE-000715 - Test Any prueba\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000403-RE-000715\",\"finishedDate\":null,\"fixRateValue\":1,\"fix_rate_value\":1,\"hourLimit\":3,\"hour_limit\":3,\"id\":\"2894\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":0,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000403-RE-000715\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-09-23 15:47:01\",\"withIVA\":true,\"responsible\":null,\"customer\":{\"id\":\"456\",\"name\":\"MMGC SRL\",\"primary_external_code\":\"403\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"14\",\"externalCode\":null,\"name\":\"Der. de la Competencia\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-10-04 00:00:00\",\"confidential\":false,\"created_at\":\"2024-09-23 16:38:35\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000509-RE-000717 - ANY PRUEBA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000509-RE-000717\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":20,\"hour_limit\":20,\"id\":\"2898\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000509-RE-000717\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-10-04 19:13:57\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"atejerina@emba.com\",\"enabled\":true,\"fullName\":\"Andre Luis Tejerina Queiroz\",\"id\":25,\"locale\":\"es\",\"shortName\":\"atejerin\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"atejerina@emba.com\"},\"customer\":{\"id\":\"483\",\"name\":\"OXYMAT\",\"primary_external_code\":\"509\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-09-25 00:00:00\",\"confidential\":false,\"created_at\":\"2024-09-23 16:52:36\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000452-RE-000718 - Freetest Any\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000452-RE-000718\",\"finishedDate\":null,\"fixRateValue\":1000,\"fix_rate_value\":1000,\"hourLimit\":10,\"hour_limit\":10,\"id\":\"2899\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":100,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000452-RE-000718\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"to_be_approved\",\"updated_at\":\"2024-09-25 16:31:16\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2021-05-11 23:40:08\",\"daysAllow\":302,\"email\":\"pcorredor26@gmail.com\",\"enabled\":true,\"fullName\":\"AMTM Pruebas\",\"id\":77,\"locale\":\"es\",\"shortName\":\"AM\",\"superAdmin\":true,\"updated_at\":\"2025-07-21 10:12:54\",\"userType\":1,\"username\":\"pcorredor26@gmail.com\"},\"customer\":{\"id\":\"495\",\"name\":\"Perfumeria Francesa (Bolivia) SRL\",\"primary_external_code\":\"452\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-09-25 00:00:00\",\"confidential\":false,\"created_at\":\"2024-09-25 16:55:08\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000509-SC-000978 - Test Any prueba\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000509-SC-000978\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":10,\"hour_limit\":10,\"id\":\"2906\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":null,\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-09-30 17:56:11\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:16\",\"daysAllow\":302,\"email\":\"aloayza@emba.com\",\"enabled\":true,\"fullName\":\"Ana Luz Loayza\",\"id\":51,\"locale\":\"es\",\"shortName\":\"aloayza\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"aloayza@emba.com\"},\"customer\":{\"id\":\"483\",\"name\":\"OXYMAT\",\"primary_external_code\":\"509\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"6\",\"externalCode\":\"AR17\",\"name\":\"Der.Comercial \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-09-25 00:00:00\",\"confidential\":false,\"created_at\":\"2024-09-25 17:04:27\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000509-RE-000722 - Any prueba3\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000509-RE-000722\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":10,\"hour_limit\":10,\"id\":\"2907\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000509-RE-000722\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2025-03-27 14:42:56\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":27,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"483\",\"name\":\"OXYMAT\",\"primary_external_code\":\"509\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"3\",\"externalCode\":null,\"name\":\"Back Office\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-10-02 00:00:00\",\"confidential\":false,\"created_at\":\"2024-10-02 16:58:45\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000509-RE-000729 - pruebasxMontofijomensual\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000509-RE-000729\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2915\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000509-RE-000729\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-10-04 15:17:25\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"aaraoz@emba.com\",\"enabled\":true,\"fullName\":\"Alvaro Araoz Ardaya\",\"id\":17,\"locale\":\"es\",\"shortName\":\"aaraoz\",\"superAdmin\":false,\"updated_at\":\"2024-12-04 15:29:19\",\"userType\":1,\"username\":\"aaraoz@emba.com\"},\"customer\":{\"id\":\"483\",\"name\":\"OXYMAT\",\"primary_external_code\":\"509\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-10-02 00:00:00\",\"confidential\":false,\"created_at\":\"2024-10-02 17:09:35\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000509-RE-000730 - pruebasxMontofijomensual\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000509-RE-000730\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2916\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000509-RE-000730\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-10-02 17:09:49\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2024-02-08 00:16:01\",\"daysAllow\":302,\"email\":\"ckaegui@emba.com\",\"enabled\":true,\"fullName\":\"Camila Kaegui\",\"id\":75,\"locale\":\"es\",\"shortName\":\"ckaegui\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"ckaegui@emba.com\"},\"customer\":{\"id\":\"483\",\"name\":\"OXYMAT\",\"primary_external_code\":\"509\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-10-02 00:00:00\",\"confidential\":false,\"created_at\":\"2024-10-02 17:18:37\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000452-RE-000731 - pruebasxmontofijoxasunto\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000452-RE-000731\",\"finishedDate\":null,\"fixRateValue\":4000,\"fix_rate_value\":4000,\"hourLimit\":5,\"hour_limit\":5,\"id\":\"2917\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":50,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000452-RE-000731\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"approved\",\"updated_at\":\"2024-10-02 22:20:49\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"aaraoz@emba.com\",\"enabled\":true,\"fullName\":\"Alvaro Araoz Ardaya\",\"id\":17,\"locale\":\"es\",\"shortName\":\"aaraoz\",\"superAdmin\":false,\"updated_at\":\"2024-12-04 15:29:19\",\"userType\":1,\"username\":\"aaraoz@emba.com\"},\"customer\":{\"id\":\"495\",\"name\":\"Perfumeria Francesa (Bolivia) SRL\",\"primary_external_code\":\"452\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-10-03 00:00:00\",\"confidential\":false,\"created_at\":\"2024-10-03 12:11:06\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000509-RE-000734 - PRUEBA MONTO FIJO MENSUAL 2\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000509-RE-000734\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2922\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000509-RE-000734\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-10-03 12:11:13\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"aaraoz@emba.com\",\"enabled\":true,\"fullName\":\"Alvaro Araoz Ardaya\",\"id\":17,\"locale\":\"es\",\"shortName\":\"aaraoz\",\"superAdmin\":false,\"updated_at\":\"2024-12-04 15:29:19\",\"userType\":1,\"username\":\"aaraoz@emba.com\"},\"customer\":{\"id\":\"483\",\"name\":\"OXYMAT\",\"primary_external_code\":\"509\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-11-20 00:00:00\",\"confidential\":false,\"created_at\":\"2024-11-20 12:04:54\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000864-SR-001175 - Proceso Infracci\\u00f3n a Leyes Sociales\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000864-SR-001175\",\"finishedDate\":null,\"fixRateValue\":40,\"fix_rate_value\":40,\"hourLimit\":1000,\"hour_limit\":1000,\"id\":\"2934\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":75,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000864-SR-001175\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-11-20 12:05:24\",\"withIVA\":false,\"responsible\":null,\"customer\":{\"id\":\"764\",\"name\":\"NUTRICIA EXPORT B.V.\",\"primary_external_code\":\"864\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"9\",\"externalCode\":\"AR20\",\"name\":\"Contrataci\\u00f3n P\\u00fablica\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-12-13 00:00:00\",\"confidential\":false,\"created_at\":\"2024-12-13 10:48:26\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"001025-RE-000745 - Transferencia de Cuotas y Activos\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"001025-RE-000745\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2938\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":null,\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-12-13 10:50:06\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2021-05-11 23:40:08\",\"daysAllow\":302,\"email\":\"pcorredor26@gmail.com\",\"enabled\":true,\"fullName\":\"AMTM Pruebas\",\"id\":77,\"locale\":\"es\",\"shortName\":\"AM\",\"superAdmin\":true,\"updated_at\":\"2025-07-21 10:12:54\",\"userType\":1,\"username\":\"pcorredor26@gmail.com\"},\"customer\":{\"id\":\"923\",\"name\":\"NAVIDAD\",\"primary_external_code\":\"1025\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-12-13 00:00:00\",\"confidential\":false,\"created_at\":\"2024-12-13 11:23:47\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"001026-RE-000746 - Servicios Legales integrales por hora\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"001026-RE-000746\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2939\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":null,\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-12-13 11:28:14\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2021-05-11 23:40:08\",\"daysAllow\":302,\"email\":\"pcorredor26@gmail.com\",\"enabled\":true,\"fullName\":\"AMTM Pruebas\",\"id\":77,\"locale\":\"es\",\"shortName\":\"AM\",\"superAdmin\":true,\"updated_at\":\"2025-07-21 10:12:54\",\"userType\":1,\"username\":\"pcorredor26@gmail.com\"},\"customer\":{\"id\":\"924\",\"name\":\"BILBAO\",\"primary_external_code\":\"1026\",\"company\":{\"id\":\"1\",\"name\":\"MB SERVICIOS REGULATORIOS S.R.L.\"}},\"practiceArea\":{\"id\":\"2\",\"externalCode\":\"AR04\",\"name\":\"Arbitraje\"}}]}}}\n","time":"2025-07-30T10:50:36-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: POST https://apinewtm.com/graphql/\nHeaders: map[Accept:[application/json] Authorization:[Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJpYXQiOjE3NTM4ODY1MjIsImV4cCI6MTc1Mzk2NjUyMiwiaWQiOjEwNSwidXNlcm5hbWUiOiJpbnRlZ3JhY2lvbmVzQGVtYmEuYm8iLCJhcGlrZXkiOiI5Yzg0ZjYzZTRlMzk2ZGZmOWU5ZjU3NDI5OGRmZWUzOSIsImFwaWtleUNyZWF0ZWRBdCI6eyJkYXRlIjoiMjAyNS0wNy0xNyAxMDo0MToyNS4wMDAwMDAiLCJ0aW1lem9uZV90eXBlIjozLCJ0aW1lem9uZSI6IkFtZXJpY2EvQm9nb3RhIn0sImZ1bGxOYW1lIjoiSW50ZWdyYWNpw7NuIEVNQkEiLCJlbWFpbCI6ImludGVncmFjaW9uZXNAZW1iYS5ibyIsImxvY2FsZSI6ImVzIiwiZGF5c0FsbG93ZWQiOjMwLCJpc0Nvb3JkaW5hdG9yIjpmYWxzZSwidHlwZVRhc2tWaWV3IjoibGlzdHMiLCJkYXlzYWxsb3ciOjMwLCJyb2xlcyI6e30sInNob3J0X25hbWUiOiJJTi5FTUJBIiwicGVybWlzc2lvbnMiOlsic3luY19leHRlcm5hbF9idXNpbmVzcyIsInN5bmNfZXh0ZXJuYWxfY3VzdG9tZXIiLCJzeW5jX2V4dGVybmFsX21pbGVzdG9uZSIsImFic2VuY2VfYXBwcm92ZSIsImFic2VuY2VfY3JlYXRlX2FsbCIsImFic2VuY2VfY3JlYXRlX293biIsImFic2VuY2VfbWVudSIsImFjY291bnRpbmdfYnVzaW5lc3NfbGlzdCIsImFjY291bnRpbmdfY3VzdG9tZXJfbGlzdCIsImJpbGxpbmdfcGVyaW9kX2RlbGV0ZV9hbGwiLCJiaWxsaW5nX3BlcmlvZF9lZGl0X2FsbCIsImJpbGxpbmdfcGVyaW9kX2xpc3QiLCJiaWxsaW5nX3BlcmlvZF9yZWFjdGl2YXRlIiwiYm9hcmRfcmF0ZV91c2VyX2NyZWF0ZSIsImJvYXJkX3JhdGVfdXNlcl9lZGl0IiwiYnVzaW5lc3NfY3JlYXRlIiwiYnVzaW5lc3NfZGVzY3JpcHRpb25fc2F2ZSIsImJ1c2luZXNzX2VkaXQiLCJidXNpbmVzc19saXN0X2FsbCIsImJ1c2luZXNzX21lbnUiLCJidXNpbmVzc19yZXNwb25zaWJsZV9saXN0X2FsbCIsImJ1c2luZXNzX3NlZV9iaWxsaW5nX2luZm8iLCJidXNpbmVzc2VzX2FsbG93ZWRfdXNlcl9jcmVhdGUiLCJidXNpbmVzc2VzX2FsbG93ZWRfdXNlcl9kZWxldGUiLCJjb21wYW55X2Rpc2FibGUiLCJjb21wYW55X2VkaXQiLCJjb21wYW55X2xpc3QiLCJjb25jZXB0X2NyZWF0ZSIsImNvbmNlcHRfZWRpdCIsImNvbmNlcHRfbWVudSIsImNvbnRhY3RfY3JlYXRlIiwiY29udGFjdF9jcmVhdGVfZmFzdCIsImNvbnRhY3RfZWRpdCIsImNvbnRhY3RfbGlzdCIsImNvbnRhY3RfbWVudSIsImN1c3RvbWVyX2NyZWF0ZSIsImN1c3RvbWVyX2NyZWF0ZV9mYXN0IiwiY3VzdG9tZXJfZWRpdCIsImN1c3RvbWVyX2xpc3QiLCJjdXN0b21lcl9saXN0X2FsbCIsImN1c3RvbWVyX21lbnUiLCJleHBlbnNlX2NyZWF0ZV9hbGwiLCJleHBlbnNlX2RlbGV0ZV9hbGwiLCJleHBlbnNlX2R1cGxpY2F0ZSIsImV4cGVuc2VfZWRpdF9hbGwiLCJleHBlbnNlX2xpc3RfYWxsIiwiZXhwZW5zZV9tZW51IiwiZXhwZW5zZV9yZWplY3RfYWxsIiwiZmFiX3Nob3ciLCJmaWxlX21lbnUiLCJnZW9yZWZlcmVuY2VfY3JlYXRlIiwiZ2VvcmVmZXJlbmNlX2VkaXQiLCJnZW9yZWZlcmVuY2VfbWVudSIsImdvX3RvX2xlZ2FjeSIsImluZGljYXRvcnNfbWVudSIsImludm9pY2VfY3JlYXRlIiwiaW52b2ljZV9kZXRhaWxfbGlzdF9hbGwiLCJpbnZvaWNlX2ZpeF90aW1lc19jdXN0b21fdmFsdWUiLCJpbnZvaWNlX2xpc3RfYWxsIiwiaW52b2ljZWFkdmFuY2VfY3JlYXRlIiwiaW52b2ljZWFkdmFuY2VfbGlzdCIsImludm9pY2VhZHZhbmNlX3VwZGF0ZSIsImxvZ19saXN0X2FsbCIsImxvZ19saXN0X293biIsIm1pbGVzdG9uZV9jcmVhdGUiLCJtaWxlc3RvbmVfZGVsZXRlIiwibWlsZXN0b25lX2VkaXQiLCJtb250aGx5X2ZpeF9yYXRlX2dyb3VwX2NyZWF0ZSIsIm1vbnRobHlfZml4X3JhdGVfZ3JvdXBfZWRpdCIsIm1vbnRobHlfdXNlcl9jb3N0X2NyZWF0ZSIsIm1vbnRobHlfdXNlcl9jb3N0X2VkaXQiLCJwYXltZW50X2NyZWF0ZSIsInBheW1lbnRfZGVsZXRlIiwicGF5bWVudF9lZGl0IiwicGF5bWVudF9tZW51IiwicHJvY2VkdXJlX21lbnUiLCJwcm9jZWR1cmVfcmF0ZV9jcmVhdGUiLCJwcm9jZWR1cmVfcmF0ZV9kZXRhaWxfY3JlYXRlIiwicHJvY2VkdXJlX3JhdGVfZGV0YWlsX2VkaXQiLCJwcm9jZWR1cmVfcmF0ZV9kZXRhaWxfbGlzdCIsInByb2NlZHVyZV9yYXRlX2VkaXQiLCJwcm9jZWR1cmVfcmF0ZV9saXN0IiwicHJvY2VkdXJlX3JhdGVfbWVudSIsInByb2NlZHVyZV90cmFuc2FjdGlvbl9saXN0IiwicHJvamVjdF9hcmNoaXZlX2Nhc2NhZGVfYWxsIiwicHJvamVjdF9kZWxldGVfY2FzY2FkZV9hbGwiLCJwcm9qZWN0X3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInJhdGVfYnVzaW5lc3NfY2F0ZWdvcnlfY3JlYXRlIiwicmF0ZV9idXNpbmVzc19jYXRlZ29yeV9lZGl0IiwicmF0ZV9idXNpbmVzc191c2VyX2NyZWF0ZSIsInJhdGVfYnVzaW5lc3NfdXNlcl9lZGl0IiwicmF0ZV9leGNoYW5nZV9jcmVhdGUiLCJyYXRlX2V4Y2hhbmdlX2VkaXQiLCJyYXRlX2V4Y2hhbmdlX2xpc3QiLCJyYXRlX3VzZXJfY3JlYXRlIiwicmF0ZV91c2VyX2VkaXQiLCJyb2xlX2NyZWF0ZSIsInJvbGVfZWRpdF9hbGwiLCJyb2xlX2xpc3RfYWxsIiwic2VjdGlvbl9hcmNoaXZlX2Nhc2NhZGVfYWxsIiwic2VjdGlvbl9kZWxldGVfY2FzY2FkZV9hbGwiLCJzZWN0aW9uX3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInNlZV9tZW51X3JhdGVfZXhjaGFuZ2UiLCJzZXJpZV9jcmVhdGUiLCJzZXJpZV9lZGl0Iiwic2VyaWVfbWVudSIsInNldHRpbmdzX3ZpZXciLCJzdXBwbGllcl9jcmVhdGUiLCJ0YXNrX2FkZF90aW1lX2FsbCIsInRhc2tfYWRkX3RpbWVfb3duIiwidGFza19hc3NpZ25lZF91c2VyX2VtYWlsIiwidGFza19jbG9zZWRfZW1haWwiLCJ0YXNrX2NyZWF0ZV9hbGwiLCJ0YXNrX2NyZWF0ZV9jb21tZW50X2VtYWlsIiwidGFza19jcmVhdGVfc2VsZiIsInRhc2tfY3JlYXRlX3RlYW0iLCJ0YXNrX2RlbGV0ZV9hbGwiLCJ0YXNrX2RlbGV0ZV9vd24iLCJ0YXNrX2RlbGV0ZV90ZWFtIiwidGFza19lZGl0X2FsbCIsInRhc2tfZWRpdF9kdWVfZGF0ZSIsInRhc2tfZWRpdF9vd24iLCJ0YXNrX2VkaXRfdGVhbSIsInRhc2tfbGlzdF9hbGwiLCJ0YXNrX2xpc3Rfb3duIiwidGFza19saXN0X3RlYW0iLCJ0YXNrX21hc3NpdmVpbXBvcnQiLCJ0YXNrX21lbnUiLCJ0YXNrX21pZ3JhdGlvbiIsInRhc2tfc2V0X2FkZGl0aW9uYWxfYXNzaWduZWVzIiwidGFza19zZXRfZHVlX2RhdGUiLCJ0YXNrX3NldF9lc3RpbWF0ZWRfdGltZSIsInRhc2tfc2V0X3ByaW9yaXR5IiwidGFza19zZXRfcHJvZ3Jlc3MiLCJ0YXhfZWRpdF9hbGwiLCJ0YXhfbGlzdF9hbGwiLCJ0ZWFtX2FyY2hpdmVfY2FzY2FkZV9hbGwiLCJ0ZWFtX2NyZWF0ZV9hbGwiLCJ0ZWFtX2RlbGV0ZV9hbGwiLCJ0ZWFtX2VkaXRfYWxsIiwidGVhbV9saXN0X2FsbCIsInRlYW1fbGlzdF9vd24iLCJ0ZWFtX3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInRpbWVfYWNjZXB0X2FsbCIsInRpbWVfYWNjZXB0X293biIsInRpbWVfYXBwcm92ZV9hbGwiLCJ0aW1lX2FwcHJvdmVfb3duIiwidGltZV9jcmVhdGVfYWxsIiwidGltZV9jcmVhdGVfb3duIiwidGltZV9kZWxldGVfYWxsIiwidGltZV9kZWxldGVfb3duIiwidGltZV9kZW55X2FsbCIsInRpbWVfZGVueV9vd24iLCJ0aW1lX2Rvd25sb2FkZmlsZV9hbGwiLCJ0aW1lX2Rvd25sb2FkZmlsZV9vd24iLCJ0aW1lX2VkaXRfYWxsIiwidGltZV9lZGl0X2Nsb3NlX3BlcmlvZF9hbGwiLCJ0aW1lX2VkaXRfY2xvc2VfcGVyaW9kX293biIsInRpbWVfZWRpdF9vd24iLCJ0aW1lX2xpc3RfYWxsIiwidGltZV9saXN0X293biIsInRpbWVfbWVudSIsInRpbWVfbWludXRlc196ZXJvIiwidGltZV9yZWplY3RfYWxsIiwidGltZV9yZXN0cmljdGVkX3BlcmlvZF9jcmVhdGUiLCJ0aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX2VkaXQiLCJ0aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX21lbnUiLCJ0aW1lX3NoYXJlX2FsbCIsInRpbWVfc2hhcmVfb3duIiwidGltZV9zaG93X2NhbGVuZGFyX3ZpZXciLCJ0aW1lX3VwbG9hZGZpbGVfYWxsIiwidGltZV91cGxvYWRmaWxlX293biIsInRyYW5zYWN0aW9uX2FkYXB0ZXJfbGlzdCIsInRyYW5zYWN0aW9uX2xpc3QiLCJ1c2VyX2Fic2VuY2VzX3Nob3ciLCJ1c2VyX2Nvc3RfY3JlYXRlIiwidXNlcl9jb3N0X2VkaXQiLCJ1c2VyX2Nvc3RfbGlzdCIsInVzZXJfY29zdF9tZW51IiwidXNlcl9jb3N0X3JhdGVfY3JlYXRlIiwidXNlcl9jb3N0X3JhdGVfZWRpdCIsInVzZXJfY29zdF9yYXRlX2xpc3QiLCJ1c2VyX2NyZWF0ZSIsInVzZXJfZGlzYWJsZSIsInVzZXJfZWRpdCIsInVzZXJfZWRpdF9kYXlzX2FsbG93X29ubHkiLCJ1c2VyX2dyb3VwX3JvbGVfY3JlYXRlX2FsbCIsInVzZXJfZ3JvdXBfcm9sZV9kZWxldGVfYWxsIiwidXNlcl9ncm91cF9yb2xlX2VkaXRfYWxsIiwidXNlcl9ncm91cF9yb2xlc19saXN0X2FsbCIsInVzZXJfbGlzdCIsInVzZXJfbGlzdF9hbGwiLCJ1c2VyX21hc3NfYWN0aXZhdGlvbiIsInVzZXJfcHJvZHVjdGl2aXR5X2NyZWF0ZSIsInVzZXJfcHJvZHVjdGl2aXR5X2Rpc2FibGUiLCJ1c2VyX3Byb2R1Y3Rpdml0eV9lZGl0IiwidXNlcl9wcm9kdWN0aXZpdHlfZW5hYmxlIiwidXNlcl9wcm9kdWN0aXZpdHlfbWVudSIsInVzZXJfdGltZV9yZXN0cmljdGVkX3BlcmlvZF9jcmVhdGUiLCJ1c2VyX3RpbWVfcmVzdHJpY3RlZF9wZXJpb2RfZGVsZXRlIiwidXNlcl90aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX2VkaXQiLCJ1c2VyZ3JvdXBfY3JlYXRlX2FsbCIsInVzZXJncm91cF9kZWxldGVfYWxsIiwidXNlcmdyb3VwX2VkaXRfYWxsIiwidXNlcmdyb3VwX2xpc3RfYWxsIiwidXNlcmdyb3VwX21lbnUiLCJ1c2Vyc191c2VyX2dyb3VwX2NyZWF0ZV9hbGwiLCJ1c2Vyc191c2VyX2dyb3VwX2RlbGV0ZV9hbGwiLCJ1c2Vyc191c2VyX2dyb3VwX2VkaXRfYWxsIiwidXNlcnNfdXNlcl9ncm91cHNfbGlzdF9hbGwiXSwiaG9tZXBhZ2UiOm51bGx9.kShN7NXGoaz1oFro-yYNyIpIEcnNpo1GiB8SFGKFUJtDQoqyp1I1w-CMA8Kta3vWXnUZwx-y2z1yVSJaMpZbqQgKFlakpcf6351bZSL8IAUPExSfLz0HYYCWFx-Usx94BBTqosKsRhnT8PkPN3dGxs8-XTIEDi9gN-Pk9OSHmM5mPkTsaaxTY40M-F7Y0Up2y6s_lwFaX13CmstiYZSXzyKL9SUBBx-E6-8qQAfuKPIoZ_50jSGPW98-IkAcWwqO6yGf-M07dSfFZ2vLfwc3ulHm2p8jVSmRxJ_O43BEWQD5cvqGbVIvSMXkS4y98DL4Vencjjg27iu3CUJsDNBBTg] Content-Type:[application/json] Origin:[https://azure-function.timemanagerweb.com] Tenant-Name:[pruebas-dos] User-Agent:[Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36]]\nBody: map[query:query ($limit: Int, $orderBy: String, $orderDesc: Boolean, $page: Int) { BusinessMeta(limit: $limit, orderBy: $orderBy, orderDesc: $orderDesc, page: $page) { meta { hasNextPage hasPreviousPage limit next page pages previous total } rows { apply_procedures billable business_customer_code caseNumber closed_date confidential created_at discountAmount discountPercent displayName enableBusinessAllowedUsers expedient finishedDate fixRateValue fix_rate_value hourLimit hour_limit id internal_code isBillable limitAlert notes partialCharges partial_charges primary_external_code processing secondaryExternalCode secondary_external_code status statusMarking updated_at withIVA responsible { created_at daysAllow email enabled fullName id locale shortName superAdmin updated_at userType username } customer { id name primary_external_code company { id name } } practiceArea { id externalCode name } } } } variables:map[limit:100 orderBy:orderBy orderDesc:true page:6]]\n","time":"2025-07-30T10:50:36-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: POST https://apinewtm.com/graphql/ | Status: 200 | Duration: 3.4784329s\nHeaders: map[Access-Control-Allow-Credentials:[true] Access-Control-Allow-Origin:[https://azure-function.timemanagerweb.com] Access-Control-Expose-Headers:[link, access-control-allow-credentials] Cache-Control:[no-cache, private] Content-Type:[application/json] Date:[Wed, 30 Jul 2025 14:50:39 GMT] Server:[] Vary:[Authorization]]\nBody: {\"errors\":[{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",18,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",18,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",18,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",18,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",18,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",18,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",18,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",18,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",18,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",18,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",18,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",23,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",23,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",23,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",23,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",23,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",23,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",23,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",23,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",23,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",23,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",23,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",24,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",24,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",24,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",24,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",24,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",24,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",24,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",24,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",24,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",24,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",24,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",25,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",25,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",25,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",25,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",25,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",25,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",25,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",25,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",25,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",25,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",25,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",26,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",26,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",26,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",26,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",26,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",26,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",26,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",26,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",26,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",26,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",26,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",27,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",27,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",27,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",27,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",27,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",27,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",27,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",27,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",27,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",27,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",27,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",29,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",29,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",29,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",29,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",29,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",29,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",29,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",29,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",29,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",29,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",29,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",32,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",32,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",32,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",32,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",32,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",32,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",32,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",32,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",32,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",32,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",32,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",33,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",33,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",33,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",33,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",33,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",33,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",33,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",33,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",33,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",33,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",33,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",34,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",34,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",34,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",34,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",34,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",34,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",34,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",34,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",34,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",34,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",34,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",35,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",35,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",35,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",35,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",35,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",35,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",35,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",35,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",35,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",35,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",35,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",36,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",36,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",36,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",36,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",36,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",36,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",36,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",36,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",36,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",36,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",36,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",37,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",37,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",37,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",37,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",37,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",37,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",37,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",37,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",37,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",37,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",37,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",38,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",38,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",38,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",38,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",38,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",38,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",38,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",38,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",38,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",38,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",38,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",39,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",39,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",39,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",39,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",39,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",39,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",39,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",39,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",39,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",39,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",39,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",72,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",72,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",72,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",72,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",72,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",72,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",72,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",72,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",72,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",72,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",72,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",73,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",73,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",73,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",73,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",73,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",73,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",73,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",73,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",73,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",73,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",73,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",74,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",74,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",74,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",74,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",74,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",74,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",74,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",74,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",74,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",74,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",74,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",75,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",75,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",75,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",75,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",75,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",75,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",75,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",75,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",75,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",75,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",75,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",82,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",82,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",82,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",82,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",82,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",82,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",82,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",82,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",82,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",82,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",82,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",84,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",84,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",84,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",84,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",84,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",84,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",84,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",84,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",84,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",84,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",84,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",86,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",86,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",86,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",86,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",86,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",86,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",86,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",86,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",86,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",86,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",86,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",87,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",87,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",87,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",87,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",87,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",87,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",87,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",87,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",87,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",87,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",87,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",88,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",88,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",88,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",88,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",88,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",88,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",88,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",88,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",88,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",88,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",88,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",90,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",90,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",90,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",90,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",90,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",90,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",90,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",90,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",90,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",90,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",90,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",91,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",91,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",91,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",91,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",91,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",91,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",91,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",91,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",91,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",91,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",91,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",93,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",93,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",93,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",93,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",93,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",93,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",93,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",93,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",93,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",93,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",93,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",94,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",94,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",94,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",94,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",94,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",94,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",94,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",94,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",94,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",94,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",94,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",95,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",95,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",95,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",95,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",95,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",95,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",95,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",95,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",95,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",95,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",95,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",96,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",96,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",96,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",96,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",96,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",96,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",96,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",96,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",96,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",96,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",96,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",98,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",98,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",98,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",98,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",98,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",98,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",98,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",98,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",98,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",98,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",98,\"responsible\",\"username\"]}],\"data\":{\"BusinessMeta\":{\"meta\":{\"hasNextPage\":true,\"hasPreviousPage\":true,\"limit\":100,\"next\":7,\"page\":6,\"pages\":16,\"previous\":5,\"total\":1573},\"rows\":[{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-07-24 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000392-SR-000668 - Test Any prueba\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000392-SR-000668\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000392-SR-000668\",\"processing\":false,\"secondaryExternalCode\":\"4230\",\"secondary_external_code\":\"4230\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2025-05-23 17:26:31\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"aaraoz@emba.com\",\"enabled\":true,\"fullName\":\"Alvaro Araoz Ardaya\",\"id\":17,\"locale\":\"es\",\"shortName\":\"aaraoz\",\"superAdmin\":false,\"updated_at\":\"2024-12-04 15:29:19\",\"userType\":1,\"username\":\"aaraoz@emba.com\"},\"customer\":{\"id\":\"65\",\"name\":\"AUMENTUMTECH BOLIVIA SRL\",\"primary_external_code\":\"392\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"6\",\"externalCode\":\"AR17\",\"name\":\"Der.Comercial \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2020-09-01 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000363-SR-000279 - Servicios Legales integrales por hora\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000363-SR-000279\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"3\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000363-SR-000279\",\"processing\":false,\"secondaryExternalCode\":\"2240\",\"secondary_external_code\":\"2240\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"aaraoz@emba.com\",\"enabled\":true,\"fullName\":\"Alvaro Araoz Ardaya\",\"id\":17,\"locale\":\"es\",\"shortName\":\"aaraoz\",\"superAdmin\":false,\"updated_at\":\"2024-12-04 15:29:19\",\"userType\":1,\"username\":\"aaraoz@emba.com\"},\"customer\":{\"id\":\"68\",\"name\":\"AVICONS SRL\",\"primary_external_code\":\"363\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"6\",\"externalCode\":\"AR17\",\"name\":\"Der.Comercial \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-14 00:00:00\",\"confidential\":false,\"created_at\":\"2019-05-30 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000249-SR-000115 - Servicios Legales Mensuales\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000249-SR-000115\",\"finishedDate\":null,\"fixRateValue\":1500,\"fix_rate_value\":1500,\"hourLimit\":12,\"hour_limit\":12,\"id\":\"130\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000249-SR-000115\",\"processing\":false,\"secondaryExternalCode\":\"1410\",\"secondary_external_code\":\"1410\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-15 12:56:01\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"100\",\"name\":\"PECOM SERVICIOS ENERGIA S.A. (SUCURSAL BOLIVIA)\",\"primary_external_code\":\"249\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":\"\",\"caseNumber\":null,\"closed_date\":\"2024-03-21 00:00:00\",\"confidential\":false,\"created_at\":\"2018-06-01 05:00:00\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000079-SR-000015 - Servicios legales mensuales (FM)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000079-SR-000015\",\"finishedDate\":\"2024-02-28 00:00:00\",\"fixRateValue\":2088,\"fix_rate_value\":2088,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"131\",\"internal_code\":\"\",\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000079-SR-000015\",\"processing\":false,\"secondaryExternalCode\":\"22\",\"secondary_external_code\":\"22\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-09 10:29:12\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"111\",\"name\":\"BUPA INSURANCE (BOLIVIA) S.A.\",\"primary_external_code\":\"79\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-10-03 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000893-SR-000540 - RECURSO DE ALZADA Y JERARQUICO MARZO - ABRIL 2019\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000893-SR-000540\",\"finishedDate\":null,\"fixRateValue\":4000,\"fix_rate_value\":4000,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"161\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"EXISTE UN HONORARIO DE EXITO DEL 4% SOBRE EL IMPORTE GANADO EN RECURSO JERARQUICO\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000893-SR-000540\",\"processing\":false,\"secondaryExternalCode\":\"3619\",\"secondary_external_code\":\"3619\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"rburgos@emba.com\",\"enabled\":true,\"fullName\":\"Edwin Rodrigo Burgos Fernandez\",\"id\":16,\"locale\":\"es\",\"shortName\":\"rburgos\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rburgos@emba.com\"},\"customer\":{\"id\":\"9\",\"name\":\"ADMINISTRACI\\u00d3N \\u0026 ESTRUCTURAS PHOENIXTORRES II S.A.\",\"primary_external_code\":\"893\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"19\",\"externalCode\":\"AR09\",\"name\":\"Der. Tributario\\u0026 Plan.Fiscal\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-06-25 00:00:00\",\"confidential\":false,\"created_at\":\"2023-07-03 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000893-SR-000659 - Defensa DCA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000893-SR-000659\",\"finishedDate\":null,\"fixRateValue\":3500,\"fix_rate_value\":3500,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"162\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000893-SR-000659\",\"processing\":false,\"secondaryExternalCode\":\"4210\",\"secondary_external_code\":\"4210\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-06-25 14:37:15\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"rburgos@emba.com\",\"enabled\":true,\"fullName\":\"Edwin Rodrigo Burgos Fernandez\",\"id\":16,\"locale\":\"es\",\"shortName\":\"rburgos\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rburgos@emba.com\"},\"customer\":{\"id\":\"9\",\"name\":\"ADMINISTRACI\\u00d3N \\u0026 ESTRUCTURAS PHOENIXTORRES II S.A.\",\"primary_external_code\":\"893\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"19\",\"externalCode\":\"AR09\",\"name\":\"Der. Tributario\\u0026 Plan.Fiscal\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-03-02 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000372-SR-000593 - Observaci\\u00f3n Aumento de Capital ASFI\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000372-SR-000593\",\"finishedDate\":null,\"fixRateValue\":500,\"fix_rate_value\":500,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"163\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000372-SR-000593\",\"processing\":false,\"secondaryExternalCode\":\"3997\",\"secondary_external_code\":\"3997\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"tmercado@emba.com\",\"enabled\":true,\"fullName\":\"Teddy Alberto Mercado Carrion\",\"id\":12,\"locale\":\"es\",\"shortName\":\"tmercado\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"tmercado@emba.com\"},\"customer\":{\"id\":\"11\",\"name\":\"AESA RATINGS S.A.\",\"primary_external_code\":\"372\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"4\",\"externalCode\":\"AR16\",\"name\":\"Der.Mercantil-Banca\\u0026Finanzas\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2019-03-15 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000239-SR-000052 - 25 Procesos Judiciales Laborales y Administrativos Tributarios\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000239-SR-000052\",\"finishedDate\":null,\"fixRateValue\":9200,\"fix_rate_value\":9200,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"167\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000239-SR-000052\",\"processing\":false,\"secondaryExternalCode\":\"1212\",\"secondary_external_code\":\"1212\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"amorenog@emba.com\",\"enabled\":true,\"fullName\":\"Andres Moreno Gutierrez\",\"id\":5,\"locale\":\"es\",\"shortName\":\"amoreno\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"amorenog@emba.com\"},\"customer\":{\"id\":\"21\",\"name\":\"AGROGRAIN LIMITED SUCURSAL URUGUAY\",\"primary_external_code\":\"239\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"19\",\"externalCode\":\"AR09\",\"name\":\"Der. Tributario\\u0026 Plan.Fiscal\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-07-02 00:00:00\",\"confidential\":false,\"created_at\":\"2021-08-11 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000239-SR-000410 - DEFENSA TRIBUTARIA RADIP 212179000020 PERIODO ABRIL 2018\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000239-SR-000410\",\"finishedDate\":null,\"fixRateValue\":6500,\"fix_rate_value\":6500,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"168\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000239-SR-000410\",\"processing\":false,\"secondaryExternalCode\":\"2878\",\"secondary_external_code\":\"2878\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-07-02 16:43:36\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"rburgos@emba.com\",\"enabled\":true,\"fullName\":\"Edwin Rodrigo Burgos Fernandez\",\"id\":16,\"locale\":\"es\",\"shortName\":\"rburgos\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rburgos@emba.com\"},\"customer\":{\"id\":\"21\",\"name\":\"AGROGRAIN LIMITED SUCURSAL URUGUAY\",\"primary_external_code\":\"239\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"19\",\"externalCode\":\"AR09\",\"name\":\"Der. Tributario\\u0026 Plan.Fiscal\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-10-20 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000250-SR-000748 - Regularizaci\\u00f3n corporativa 2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000250-SR-000748\",\"finishedDate\":null,\"fixRateValue\":500,\"fix_rate_value\":500,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"169\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000250-SR-000748\",\"processing\":false,\"secondaryExternalCode\":\"4541\",\"secondary_external_code\":\"4541\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-06-22 03:42:23\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"22\",\"name\":\"AGRONEGOCIOS LASCOT S.R.L.\",\"primary_external_code\":\"250\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-11-14 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000625-SR-000759 - Opinion Legal Brasilagro\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000625-SR-000759\",\"finishedDate\":null,\"fixRateValue\":3000,\"fix_rate_value\":3000,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"170\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000625-SR-000759\",\"processing\":false,\"secondaryExternalCode\":\"4579\",\"secondary_external_code\":\"4579\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"amorenog@emba.com\",\"enabled\":true,\"fullName\":\"Andres Moreno Gutierrez\",\"id\":5,\"locale\":\"es\",\"shortName\":\"amoreno\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"amorenog@emba.com\"},\"customer\":{\"id\":\"24\",\"name\":\"Agropecuaria Acres del Sud S.A.\",\"primary_external_code\":\"625\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":1,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-29 00:00:00\",\"confidential\":false,\"created_at\":\"2020-09-18 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000368-SR-000281 - SERVICIO PRO BONO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000368-SR-000281\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"172\",\"internal_code\":null,\"isBillable\":false,\"limitAlert\":null,\"notes\":\"SERVICIOS LEGALES QUE PRESTARA EL ESTUDIO AD HONOREM CON AUTORIZACI\\u00d3N DEL DR. REMIRO MORENO Y DR. ANDRES MORENO. El cliente solo pagar\\u00e1 gastos por tramitaci\\u00f3n.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000368-SR-000281\",\"processing\":false,\"secondaryExternalCode\":\"2270\",\"secondary_external_code\":\"2270\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"nezegarra@emba.com\",\"enabled\":true,\"fullName\":\"Natalio Eduardo Zegarra Ribera\",\"id\":15,\"locale\":\"es\",\"shortName\":\"nzegarra\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"nezegarra@emba.com\"},\"customer\":{\"id\":\"29\",\"name\":\"ALDEAS INFANTILES SOS INTERNACIONAL\",\"primary_external_code\":\"368\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"17\",\"externalCode\":\"AR08\",\"name\":\"Der. Laboral y Seg. Soc.\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-03-17 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000558-SR-000600 - Servicios Legales Mensuales\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000558-SR-000600\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"176\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Empresa de Familia Moreno\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000558-SR-000600\",\"processing\":false,\"secondaryExternalCode\":\"4016\",\"secondary_external_code\":\"4016\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-14 12:13:52\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"lmorenog@emba.com\",\"enabled\":true,\"fullName\":\"Luis Moreno Gutierrez\",\"id\":8,\"locale\":\"es\",\"shortName\":\"lmoreno\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"lmorenog@emba.com\"},\"customer\":{\"id\":\"44\",\"name\":\"ANDESLINO S.R.L.\",\"primary_external_code\":\"558\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"30\",\"externalCode\":\"AR33\",\"name\":\"Servicios Legales Mensuales\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-06-22 00:00:00\",\"confidential\":false,\"created_at\":\"2023-12-01 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000253-SR-000783 - Anticipo de Leg\\u00edtima\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000253-SR-000783\",\"finishedDate\":null,\"fixRateValue\":500,\"fix_rate_value\":500,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"177\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000253-SR-000783\",\"processing\":false,\"secondaryExternalCode\":\"4625\",\"secondary_external_code\":\"4625\",\"status\":1,\"statusMarking\":\"billed\",\"updated_at\":\"2024-06-22 02:55:07\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"49\",\"name\":\"Antonio Portugal\",\"primary_external_code\":\"253\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"16\",\"externalCode\":\"AR24\",\"name\":\"Der. Inmobiliario\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2020-02-27 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000333-SR-000242 - Due Diligence Legal\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000333-SR-000242\",\"finishedDate\":null,\"fixRateValue\":11500,\"fix_rate_value\":11500,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"181\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Se confirmar\\u00e1 la razon social y nit para facturar\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000333-SR-000242\",\"processing\":false,\"secondaryExternalCode\":\"1972\",\"secondary_external_code\":\"1972\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"amorenog@emba.com\",\"enabled\":true,\"fullName\":\"Andres Moreno Gutierrez\",\"id\":5,\"locale\":\"es\",\"shortName\":\"amoreno\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"amorenog@emba.com\"},\"customer\":{\"id\":\"67\",\"name\":\"AUTOSTAR\",\"primary_external_code\":\"333\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2019-08-09 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000076-SR-000139 - Cierre de sucursal\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000076-SR-000139\",\"finishedDate\":null,\"fixRateValue\":6214.28,\"fix_rate_value\":6214.28,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"183\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"50% a la firma del contrato 20% a los 90 dias firmado el contrato 30% extincion de la personeria jur\\u00eddica\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000076-SR-000139\",\"processing\":false,\"secondaryExternalCode\":\"1545\",\"secondary_external_code\":\"1545\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"nezegarra@emba.com\",\"enabled\":true,\"fullName\":\"Natalio Eduardo Zegarra Ribera\",\"id\":15,\"locale\":\"es\",\"shortName\":\"nzegarra\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"nezegarra@emba.com\"},\"customer\":{\"id\":\"71\",\"name\":\"BANCO DO BRASIL S.A. SUC. BOLIVIA\",\"primary_external_code\":\"76\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-08-01 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000076-SR-000679 - PROCESO PENAL MINISTERIO PUBLICO\\/ITIKA GUAZU ct. JOSE SAVIO FARIAS, LUIS SALAS Y NATALIO ZEGARRA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000076-SR-000679\",\"finishedDate\":null,\"fixRateValue\":17000,\"fix_rate_value\":17000,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"185\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"SE DEBE FACTURAR EL 58% AHORA Y EL SALDO A INSTRUCCION DEL DR. ZEGARRA\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000076-SR-000679\",\"processing\":false,\"secondaryExternalCode\":\"4243\",\"secondary_external_code\":\"4243\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"nezegarra@emba.com\",\"enabled\":true,\"fullName\":\"Natalio Eduardo Zegarra Ribera\",\"id\":15,\"locale\":\"es\",\"shortName\":\"nzegarra\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"nezegarra@emba.com\"},\"customer\":{\"id\":\"71\",\"name\":\"BANCO DO BRASIL S.A. SUC. BOLIVIA\",\"primary_external_code\":\"76\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"34\",\"externalCode\":\"AR03\",\"name\":\"Der. Penal\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-08 00:00:00\",\"confidential\":false,\"created_at\":\"2019-04-29 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000252-SR-000092 - BNB\\/Hern\\u00e1n Alfredo Molina- Proceso coactivo\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000252-SR-000092\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"187\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"revisar que hito se debe facturar\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000252-SR-000092\",\"processing\":false,\"secondaryExternalCode\":\"1336\",\"secondary_external_code\":\"1336\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-08 15:17:47\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"72\",\"name\":\"Banco Nacional de Bolivia S.A.\",\"primary_external_code\":\"252\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"5\",\"externalCode\":\"AR02\",\"name\":\"Der.Civil \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-08 00:00:00\",\"confidential\":false,\"created_at\":\"2019-08-13 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000252-SR-000154 - BNB\\/Jos\\u00e9 Antonio Guti\\u00e9rrez Medina- Proceso coactivo\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000252-SR-000154\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"188\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"REVISAR QUE HITO SE DEBE FACTURAR\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000252-SR-000154\",\"processing\":false,\"secondaryExternalCode\":\"1570\",\"secondary_external_code\":\"1570\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-08 15:39:20\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"72\",\"name\":\"Banco Nacional de Bolivia S.A.\",\"primary_external_code\":\"252\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"5\",\"externalCode\":\"AR02\",\"name\":\"Der.Civil \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-11 00:00:00\",\"confidential\":false,\"created_at\":\"2020-01-13 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000252-SR-000223 - Proceso Ejecutivo VILLCA CABA DIANA KATERIN\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000252-SR-000223\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"189\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"REVISAR QUE HITO CORRESPONDE FACTURAR\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000252-SR-000223\",\"processing\":false,\"secondaryExternalCode\":\"1866\",\"secondary_external_code\":\"1866\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-11 22:05:10\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"72\",\"name\":\"Banco Nacional de Bolivia S.A.\",\"primary_external_code\":\"252\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-01 00:00:00\",\"confidential\":false,\"created_at\":\"2020-01-13 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000252-SR-000224 - Proceso Ejecutivo YA\\u00d1EZ CACERES ESTHER\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000252-SR-000224\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"190\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"REVISAR CUAL HITO CORRESPONDE FACTURAR\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000252-SR-000224\",\"processing\":false,\"secondaryExternalCode\":\"1867\",\"secondary_external_code\":\"1867\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"72\",\"name\":\"Banco Nacional de Bolivia S.A.\",\"primary_external_code\":\"252\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-08 00:00:00\",\"confidential\":false,\"created_at\":\"2020-02-10 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000252-SR-000235 - BNB\\/MAMANI CALLISAYA- TICONA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000252-SR-000235\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"191\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"REVISAR EL HITO QUE SE DEBE FACTURAR\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000252-SR-000235\",\"processing\":false,\"secondaryExternalCode\":\"1933\",\"secondary_external_code\":\"1933\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-08 15:48:23\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"72\",\"name\":\"Banco Nacional de Bolivia S.A.\",\"primary_external_code\":\"252\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"5\",\"externalCode\":\"AR02\",\"name\":\"Der.Civil \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-08 00:00:00\",\"confidential\":false,\"created_at\":\"2020-03-06 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000252-SR-000245 - Proceso Coactivo ANDRES MIRABAL USCAMAITA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000252-SR-000245\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"192\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Revisar cual hito corresponde facturar dependiendo el resultado de \\u00e9xito.\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000252-SR-000245\",\"processing\":false,\"secondaryExternalCode\":\"1993\",\"secondary_external_code\":\"1993\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-08 20:00:03\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"72\",\"name\":\"Banco Nacional de Bolivia S.A.\",\"primary_external_code\":\"252\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-07 00:00:00\",\"confidential\":false,\"created_at\":\"2020-03-11 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000252-SR-000248 - BNB\\/CASTRO - Ximena Nancy Castro - Proceso coactivo\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000252-SR-000248\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"193\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"revisar que hito sera el facturable\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000252-SR-000248\",\"processing\":false,\"secondaryExternalCode\":\"1999\",\"secondary_external_code\":\"1999\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-07 22:03:32\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"72\",\"name\":\"Banco Nacional de Bolivia S.A.\",\"primary_external_code\":\"252\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"5\",\"externalCode\":\"AR02\",\"name\":\"Der.Civil \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-07 00:00:00\",\"confidential\":false,\"created_at\":\"2020-06-09 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000252-SR-000257 - BNB\\/ CHIPANA -Santos Ramiro Chipana Sirpa- Proceso coactivo\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000252-SR-000257\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"194\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Revisar cual de los hitos corresponde facturar.\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000252-SR-000257\",\"processing\":false,\"secondaryExternalCode\":\"2062\",\"secondary_external_code\":\"2062\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-07 21:32:41\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"72\",\"name\":\"Banco Nacional de Bolivia S.A.\",\"primary_external_code\":\"252\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"5\",\"externalCode\":\"AR02\",\"name\":\"Der.Civil \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-07 00:00:00\",\"confidential\":false,\"created_at\":\"2020-06-09 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000252-SR-000258 - BNB\\/ INSERCOM- INGENIERIA EN COMPUTACI\\u00d3N S.R.L.- Proceso coactivo\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000252-SR-000258\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"195\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Revisar los hitos y validar el que se debe facturar\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000252-SR-000258\",\"processing\":false,\"secondaryExternalCode\":\"2071\",\"secondary_external_code\":\"2071\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-07 21:50:33\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"72\",\"name\":\"Banco Nacional de Bolivia S.A.\",\"primary_external_code\":\"252\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-01 00:00:00\",\"confidential\":false,\"created_at\":\"2021-11-11 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000252-SR-000433 - Proceso ejecutivo Samuel Cruz Trujillo\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000252-SR-000433\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"196\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Revisar cual hito debe ser facturado\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000252-SR-000433\",\"processing\":false,\"secondaryExternalCode\":\"3010\",\"secondary_external_code\":\"3010\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"72\",\"name\":\"Banco Nacional de Bolivia S.A.\",\"primary_external_code\":\"252\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-08 00:00:00\",\"confidential\":false,\"created_at\":\"2021-11-11 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000252-SR-000434 - Proceso coactivo contra Raul Enrique Monta\\u00f1o\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000252-SR-000434\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"197\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"REVISAR CUAL HITO SE DEBE FACTURAR\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000252-SR-000434\",\"processing\":false,\"secondaryExternalCode\":\"3011\",\"secondary_external_code\":\"3011\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-08 20:16:40\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"72\",\"name\":\"Banco Nacional de Bolivia S.A.\",\"primary_external_code\":\"252\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-07 00:00:00\",\"confidential\":false,\"created_at\":\"2022-03-07 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000252-SR-000479 - BNB\\/Erick Alberto Burgoa- Proceso coactivo \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000252-SR-000479\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"199\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"REVISAR QUE HITO SE VA A FACTURAR\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000252-SR-000479\",\"processing\":false,\"secondaryExternalCode\":\"3194\",\"secondary_external_code\":\"3194\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-07 22:30:40\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"72\",\"name\":\"Banco Nacional de Bolivia S.A.\",\"primary_external_code\":\"252\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"5\",\"externalCode\":\"AR02\",\"name\":\"Der.Civil \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-07 00:00:00\",\"confidential\":false,\"created_at\":\"2022-03-17 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000252-SR-000481 - BNB\\/ BARBEITO -Franklin Barbeito Reyes - Proceso coactivo\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000252-SR-000481\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"200\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"REVISAR CUAL DE LOS HITOS SERA EL FACTURABLE\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000252-SR-000481\",\"processing\":false,\"secondaryExternalCode\":\"3205\",\"secondary_external_code\":\"3205\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-07 21:22:56\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"72\",\"name\":\"Banco Nacional de Bolivia S.A.\",\"primary_external_code\":\"252\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"5\",\"externalCode\":\"AR02\",\"name\":\"Der.Civil \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2022-05-20 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000252-SR-000503 - Proceso Coactivo Gustavo Adolfo Franco Estremadoiro\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000252-SR-000503\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"201\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Revisar hitos para cobrar\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000252-SR-000503\",\"processing\":false,\"secondaryExternalCode\":\"3394\",\"secondary_external_code\":\"3394\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"72\",\"name\":\"Banco Nacional de Bolivia S.A.\",\"primary_external_code\":\"252\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2022-05-20 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000252-SR-000504 - Proceso Coactivo Milena Danixa Ribera Castro\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000252-SR-000504\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"202\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Revisar hitos para cobrar\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000252-SR-000504\",\"processing\":false,\"secondaryExternalCode\":\"3393\",\"secondary_external_code\":\"3393\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"72\",\"name\":\"Banco Nacional de Bolivia S.A.\",\"primary_external_code\":\"252\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2022-07-20 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000252-SR-000510 - Proceso Coactivo Ronald Centenaro Ragone\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000252-SR-000510\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"203\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Revisar hitos para el cobro\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000252-SR-000510\",\"processing\":false,\"secondaryExternalCode\":\"3491\",\"secondary_external_code\":\"3491\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"72\",\"name\":\"Banco Nacional de Bolivia S.A.\",\"primary_external_code\":\"252\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2022-08-17 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000252-SR-000517 - Proceso coactivo David Sierra Chumacero\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000252-SR-000517\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"204\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Revisar hitos para cobrar\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000252-SR-000517\",\"processing\":false,\"secondaryExternalCode\":\"3536\",\"secondary_external_code\":\"3536\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"72\",\"name\":\"Banco Nacional de Bolivia S.A.\",\"primary_external_code\":\"252\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"5\",\"externalCode\":\"AR02\",\"name\":\"Der.Civil \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-08 00:00:00\",\"confidential\":false,\"created_at\":\"2022-09-19 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000252-SR-000528 - BNB\\/Importadora Iahm- Proceso coactivo\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000252-SR-000528\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"205\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"REVISAR CUAL HITO SERA EL FACTURABLE\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000252-SR-000528\",\"processing\":false,\"secondaryExternalCode\":\"3586\",\"secondary_external_code\":\"3586\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-08 15:21:41\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"72\",\"name\":\"Banco Nacional de Bolivia S.A.\",\"primary_external_code\":\"252\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"5\",\"externalCode\":\"AR02\",\"name\":\"Der.Civil \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2022-10-15 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000252-SR-000545 - Proceso Jos\\u00e9 Antonio Rojas Vargas\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000252-SR-000545\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"206\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Revisar hitos para cobrar\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000252-SR-000545\",\"processing\":false,\"secondaryExternalCode\":\"3650\",\"secondary_external_code\":\"3650\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"72\",\"name\":\"Banco Nacional de Bolivia S.A.\",\"primary_external_code\":\"252\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-08 00:00:00\",\"confidential\":false,\"created_at\":\"2022-10-19 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000252-SR-000548 - BNB\\/SANCHEZ- S\\u00e1ul Hialmar S\\u00e1nchez- Proceso coactivo\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000252-SR-000548\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"207\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"REVISAR CUAL DE LOS HITOS SERA EL FACTURABLE\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000252-SR-000548\",\"processing\":false,\"secondaryExternalCode\":\"3653\",\"secondary_external_code\":\"3653\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-08 16:19:48\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"72\",\"name\":\"Banco Nacional de Bolivia S.A.\",\"primary_external_code\":\"252\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"5\",\"externalCode\":\"AR02\",\"name\":\"Der.Civil \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-07 00:00:00\",\"confidential\":false,\"created_at\":\"2023-04-19 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000252-SR-000617 - BNB\\/GARCIA -Mar\\u00eda Manuela Garc\\u00eda Ya\\u00f1ez- Proceso coactivo\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000252-SR-000617\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"209\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"revisar que escenario ser\\u00e1 el facturable\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000252-SR-000617\",\"processing\":false,\"secondaryExternalCode\":\"4057\",\"secondary_external_code\":\"4057\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-13 17:30:48\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"72\",\"name\":\"Banco Nacional de Bolivia S.A.\",\"primary_external_code\":\"252\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2023-05-24 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000252-SR-000634 - Proceso c\\/Juan Gabriel Vargas Flores\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000252-SR-000634\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"211\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Revisar hitos para cobrar\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000252-SR-000634\",\"processing\":false,\"secondaryExternalCode\":\"4143\",\"secondary_external_code\":\"4143\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"72\",\"name\":\"Banco Nacional de Bolivia S.A.\",\"primary_external_code\":\"252\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-08 00:00:00\",\"confidential\":false,\"created_at\":\"2023-05-24 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000252-SR-000635 - Proceso c\\/David Padilla Mojica y Eliana A\\u00f1ez Osinaga\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000252-SR-000635\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"212\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Verificar el estado de los hitos para facturar\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000252-SR-000635\",\"processing\":false,\"secondaryExternalCode\":\"4147\",\"secondary_external_code\":\"4147\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-08 18:37:51\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"72\",\"name\":\"Banco Nacional de Bolivia S.A.\",\"primary_external_code\":\"252\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-11 00:00:00\",\"confidential\":false,\"created_at\":\"2023-07-24 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000252-SR-000669 - PROCESO DANIELA FELY JIM\\u00c9NEZ C\\u00c9SPEDES\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000252-SR-000669\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"213\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Verificar hitos para facturar\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000252-SR-000669\",\"processing\":false,\"secondaryExternalCode\":\"4226\",\"secondary_external_code\":\"4226\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-11 21:23:11\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"72\",\"name\":\"Banco Nacional de Bolivia S.A.\",\"primary_external_code\":\"252\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-11 00:00:00\",\"confidential\":false,\"created_at\":\"2023-07-24 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000252-SR-000671 - PROCESO COACTIVO SAMIR ABATH CARRION SALDIAS y LENNY GIOVANNA CUELLAR PEREIRA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000252-SR-000671\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"215\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Verificar el estado de los hitos para facturar\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000252-SR-000671\",\"processing\":false,\"secondaryExternalCode\":\"4228\",\"secondary_external_code\":\"4228\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-11 21:11:29\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"72\",\"name\":\"Banco Nacional de Bolivia S.A.\",\"primary_external_code\":\"252\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-08 00:00:00\",\"confidential\":false,\"created_at\":\"2023-08-08 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000252-SR-000680 - BNB\\/TICONA - Abd\\u00f3n Ticona Apaza- Proceso coactivo\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000252-SR-000680\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"217\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"por la cuant\\u00eda de Bs. 127.535,00 y 175.722,00, total cuantia Bs. 303.257,00\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000252-SR-000680\",\"processing\":false,\"secondaryExternalCode\":\"4251\",\"secondary_external_code\":\"4251\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-08 19:28:40\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"72\",\"name\":\"Banco Nacional de Bolivia S.A.\",\"primary_external_code\":\"252\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"5\",\"externalCode\":\"AR02\",\"name\":\"Der.Civil \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-08 00:00:00\",\"confidential\":false,\"created_at\":\"2023-08-08 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000252-SR-000681 - BNB\\/PACO Jeidda Nela Paco Coariti- demanda coactiva\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000252-SR-000681\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"218\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"REVISAR CUAL HITO DEBE SER FACTURADO\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000252-SR-000681\",\"processing\":false,\"secondaryExternalCode\":\"4252\",\"secondary_external_code\":\"4252\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-08 16:15:54\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"72\",\"name\":\"Banco Nacional de Bolivia S.A.\",\"primary_external_code\":\"252\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"5\",\"externalCode\":\"AR02\",\"name\":\"Der.Civil \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-07 00:00:00\",\"confidential\":false,\"created_at\":\"2023-08-28 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000252-SR-000699 - BNB\\/ ESCOBAR - Iv\\u00e1n Mart\\u00edn Escobar Almendras- Proceso coactivo\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000252-SR-000699\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"219\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Cuant\\u00eda: Bs. 45.443,12 y Bs. 571.287,04\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000252-SR-000699\",\"processing\":false,\"secondaryExternalCode\":\"4287\",\"secondary_external_code\":\"4287\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-07 21:41:08\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"72\",\"name\":\"Banco Nacional de Bolivia S.A.\",\"primary_external_code\":\"252\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"5\",\"externalCode\":\"AR02\",\"name\":\"Der.Civil \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2023-10-19 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000252-SR-000744 - PROCESO EJECUTIVO JOSE CASTO PEREZ PEROGIL y SULEY AMPARO MORENO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000252-SR-000744\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"222\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Verificar los hitos para la facturaci\\u00f3n\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000252-SR-000744\",\"processing\":false,\"secondaryExternalCode\":\"4534\",\"secondary_external_code\":\"4534\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"72\",\"name\":\"Banco Nacional de Bolivia S.A.\",\"primary_external_code\":\"252\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2023-10-20 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000252-SR-000750 - Proceso Coactivo ERVIN REINALDO ZABALA SANCHEZ\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000252-SR-000750\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"224\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Verificar el estado de los hitos para facturar\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000252-SR-000750\",\"processing\":false,\"secondaryExternalCode\":\"4537\",\"secondary_external_code\":\"4537\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"72\",\"name\":\"Banco Nacional de Bolivia S.A.\",\"primary_external_code\":\"252\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-07 00:00:00\",\"confidential\":false,\"created_at\":\"2023-11-20 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000252-SR-000764 - BNB\\/Edgar \\u00c1ngel LLampa Ca\\u00f1aviri- Proceso coactivo\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000252-SR-000764\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"226\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"REVISAR CUAL HITO DEBE SER FACTURADO\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000252-SR-000764\",\"processing\":false,\"secondaryExternalCode\":\"4598\",\"secondary_external_code\":\"4598\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-07 22:18:18\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"72\",\"name\":\"Banco Nacional de Bolivia S.A.\",\"primary_external_code\":\"252\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-08 00:00:00\",\"confidential\":false,\"created_at\":\"2023-11-20 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000252-SR-000765 - BNB\\/Miriam Fern\\u00e1ndez Sossa- Proceso coactivo\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000252-SR-000765\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"227\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"REVISAR CUAL HITO DEBE SER FACTURADO\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000252-SR-000765\",\"processing\":false,\"secondaryExternalCode\":\"4599\",\"secondary_external_code\":\"4599\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-08 16:00:24\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"72\",\"name\":\"Banco Nacional de Bolivia S.A.\",\"primary_external_code\":\"252\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-11 00:00:00\",\"confidential\":false,\"created_at\":\"2023-12-08 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000252-SR-000791 - Proceso Ejecutivo Robert Delf\\u00edn Carmona Herrera\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000252-SR-000791\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"228\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Verificar el estado de los hitos para la facturaci\\u00f3n\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000252-SR-000791\",\"processing\":false,\"secondaryExternalCode\":\"4641\",\"secondary_external_code\":\"4641\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-11 21:29:37\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"72\",\"name\":\"Banco Nacional de Bolivia S.A.\",\"primary_external_code\":\"252\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":1,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-03-17 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000559-SR-000601 - Servicios Legales Mensuales\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000559-SR-000601\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"231\",\"internal_code\":null,\"isBillable\":false,\"limitAlert\":null,\"notes\":\"Empresa del Grupo Venado\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000559-SR-000601\",\"processing\":false,\"secondaryExternalCode\":\"4017\",\"secondary_external_code\":\"4017\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"84\",\"name\":\"BIOFERM S.R.L. (GRUPO VENADO)\",\"primary_external_code\":\"559\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"30\",\"externalCode\":\"AR33\",\"name\":\"Servicios Legales Mensuales\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-06-24 00:00:00\",\"confidential\":false,\"created_at\":\"2021-01-22 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000389-SR-000327 - Servicio Legal Mensual (FM)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000389-SR-000327\",\"finishedDate\":null,\"fixRateValue\":8000,\"fix_rate_value\":8000,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"232\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000389-SR-000327\",\"processing\":false,\"secondaryExternalCode\":\"2484\",\"secondary_external_code\":\"2484\",\"status\":1,\"statusMarking\":\"billed\",\"updated_at\":\"2024-06-24 14:12:18\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"amorenog@emba.com\",\"enabled\":true,\"fullName\":\"Andres Moreno Gutierrez\",\"id\":5,\"locale\":\"es\",\"shortName\":\"amoreno\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"amorenog@emba.com\"},\"customer\":{\"id\":\"99\",\"name\":\"BOL\\u00cdVAR ADMINISTRACI\\u00d3N, INVERSIONES y SERVICIOS ASOCIADOS S.R.L. (BAISA S.R.L.),\",\"primary_external_code\":\"389\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-14 00:00:00\",\"confidential\":false,\"created_at\":\"2021-04-10 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000389-SR-000345 - Construcci\\u00f3n de Centro de Alto Rendimiento CAR STA CRUZ\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000389-SR-000345\",\"finishedDate\":null,\"fixRateValue\":3000,\"fix_rate_value\":3000,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"233\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"DIVIDIVO EN 8 CUOTAS DE USD 3000\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000389-SR-000345\",\"processing\":false,\"secondaryExternalCode\":\"2609\",\"secondary_external_code\":\"2609\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-14 15:30:10\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"tmercado@emba.com\",\"enabled\":true,\"fullName\":\"Teddy Alberto Mercado Carrion\",\"id\":12,\"locale\":\"es\",\"shortName\":\"tmercado\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"tmercado@emba.com\"},\"customer\":{\"id\":\"99\",\"name\":\"BOL\\u00cdVAR ADMINISTRACI\\u00d3N, INVERSIONES y SERVICIOS ASOCIADOS S.R.L. (BAISA S.R.L.),\",\"primary_external_code\":\"389\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2021-06-23 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000389-SR-000391 - Due Diligencia\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000389-SR-000391\",\"finishedDate\":null,\"fixRateValue\":26000,\"fix_rate_value\":26000,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"234\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Facturar el pimer 50 % a los 15 dias despues de fiirmada la iguala\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000389-SR-000391\",\"processing\":false,\"secondaryExternalCode\":\"2751\",\"secondary_external_code\":\"2751\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"amorenog@emba.com\",\"enabled\":true,\"fullName\":\"Andres Moreno Gutierrez\",\"id\":5,\"locale\":\"es\",\"shortName\":\"amoreno\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"amorenog@emba.com\"},\"customer\":{\"id\":\"99\",\"name\":\"BOL\\u00cdVAR ADMINISTRACI\\u00d3N, INVERSIONES y SERVICIOS ASOCIADOS S.R.L. (BAISA S.R.L.),\",\"primary_external_code\":\"389\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-06-24 00:00:00\",\"confidential\":false,\"created_at\":\"2023-08-23 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000567-SR-000687 - Pr\\u00e9stamo Intercompany y Aumento de Capital Bpoint SRL\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000567-SR-000687\",\"finishedDate\":null,\"fixRateValue\":8000,\"fix_rate_value\":8000,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"235\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Posiblemente el costo sea asumido por Brinks Corporaci\\u00f3n o por Bpoint SRL.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000567-SR-000687\",\"processing\":false,\"secondaryExternalCode\":\"4270\",\"secondary_external_code\":\"4270\",\"status\":1,\"statusMarking\":\"approved\",\"updated_at\":\"2024-06-24 14:15:27\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"101\",\"name\":\"BPOINT S.R.L.\",\"primary_external_code\":\"567\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-02-08 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000153-SR-000581 - Reducci\\u00f3n de Capital\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000153-SR-000581\",\"finishedDate\":null,\"fixRateValue\":2180,\"fix_rate_value\":2180,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"236\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000153-SR-000581\",\"processing\":false,\"secondaryExternalCode\":\"3833\",\"secondary_external_code\":\"3833\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"104\",\"name\":\"BRINK\\u0027S BOLIVIA S.A.\",\"primary_external_code\":\"153\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-07-10 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000153-SR-000663 - PERMANENCIA TEMPORAL DE 1 A\\u00d1O POR FAMILIA - GUNTHER ANTONIO BORGES TORREALBA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000153-SR-000663\",\"finishedDate\":null,\"fixRateValue\":1357,\"fix_rate_value\":1357,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"237\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 1357 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000153-SR-000663\",\"processing\":false,\"secondaryExternalCode\":\"4216\",\"secondary_external_code\":\"4216\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"104\",\"name\":\"BRINK\\u0027S BOLIVIA S.A.\",\"primary_external_code\":\"153\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2019-11-28 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000312-SR-000218 - Custodia de Pagar\\u00e9s\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000312-SR-000218\",\"finishedDate\":null,\"fixRateValue\":500,\"fix_rate_value\":500,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"239\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000312-SR-000218\",\"processing\":false,\"secondaryExternalCode\":\"1809\",\"secondary_external_code\":\"1809\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"109\",\"name\":\"BUNGE LATIN AMERICAN LLC\",\"primary_external_code\":\"312\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-12-06 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000908-SR-000787 - Test Any prueba\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000908-SR-000787\",\"finishedDate\":null,\"fixRateValue\":1500,\"fix_rate_value\":1500,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"242\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Sin l\\u00edmite de horas\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000908-SR-000787\",\"processing\":false,\"secondaryExternalCode\":\"4631\",\"secondary_external_code\":\"4631\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"paramayo@emba.com\",\"enabled\":true,\"fullName\":\"Paul Aramayo Salinas\",\"id\":9,\"locale\":\"es\",\"shortName\":\"paramayo\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"paramayo@emba.com\"},\"customer\":{\"id\":\"115\",\"name\":\"CAMBRIDGE COLLEGE S.R.L.\",\"primary_external_code\":\"908\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"17\",\"externalCode\":\"AR08\",\"name\":\"Der. Laboral y Seg. Soc.\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-01-10 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000458-SR-000446 - Transferencia inmueble lote de terreno No.1 zona de Los Batos Porongo\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000458-SR-000446\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"245\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Honorario a definir una vez se cuente con el an\\u00e1lisis de documetos requerido a Santa Cruz\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000458-SR-000446\",\"processing\":false,\"secondaryExternalCode\":\"3092\",\"secondary_external_code\":\"3092\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"aaraoz@emba.com\",\"enabled\":true,\"fullName\":\"Alvaro Araoz Ardaya\",\"id\":17,\"locale\":\"es\",\"shortName\":\"aaraoz\",\"superAdmin\":false,\"updated_at\":\"2024-12-04 15:29:19\",\"userType\":1,\"username\":\"aaraoz@emba.com\"},\"customer\":{\"id\":\"128\",\"name\":\"Charbel Mendoza\",\"primary_external_code\":\"458\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"11\",\"externalCode\":\"AR21\",\"name\":\"Der. Administrativo\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-01-14 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000458-SR-000448 - Negociaci\\u00f3n y tramitaci\\u00f3n Adquisici\\u00f3n Inmueble Valle Grande\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000458-SR-000448\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"246\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Honorario por definir\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000458-SR-000448\",\"processing\":false,\"secondaryExternalCode\":\"3100\",\"secondary_external_code\":\"3100\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"aaraoz@emba.com\",\"enabled\":true,\"fullName\":\"Alvaro Araoz Ardaya\",\"id\":17,\"locale\":\"es\",\"shortName\":\"aaraoz\",\"superAdmin\":false,\"updated_at\":\"2024-12-04 15:29:19\",\"userType\":1,\"username\":\"aaraoz@emba.com\"},\"customer\":{\"id\":\"128\",\"name\":\"Charbel Mendoza\",\"primary_external_code\":\"458\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"16\",\"externalCode\":\"AR24\",\"name\":\"Der. Inmobiliario\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-01-14 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000458-SR-000450 - Regularizaci\\u00f3n Anexi\\u00f3n y Transferencia inmuebles Taller Flia. Mendoza\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000458-SR-000450\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"247\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Honorario a\\u00fan sin definir. Se definir\\u00e1 en base al volumen de trabajo realizado\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000458-SR-000450\",\"processing\":false,\"secondaryExternalCode\":\"3102\",\"secondary_external_code\":\"3102\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"aaraoz@emba.com\",\"enabled\":true,\"fullName\":\"Alvaro Araoz Ardaya\",\"id\":17,\"locale\":\"es\",\"shortName\":\"aaraoz\",\"superAdmin\":false,\"updated_at\":\"2024-12-04 15:29:19\",\"userType\":1,\"username\":\"aaraoz@emba.com\"},\"customer\":{\"id\":\"128\",\"name\":\"Charbel Mendoza\",\"primary_external_code\":\"458\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"16\",\"externalCode\":\"AR24\",\"name\":\"Der. Inmobiliario\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-01-14 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000458-SR-000451 - Regularizaci\\u00f3n y Transferencia inmueble Escuda\\u00f1o No.9\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000458-SR-000451\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"248\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Honorario a\\u00fan sin definir. Se definir\\u00e1 en base al volumen de trabajo realizado\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000458-SR-000451\",\"processing\":false,\"secondaryExternalCode\":\"3103\",\"secondary_external_code\":\"3103\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"aaraoz@emba.com\",\"enabled\":true,\"fullName\":\"Alvaro Araoz Ardaya\",\"id\":17,\"locale\":\"es\",\"shortName\":\"aaraoz\",\"superAdmin\":false,\"updated_at\":\"2024-12-04 15:29:19\",\"userType\":1,\"username\":\"aaraoz@emba.com\"},\"customer\":{\"id\":\"128\",\"name\":\"Charbel Mendoza\",\"primary_external_code\":\"458\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"16\",\"externalCode\":\"AR24\",\"name\":\"Der. Inmobiliario\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-01-14 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000458-SR-000452 - Regularizaci\\u00f3n y Transferencia inmueble Escuda\\u00f1o No.5\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000458-SR-000452\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"249\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Honorario a\\u00fan sin definir. Se definir\\u00e1 en base al volumen de trabajo realizado\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000458-SR-000452\",\"processing\":false,\"secondaryExternalCode\":\"3104\",\"secondary_external_code\":\"3104\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"aaraoz@emba.com\",\"enabled\":true,\"fullName\":\"Alvaro Araoz Ardaya\",\"id\":17,\"locale\":\"es\",\"shortName\":\"aaraoz\",\"superAdmin\":false,\"updated_at\":\"2024-12-04 15:29:19\",\"userType\":1,\"username\":\"aaraoz@emba.com\"},\"customer\":{\"id\":\"128\",\"name\":\"Charbel Mendoza\",\"primary_external_code\":\"458\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"16\",\"externalCode\":\"AR24\",\"name\":\"Der. Inmobiliario\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-02-15 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000458-SR-000475 - Compra inmueble Condominio Colinas del Urub\\u00f3 Lote 8\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000458-SR-000475\",\"finishedDate\":null,\"fixRateValue\":1500,\"fix_rate_value\":1500,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"250\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Honhorario final por definir\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000458-SR-000475\",\"processing\":false,\"secondaryExternalCode\":\"3174\",\"secondary_external_code\":\"3174\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"aaraoz@emba.com\",\"enabled\":true,\"fullName\":\"Alvaro Araoz Ardaya\",\"id\":17,\"locale\":\"es\",\"shortName\":\"aaraoz\",\"superAdmin\":false,\"updated_at\":\"2024-12-04 15:29:19\",\"userType\":1,\"username\":\"aaraoz@emba.com\"},\"customer\":{\"id\":\"128\",\"name\":\"Charbel Mendoza\",\"primary_external_code\":\"458\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"16\",\"externalCode\":\"AR24\",\"name\":\"Der. Inmobiliario\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-12-22 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000458-SR-000563 - Elaboraci\\u00f3n, protocolizaci\\u00f3n y registro de Usufructos casa No. 9, 5, Lote Taller\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000458-SR-000563\",\"finishedDate\":null,\"fixRateValue\":1780,\"fix_rate_value\":1780,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"251\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000458-SR-000563\",\"processing\":false,\"secondaryExternalCode\":\"3782\",\"secondary_external_code\":\"3782\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"aaraoz@emba.com\",\"enabled\":true,\"fullName\":\"Alvaro Araoz Ardaya\",\"id\":17,\"locale\":\"es\",\"shortName\":\"aaraoz\",\"superAdmin\":false,\"updated_at\":\"2024-12-04 15:29:19\",\"userType\":1,\"username\":\"aaraoz@emba.com\"},\"customer\":{\"id\":\"128\",\"name\":\"Charbel Mendoza\",\"primary_external_code\":\"458\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"16\",\"externalCode\":\"AR24\",\"name\":\"Der. Inmobiliario\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2023-10-10 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000615-SR-000887 - PROCESO CAJA PETROLERA DE SALUD ct. AGENCIA EFE\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000615-SR-000887\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1248\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000615-SR-000887\",\"processing\":false,\"secondaryExternalCode\":\"4504\",\"secondary_external_code\":\"4504\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-06-11 21:57:19\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"nezegarra@emba.com\",\"enabled\":true,\"fullName\":\"Natalio Eduardo Zegarra Ribera\",\"id\":15,\"locale\":\"es\",\"shortName\":\"nzegarra\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"nezegarra@emba.com\"},\"customer\":{\"id\":\"15\",\"name\":\"AGENCIA EFE S.A.U., S.M.E. SUCURSAL BOLIVIA\",\"primary_external_code\":\"615\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"17\",\"externalCode\":\"AR08\",\"name\":\"Der. Laboral y Seg. Soc.\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2019-10-11 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000239-SR-000800 - Defensa Tributaria VC 291979000410\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000239-SR-000800\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1249\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000239-SR-000800\",\"processing\":false,\"secondaryExternalCode\":\"1728\",\"secondary_external_code\":\"1728\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"rburgos@emba.com\",\"enabled\":true,\"fullName\":\"Edwin Rodrigo Burgos Fernandez\",\"id\":16,\"locale\":\"es\",\"shortName\":\"rburgos\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rburgos@emba.com\"},\"customer\":{\"id\":\"21\",\"name\":\"AGROGRAIN LIMITED SUCURSAL URUGUAY\",\"primary_external_code\":\"239\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"19\",\"externalCode\":\"AR09\",\"name\":\"Der. Tributario\\u0026 Plan.Fiscal\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2025-06-26 00:00:00\",\"confidential\":false,\"created_at\":\"2020-10-22 05:00:00\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000076-SR-000809 - PROCESO JUDICIAL LABORAL SEGUIDO POR MARCOS ROLANDO ESCALANTE EDUARDO Y OTROS\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000076-SR-000809\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1252\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":0,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000076-SR-000809\",\"processing\":false,\"secondaryExternalCode\":\"2320\",\"secondary_external_code\":\"2320\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2025-06-26 11:53:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-28 20:51:13\",\"daysAllow\":302,\"email\":\"Prueba@prueba.com\",\"enabled\":true,\"fullName\":\"Ramiro Moreno Baldivieso\",\"id\":72,\"locale\":\"es\",\"shortName\":\"rmorenob\",\"superAdmin\":false,\"updated_at\":\"2024-08-29 14:19:23\",\"userType\":1,\"username\":\"Prueba@prueba.com\"},\"customer\":{\"id\":\"71\",\"name\":\"BANCO DO BRASIL S.A. SUC. BOLIVIA\",\"primary_external_code\":\"76\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"17\",\"externalCode\":\"AR08\",\"name\":\"Der. Laboral y Seg. Soc.\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-11 00:00:00\",\"confidential\":false,\"created_at\":\"2019-05-06 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000252-SR-000795 - Proceso Ejecutivo SANTA ESTHER ADAUTO VARGAS\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000252-SR-000795\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1254\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"REVISAR QUE HITO CORRESPONDE FACTURAR\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000252-SR-000795\",\"processing\":false,\"secondaryExternalCode\":\"1342\",\"secondary_external_code\":\"1342\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-11 22:01:40\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"72\",\"name\":\"Banco Nacional de Bolivia S.A.\",\"primary_external_code\":\"252\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-11 00:00:00\",\"confidential\":false,\"created_at\":\"2019-06-10 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000252-SR-000796 - Proceso Ejecutivo ROXANA COIMBRA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000252-SR-000796\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1255\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000252-SR-000796\",\"processing\":false,\"secondaryExternalCode\":\"1428\",\"secondary_external_code\":\"1428\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-11 21:57:19\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"72\",\"name\":\"Banco Nacional de Bolivia S.A.\",\"primary_external_code\":\"252\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-11 00:00:00\",\"confidential\":false,\"created_at\":\"2019-11-08 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000252-SR-000801 - Proceso Ejecutivo ERICK ROSENDO MORALES HUAYTA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000252-SR-000801\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1256\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Revisar cual hito debe ser facturado\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000252-SR-000801\",\"processing\":false,\"secondaryExternalCode\":\"1782\",\"secondary_external_code\":\"1782\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-11 21:52:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"72\",\"name\":\"Banco Nacional de Bolivia S.A.\",\"primary_external_code\":\"252\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-11 00:00:00\",\"confidential\":false,\"created_at\":\"2019-11-20 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000252-SR-000802 - Proceso Coactivo JUAN CARLOS SAAVEDRA HERBAS\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000252-SR-000802\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1257\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Los honorarios dependen de la etapa en que se acabe el proceso y la recuperaci\\u00f3n de fondos. Asimismo, en caso de desistimiento o retiro de demanda, el cliente pagar\\u00e1 Bs. 800.-\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000252-SR-000802\",\"processing\":false,\"secondaryExternalCode\":\"1801\",\"secondary_external_code\":\"1801\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-11 21:10:43\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"72\",\"name\":\"Banco Nacional de Bolivia S.A.\",\"primary_external_code\":\"252\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-11 00:00:00\",\"confidential\":false,\"created_at\":\"2022-01-24 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000252-SR-000826 - Proceso Coactivo Edwin Valverde Barriga\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000252-SR-000826\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1258\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Revisar los hitos a ser facturados\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000252-SR-000826\",\"processing\":false,\"secondaryExternalCode\":\"3113\",\"secondary_external_code\":\"3113\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-11 21:16:38\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"72\",\"name\":\"Banco Nacional de Bolivia S.A.\",\"primary_external_code\":\"252\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-11 00:00:00\",\"confidential\":false,\"created_at\":\"2022-01-24 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000252-SR-000827 - Proceso Ejecutivo Jaime Torrez Rojas\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000252-SR-000827\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1259\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Revisar los hitos para facturar\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000252-SR-000827\",\"processing\":false,\"secondaryExternalCode\":\"3115\",\"secondary_external_code\":\"3115\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-11 21:48:35\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"72\",\"name\":\"Banco Nacional de Bolivia S.A.\",\"primary_external_code\":\"252\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-08 00:00:00\",\"confidential\":false,\"created_at\":\"2022-05-07 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000252-SR-000834 - Proceso civil ejecutivo contra Ciro Daniel Torrez Ferreira\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000252-SR-000834\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1261\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Revisar hitos para cobrar\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000252-SR-000834\",\"processing\":false,\"secondaryExternalCode\":\"3375\",\"secondary_external_code\":\"3375\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-08 19:02:34\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"72\",\"name\":\"Banco Nacional de Bolivia S.A.\",\"primary_external_code\":\"252\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-04-19 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000079-SR-000833 - Arbitraje Luis Fernando Saavedra\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000079-SR-000833\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1262\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000079-SR-000833\",\"processing\":false,\"secondaryExternalCode\":\"3304\",\"secondary_external_code\":\"3304\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"111\",\"name\":\"BUPA INSURANCE (BOLIVIA) S.A.\",\"primary_external_code\":\"79\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"2\",\"externalCode\":\"AR04\",\"name\":\"Arbitraje\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-11-14 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000079-SR-000890 - Proyecto SIMON\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000079-SR-000890\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1263\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000079-SR-000890\",\"processing\":false,\"secondaryExternalCode\":\"4590\",\"secondary_external_code\":\"4590\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"111\",\"name\":\"BUPA INSURANCE (BOLIVIA) S.A.\",\"primary_external_code\":\"79\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-02-28 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000551-SR-000862 - DD y Restructuraci\\u00f3n - Estructural\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000551-SR-000862\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1264\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000551-SR-000862\",\"processing\":false,\"secondaryExternalCode\":\"3944\",\"secondary_external_code\":\"3944\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"nicoln042001@gmail.com\",\"enabled\":true,\"fullName\":\"Daniel Marcelo Arredondo Zelada\",\"id\":6,\"locale\":\"es\",\"shortName\":\"darredon\",\"superAdmin\":false,\"updated_at\":\"2024-09-03 11:43:07\",\"userType\":1,\"username\":\"darredondo@emba.com.bo\"},\"customer\":{\"id\":\"126\",\"name\":\"CER\\u00c1MICA ESTRUCTURAL DE BOLIVIA S.A.\",\"primary_external_code\":\"551\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-02-27 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000458-SR-000861 - Demanda Laboral FAGOL Embotelladora Oriental\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000458-SR-000861\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1265\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000458-SR-000861\",\"processing\":false,\"secondaryExternalCode\":\"3935\",\"secondary_external_code\":\"3935\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"aaraoz@emba.com\",\"enabled\":true,\"fullName\":\"Alvaro Araoz Ardaya\",\"id\":17,\"locale\":\"es\",\"shortName\":\"aaraoz\",\"superAdmin\":false,\"updated_at\":\"2024-12-04 15:29:19\",\"userType\":1,\"username\":\"aaraoz@emba.com\"},\"customer\":{\"id\":\"128\",\"name\":\"Charbel Mendoza\",\"primary_external_code\":\"458\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"17\",\"externalCode\":\"AR08\",\"name\":\"Der. Laboral y Seg. Soc.\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-26 00:00:00\",\"confidential\":false,\"created_at\":\"2020-04-01 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000153-SR-000922 - Servicio Legales por hora (FM)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000153-SR-000922\",\"finishedDate\":null,\"fixRateValue\":1,\"fix_rate_value\":1,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1415\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000153-SR-000922\",\"processing\":false,\"secondaryExternalCode\":\"\",\"secondary_external_code\":\"\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-09 10:25:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"104\",\"name\":\"BRINK\\u0027S BOLIVIA S.A.\",\"primary_external_code\":\"153\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2021-10-22 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000288-SR-000917 - Disoluci\\u00f3n Liquidaci\\u00f3n\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000288-SR-000917\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1494\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000288-SR-000917\",\"processing\":false,\"secondaryExternalCode\":\"2972\",\"secondary_external_code\":\"2972\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"aaraoz@emba.com\",\"enabled\":true,\"fullName\":\"Alvaro Araoz Ardaya\",\"id\":17,\"locale\":\"es\",\"shortName\":\"aaraoz\",\"superAdmin\":false,\"updated_at\":\"2024-12-04 15:29:19\",\"userType\":1,\"username\":\"aaraoz@emba.com\"},\"customer\":{\"id\":\"105\",\"name\":\"BROADTEL BOLIVIA S.R.L.\",\"primary_external_code\":\"288\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"5\",\"externalCode\":\"AR02\",\"name\":\"Der.Civil \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":\"\",\"caseNumber\":null,\"closed_date\":\"2024-03-08 00:00:00\",\"confidential\":false,\"created_at\":\"2024-01-24 21:49:49\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000252-SR-001076 - PROCESO COACTIVO - JEANCYS DEL CARMEN MORILLO LUGO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000252-SR-001076\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1508\",\"internal_code\":\"\",\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000252-SR-001076\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-08 19:39:58\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"72\",\"name\":\"Banco Nacional de Bolivia S.A.\",\"primary_external_code\":\"252\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-09 00:00:00\",\"confidential\":false,\"created_at\":\"2024-01-25 15:48:18\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000372-SR-000985 - Precios de Transferencia al 31.12.2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000372-SR-000985\",\"finishedDate\":null,\"fixRateValue\":1740,\"fix_rate_value\":1740,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1509\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Se debe facturar 50% inicio y el 50% final\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000372-SR-000985\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"rburgos@emba.com\",\"enabled\":true,\"fullName\":\"Edwin Rodrigo Burgos Fernandez\",\"id\":16,\"locale\":\"es\",\"shortName\":\"rburgos\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rburgos@emba.com\"},\"customer\":{\"id\":\"11\",\"name\":\"AESA RATINGS S.A.\",\"primary_external_code\":\"372\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"19\",\"externalCode\":\"AR09\",\"name\":\"Der. Tributario\\u0026 Plan.Fiscal\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-01 13:37:55\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000252-SR-001077 - Proceso Ejecutivo - PEDRO MIRANDA GARCIA Y PATRICIA HERNANDEZ PEREZ\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000252-SR-001077\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2289\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Revisar los hitos para cobrar\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000252-SR-001077\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-13 17:48:58\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"72\",\"name\":\"Banco Nacional de Bolivia S.A.\",\"primary_external_code\":\"252\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-01 18:49:26\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000457-SR-000993 - An\\u00e1lisis Tributario - CDI Argentina - Inf. KPMG\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000457-SR-000993\",\"finishedDate\":null,\"fixRateValue\":500,\"fix_rate_value\":500,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2291\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000457-SR-000993\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 14:03:48\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"rburgos@emba.com\",\"enabled\":true,\"fullName\":\"Edwin Rodrigo Burgos Fernandez\",\"id\":16,\"locale\":\"es\",\"shortName\":\"rburgos\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rburgos@emba.com\"},\"customer\":{\"id\":\"80\",\"name\":\"BECLEVER\",\"primary_external_code\":\"457\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"19\",\"externalCode\":\"AR09\",\"name\":\"Der. Tributario\\u0026 Plan.Fiscal\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-08 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-14 16:21:34\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000252-SR-001012 - Proceso Coactivo - VICTOR MANUEL HEREDIA JUSTINIANO Y ELIANA ALIZON ROJAS JUSTINIANO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000252-SR-001012\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2324\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Revisar resultado en los hitos para cobrar\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000252-SR-001012\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-08 19:52:00\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"72\",\"name\":\"Banco Nacional de Bolivia S.A.\",\"primary_external_code\":\"252\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-07 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-14 16:23:39\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000252-SR-001013 - BNB\\/Cintia Coral Villegas Flores- Proceso coactivo\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000252-SR-001013\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2325\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000252-SR-001013\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-07 22:12:19\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"72\",\"name\":\"Banco Nacional de Bolivia S.A.\",\"primary_external_code\":\"252\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-08 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-14 16:24:53\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000252-SR-001014 - BNB\\/Juan Jos\\u00e9 Franco Espinoza- Proceso coactivo\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000252-SR-001014\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2326\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000252-SR-001014\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-08 15:45:01\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"72\",\"name\":\"Banco Nacional de Bolivia S.A.\",\"primary_external_code\":\"252\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":1,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-20 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-20 18:09:42\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000270-SR-001024 - Servicios legales mensuales (FM)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000270-SR-001024\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2342\",\"internal_code\":null,\"isBillable\":false,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000270-SR-001024\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"lmorenog@emba.com\",\"enabled\":true,\"fullName\":\"Luis Moreno Gutierrez\",\"id\":8,\"locale\":\"es\",\"shortName\":\"lmoreno\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"lmorenog@emba.com\"},\"customer\":{\"id\":\"95\",\"name\":\"BLOCCREATIVO S.R.L.\",\"primary_external_code\":\"270\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-08 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-20 20:27:23\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000252-SR-001026 - BNB\\/Sergio Eduardo Yanatelli Ocampo- Proceso coactivo \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000252-SR-001026\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2345\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"REVISAR CUAL HITO DEBER SER FACTURADO\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000252-SR-001026\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-08 18:33:50\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"72\",\"name\":\"Banco Nacional de Bolivia S.A.\",\"primary_external_code\":\"252\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-07 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-20 20:46:44\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000252-SR-001027 - DEMANDA COACTIVA BNB\\/ FELIX MARTINEZ VALLEJOS\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000252-SR-001027\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2346\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Verificar el estado de los hitos para facturar\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000252-SR-001027\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-07 14:59:55\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"72\",\"name\":\"Banco Nacional de Bolivia S.A.\",\"primary_external_code\":\"252\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-29 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-29 16:10:09\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000076-SR-001082 - TOMAS ELIO CECIN contra ISABEL PEREIRA Y NATALIO ZEGARRA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000076-SR-001082\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2553\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"el 1er hito ya fue cancelado\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000076-SR-001082\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"nezegarra@emba.com\",\"enabled\":true,\"fullName\":\"Natalio Eduardo Zegarra Ribera\",\"id\":15,\"locale\":\"es\",\"shortName\":\"nzegarra\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"nezegarra@emba.com\"},\"customer\":{\"id\":\"71\",\"name\":\"BANCO DO BRASIL S.A. SUC. BOLIVIA\",\"primary_external_code\":\"76\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"34\",\"externalCode\":\"AR03\",\"name\":\"Der. Penal\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-07 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-07 22:53:51\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000252-SR-001111 - BNB\\/ OSCAR MOLLINEDO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000252-SR-001111\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2645\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"REVISAR CUAL HITO FACTURAR\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000252-SR-001111\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-07 17:53:52\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"72\",\"name\":\"Banco Nacional de Bolivia S.A.\",\"primary_external_code\":\"252\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-11 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-11 18:34:04\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000252-SR-001114 - Proceso ejecutivo - ALVARO REYES JAGER\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000252-SR-001114\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2657\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000252-SR-001114\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-11 12:34:04\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"72\",\"name\":\"Banco Nacional de Bolivia S.A.\",\"primary_external_code\":\"252\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-11 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-11 18:42:01\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000252-SR-001115 - Proceso coactivo - LUIS GERMAN CLEMENTE QUISPE\\/BERNAR RAMOS RUEDA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000252-SR-001115\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2658\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000252-SR-001115\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-13 17:54:40\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"72\",\"name\":\"Banco Nacional de Bolivia S.A.\",\"primary_external_code\":\"252\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-18 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-18 15:12:38\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000252-SR-001135 - Proceso ejecutivo Edmundo Faldin y otros\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000252-SR-001135\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2712\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Cuant\\u00eda demandada es de Bs. 457.624,70.\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000252-SR-001135\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-18 15:43:35\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"72\",\"name\":\"Banco Nacional de Bolivia S.A.\",\"primary_external_code\":\"252\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-20 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-20 18:27:45\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000158-SR-001137 - Proceso contra empresa SELM\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000158-SR-001137\",\"finishedDate\":null,\"fixRateValue\":1000,\"fix_rate_value\":1000,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2739\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Este honorario debe ser ajustado Dr Ren\\u00e9 una vez el Dr. Ramiro nos comparta el monto acordado.\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000158-SR-001137\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-20 12:27:49\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"122\",\"name\":\"CASTELLANOS CONSTRUCCIONES S.R.L.\",\"primary_external_code\":\"158\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"2\",\"externalCode\":\"AR04\",\"name\":\"Arbitraje\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-22 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-22 16:00:27\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000908-SR-001138 - Demanda ejecutiva Apelaci\\u00f3n Cambridge contra Yumilka Pe\\u00f1a Soliz \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000908-SR-001138\",\"finishedDate\":null,\"fixRateValue\":500,\"fix_rate_value\":500,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2740\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"En este proceso se pact\\u00f3 que se cobrara USD. 500.- hasta la presentaci\\u00f3n de la Apelaci\\u00f3n al auto definitivo que anula la sentencia. 100% al final.\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000908-SR-001138\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-22 16:00:48\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"115\",\"name\":\"CAMBRIDGE COLLEGE S.R.L.\",\"primary_external_code\":\"908\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-25 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-25 21:17:12\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000378-SR-001142 - Terminacion anticipada de contrato de distribucion ASICS\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000378-SR-001142\",\"finishedDate\":null,\"fixRateValue\":750,\"fix_rate_value\":750,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2745\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000378-SR-001142\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-01 15:17:08\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"amorenog@emba.com\",\"enabled\":true,\"fullName\":\"Andres Moreno Gutierrez\",\"id\":5,\"locale\":\"es\",\"shortName\":\"amoreno\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"amorenog@emba.com\"},\"customer\":{\"id\":\"77\",\"name\":\"BARREIRO OLIVA DE LUCA JACA NICASTRO\",\"primary_external_code\":\"378\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"6\",\"externalCode\":\"AR17\",\"name\":\"Der.Comercial \\n\"}}]}}}\n","time":"2025-07-30T10:50:39-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: POST https://apinewtm.com/graphql/\nHeaders: map[Accept:[application/json] Authorization:[Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJpYXQiOjE3NTM4ODY1MjIsImV4cCI6MTc1Mzk2NjUyMiwiaWQiOjEwNSwidXNlcm5hbWUiOiJpbnRlZ3JhY2lvbmVzQGVtYmEuYm8iLCJhcGlrZXkiOiI5Yzg0ZjYzZTRlMzk2ZGZmOWU5ZjU3NDI5OGRmZWUzOSIsImFwaWtleUNyZWF0ZWRBdCI6eyJkYXRlIjoiMjAyNS0wNy0xNyAxMDo0MToyNS4wMDAwMDAiLCJ0aW1lem9uZV90eXBlIjozLCJ0aW1lem9uZSI6IkFtZXJpY2EvQm9nb3RhIn0sImZ1bGxOYW1lIjoiSW50ZWdyYWNpw7NuIEVNQkEiLCJlbWFpbCI6ImludGVncmFjaW9uZXNAZW1iYS5ibyIsImxvY2FsZSI6ImVzIiwiZGF5c0FsbG93ZWQiOjMwLCJpc0Nvb3JkaW5hdG9yIjpmYWxzZSwidHlwZVRhc2tWaWV3IjoibGlzdHMiLCJkYXlzYWxsb3ciOjMwLCJyb2xlcyI6e30sInNob3J0X25hbWUiOiJJTi5FTUJBIiwicGVybWlzc2lvbnMiOlsic3luY19leHRlcm5hbF9idXNpbmVzcyIsInN5bmNfZXh0ZXJuYWxfY3VzdG9tZXIiLCJzeW5jX2V4dGVybmFsX21pbGVzdG9uZSIsImFic2VuY2VfYXBwcm92ZSIsImFic2VuY2VfY3JlYXRlX2FsbCIsImFic2VuY2VfY3JlYXRlX293biIsImFic2VuY2VfbWVudSIsImFjY291bnRpbmdfYnVzaW5lc3NfbGlzdCIsImFjY291bnRpbmdfY3VzdG9tZXJfbGlzdCIsImJpbGxpbmdfcGVyaW9kX2RlbGV0ZV9hbGwiLCJiaWxsaW5nX3BlcmlvZF9lZGl0X2FsbCIsImJpbGxpbmdfcGVyaW9kX2xpc3QiLCJiaWxsaW5nX3BlcmlvZF9yZWFjdGl2YXRlIiwiYm9hcmRfcmF0ZV91c2VyX2NyZWF0ZSIsImJvYXJkX3JhdGVfdXNlcl9lZGl0IiwiYnVzaW5lc3NfY3JlYXRlIiwiYnVzaW5lc3NfZGVzY3JpcHRpb25fc2F2ZSIsImJ1c2luZXNzX2VkaXQiLCJidXNpbmVzc19saXN0X2FsbCIsImJ1c2luZXNzX21lbnUiLCJidXNpbmVzc19yZXNwb25zaWJsZV9saXN0X2FsbCIsImJ1c2luZXNzX3NlZV9iaWxsaW5nX2luZm8iLCJidXNpbmVzc2VzX2FsbG93ZWRfdXNlcl9jcmVhdGUiLCJidXNpbmVzc2VzX2FsbG93ZWRfdXNlcl9kZWxldGUiLCJjb21wYW55X2Rpc2FibGUiLCJjb21wYW55X2VkaXQiLCJjb21wYW55X2xpc3QiLCJjb25jZXB0X2NyZWF0ZSIsImNvbmNlcHRfZWRpdCIsImNvbmNlcHRfbWVudSIsImNvbnRhY3RfY3JlYXRlIiwiY29udGFjdF9jcmVhdGVfZmFzdCIsImNvbnRhY3RfZWRpdCIsImNvbnRhY3RfbGlzdCIsImNvbnRhY3RfbWVudSIsImN1c3RvbWVyX2NyZWF0ZSIsImN1c3RvbWVyX2NyZWF0ZV9mYXN0IiwiY3VzdG9tZXJfZWRpdCIsImN1c3RvbWVyX2xpc3QiLCJjdXN0b21lcl9saXN0X2FsbCIsImN1c3RvbWVyX21lbnUiLCJleHBlbnNlX2NyZWF0ZV9hbGwiLCJleHBlbnNlX2RlbGV0ZV9hbGwiLCJleHBlbnNlX2R1cGxpY2F0ZSIsImV4cGVuc2VfZWRpdF9hbGwiLCJleHBlbnNlX2xpc3RfYWxsIiwiZXhwZW5zZV9tZW51IiwiZXhwZW5zZV9yZWplY3RfYWxsIiwiZmFiX3Nob3ciLCJmaWxlX21lbnUiLCJnZW9yZWZlcmVuY2VfY3JlYXRlIiwiZ2VvcmVmZXJlbmNlX2VkaXQiLCJnZW9yZWZlcmVuY2VfbWVudSIsImdvX3RvX2xlZ2FjeSIsImluZGljYXRvcnNfbWVudSIsImludm9pY2VfY3JlYXRlIiwiaW52b2ljZV9kZXRhaWxfbGlzdF9hbGwiLCJpbnZvaWNlX2ZpeF90aW1lc19jdXN0b21fdmFsdWUiLCJpbnZvaWNlX2xpc3RfYWxsIiwiaW52b2ljZWFkdmFuY2VfY3JlYXRlIiwiaW52b2ljZWFkdmFuY2VfbGlzdCIsImludm9pY2VhZHZhbmNlX3VwZGF0ZSIsImxvZ19saXN0X2FsbCIsImxvZ19saXN0X293biIsIm1pbGVzdG9uZV9jcmVhdGUiLCJtaWxlc3RvbmVfZGVsZXRlIiwibWlsZXN0b25lX2VkaXQiLCJtb250aGx5X2ZpeF9yYXRlX2dyb3VwX2NyZWF0ZSIsIm1vbnRobHlfZml4X3JhdGVfZ3JvdXBfZWRpdCIsIm1vbnRobHlfdXNlcl9jb3N0X2NyZWF0ZSIsIm1vbnRobHlfdXNlcl9jb3N0X2VkaXQiLCJwYXltZW50X2NyZWF0ZSIsInBheW1lbnRfZGVsZXRlIiwicGF5bWVudF9lZGl0IiwicGF5bWVudF9tZW51IiwicHJvY2VkdXJlX21lbnUiLCJwcm9jZWR1cmVfcmF0ZV9jcmVhdGUiLCJwcm9jZWR1cmVfcmF0ZV9kZXRhaWxfY3JlYXRlIiwicHJvY2VkdXJlX3JhdGVfZGV0YWlsX2VkaXQiLCJwcm9jZWR1cmVfcmF0ZV9kZXRhaWxfbGlzdCIsInByb2NlZHVyZV9yYXRlX2VkaXQiLCJwcm9jZWR1cmVfcmF0ZV9saXN0IiwicHJvY2VkdXJlX3JhdGVfbWVudSIsInByb2NlZHVyZV90cmFuc2FjdGlvbl9saXN0IiwicHJvamVjdF9hcmNoaXZlX2Nhc2NhZGVfYWxsIiwicHJvamVjdF9kZWxldGVfY2FzY2FkZV9hbGwiLCJwcm9qZWN0X3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInJhdGVfYnVzaW5lc3NfY2F0ZWdvcnlfY3JlYXRlIiwicmF0ZV9idXNpbmVzc19jYXRlZ29yeV9lZGl0IiwicmF0ZV9idXNpbmVzc191c2VyX2NyZWF0ZSIsInJhdGVfYnVzaW5lc3NfdXNlcl9lZGl0IiwicmF0ZV9leGNoYW5nZV9jcmVhdGUiLCJyYXRlX2V4Y2hhbmdlX2VkaXQiLCJyYXRlX2V4Y2hhbmdlX2xpc3QiLCJyYXRlX3VzZXJfY3JlYXRlIiwicmF0ZV91c2VyX2VkaXQiLCJyb2xlX2NyZWF0ZSIsInJvbGVfZWRpdF9hbGwiLCJyb2xlX2xpc3RfYWxsIiwic2VjdGlvbl9hcmNoaXZlX2Nhc2NhZGVfYWxsIiwic2VjdGlvbl9kZWxldGVfY2FzY2FkZV9hbGwiLCJzZWN0aW9uX3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInNlZV9tZW51X3JhdGVfZXhjaGFuZ2UiLCJzZXJpZV9jcmVhdGUiLCJzZXJpZV9lZGl0Iiwic2VyaWVfbWVudSIsInNldHRpbmdzX3ZpZXciLCJzdXBwbGllcl9jcmVhdGUiLCJ0YXNrX2FkZF90aW1lX2FsbCIsInRhc2tfYWRkX3RpbWVfb3duIiwidGFza19hc3NpZ25lZF91c2VyX2VtYWlsIiwidGFza19jbG9zZWRfZW1haWwiLCJ0YXNrX2NyZWF0ZV9hbGwiLCJ0YXNrX2NyZWF0ZV9jb21tZW50X2VtYWlsIiwidGFza19jcmVhdGVfc2VsZiIsInRhc2tfY3JlYXRlX3RlYW0iLCJ0YXNrX2RlbGV0ZV9hbGwiLCJ0YXNrX2RlbGV0ZV9vd24iLCJ0YXNrX2RlbGV0ZV90ZWFtIiwidGFza19lZGl0X2FsbCIsInRhc2tfZWRpdF9kdWVfZGF0ZSIsInRhc2tfZWRpdF9vd24iLCJ0YXNrX2VkaXRfdGVhbSIsInRhc2tfbGlzdF9hbGwiLCJ0YXNrX2xpc3Rfb3duIiwidGFza19saXN0X3RlYW0iLCJ0YXNrX21hc3NpdmVpbXBvcnQiLCJ0YXNrX21lbnUiLCJ0YXNrX21pZ3JhdGlvbiIsInRhc2tfc2V0X2FkZGl0aW9uYWxfYXNzaWduZWVzIiwidGFza19zZXRfZHVlX2RhdGUiLCJ0YXNrX3NldF9lc3RpbWF0ZWRfdGltZSIsInRhc2tfc2V0X3ByaW9yaXR5IiwidGFza19zZXRfcHJvZ3Jlc3MiLCJ0YXhfZWRpdF9hbGwiLCJ0YXhfbGlzdF9hbGwiLCJ0ZWFtX2FyY2hpdmVfY2FzY2FkZV9hbGwiLCJ0ZWFtX2NyZWF0ZV9hbGwiLCJ0ZWFtX2RlbGV0ZV9hbGwiLCJ0ZWFtX2VkaXRfYWxsIiwidGVhbV9saXN0X2FsbCIsInRlYW1fbGlzdF9vd24iLCJ0ZWFtX3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInRpbWVfYWNjZXB0X2FsbCIsInRpbWVfYWNjZXB0X293biIsInRpbWVfYXBwcm92ZV9hbGwiLCJ0aW1lX2FwcHJvdmVfb3duIiwidGltZV9jcmVhdGVfYWxsIiwidGltZV9jcmVhdGVfb3duIiwidGltZV9kZWxldGVfYWxsIiwidGltZV9kZWxldGVfb3duIiwidGltZV9kZW55X2FsbCIsInRpbWVfZGVueV9vd24iLCJ0aW1lX2Rvd25sb2FkZmlsZV9hbGwiLCJ0aW1lX2Rvd25sb2FkZmlsZV9vd24iLCJ0aW1lX2VkaXRfYWxsIiwidGltZV9lZGl0X2Nsb3NlX3BlcmlvZF9hbGwiLCJ0aW1lX2VkaXRfY2xvc2VfcGVyaW9kX293biIsInRpbWVfZWRpdF9vd24iLCJ0aW1lX2xpc3RfYWxsIiwidGltZV9saXN0X293biIsInRpbWVfbWVudSIsInRpbWVfbWludXRlc196ZXJvIiwidGltZV9yZWplY3RfYWxsIiwidGltZV9yZXN0cmljdGVkX3BlcmlvZF9jcmVhdGUiLCJ0aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX2VkaXQiLCJ0aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX21lbnUiLCJ0aW1lX3NoYXJlX2FsbCIsInRpbWVfc2hhcmVfb3duIiwidGltZV9zaG93X2NhbGVuZGFyX3ZpZXciLCJ0aW1lX3VwbG9hZGZpbGVfYWxsIiwidGltZV91cGxvYWRmaWxlX293biIsInRyYW5zYWN0aW9uX2FkYXB0ZXJfbGlzdCIsInRyYW5zYWN0aW9uX2xpc3QiLCJ1c2VyX2Fic2VuY2VzX3Nob3ciLCJ1c2VyX2Nvc3RfY3JlYXRlIiwidXNlcl9jb3N0X2VkaXQiLCJ1c2VyX2Nvc3RfbGlzdCIsInVzZXJfY29zdF9tZW51IiwidXNlcl9jb3N0X3JhdGVfY3JlYXRlIiwidXNlcl9jb3N0X3JhdGVfZWRpdCIsInVzZXJfY29zdF9yYXRlX2xpc3QiLCJ1c2VyX2NyZWF0ZSIsInVzZXJfZGlzYWJsZSIsInVzZXJfZWRpdCIsInVzZXJfZWRpdF9kYXlzX2FsbG93X29ubHkiLCJ1c2VyX2dyb3VwX3JvbGVfY3JlYXRlX2FsbCIsInVzZXJfZ3JvdXBfcm9sZV9kZWxldGVfYWxsIiwidXNlcl9ncm91cF9yb2xlX2VkaXRfYWxsIiwidXNlcl9ncm91cF9yb2xlc19saXN0X2FsbCIsInVzZXJfbGlzdCIsInVzZXJfbGlzdF9hbGwiLCJ1c2VyX21hc3NfYWN0aXZhdGlvbiIsInVzZXJfcHJvZHVjdGl2aXR5X2NyZWF0ZSIsInVzZXJfcHJvZHVjdGl2aXR5X2Rpc2FibGUiLCJ1c2VyX3Byb2R1Y3Rpdml0eV9lZGl0IiwidXNlcl9wcm9kdWN0aXZpdHlfZW5hYmxlIiwidXNlcl9wcm9kdWN0aXZpdHlfbWVudSIsInVzZXJfdGltZV9yZXN0cmljdGVkX3BlcmlvZF9jcmVhdGUiLCJ1c2VyX3RpbWVfcmVzdHJpY3RlZF9wZXJpb2RfZGVsZXRlIiwidXNlcl90aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX2VkaXQiLCJ1c2VyZ3JvdXBfY3JlYXRlX2FsbCIsInVzZXJncm91cF9kZWxldGVfYWxsIiwidXNlcmdyb3VwX2VkaXRfYWxsIiwidXNlcmdyb3VwX2xpc3RfYWxsIiwidXNlcmdyb3VwX21lbnUiLCJ1c2Vyc191c2VyX2dyb3VwX2NyZWF0ZV9hbGwiLCJ1c2Vyc191c2VyX2dyb3VwX2RlbGV0ZV9hbGwiLCJ1c2Vyc191c2VyX2dyb3VwX2VkaXRfYWxsIiwidXNlcnNfdXNlcl9ncm91cHNfbGlzdF9hbGwiXSwiaG9tZXBhZ2UiOm51bGx9.kShN7NXGoaz1oFro-yYNyIpIEcnNpo1GiB8SFGKFUJtDQoqyp1I1w-CMA8Kta3vWXnUZwx-y2z1yVSJaMpZbqQgKFlakpcf6351bZSL8IAUPExSfLz0HYYCWFx-Usx94BBTqosKsRhnT8PkPN3dGxs8-XTIEDi9gN-Pk9OSHmM5mPkTsaaxTY40M-F7Y0Up2y6s_lwFaX13CmstiYZSXzyKL9SUBBx-E6-8qQAfuKPIoZ_50jSGPW98-IkAcWwqO6yGf-M07dSfFZ2vLfwc3ulHm2p8jVSmRxJ_O43BEWQD5cvqGbVIvSMXkS4y98DL4Vencjjg27iu3CUJsDNBBTg] Content-Type:[application/json] Origin:[https://azure-function.timemanagerweb.com] Tenant-Name:[pruebas-dos] User-Agent:[Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36]]\nBody: map[query:query ($limit: Int, $orderBy: String, $orderDesc: Boolean, $page: Int) { BusinessMeta(limit: $limit, orderBy: $orderBy, orderDesc: $orderDesc, page: $page) { meta { hasNextPage hasPreviousPage limit next page pages previous total } rows { apply_procedures billable business_customer_code caseNumber closed_date confidential created_at discountAmount discountPercent displayName enableBusinessAllowedUsers expedient finishedDate fixRateValue fix_rate_value hourLimit hour_limit id internal_code isBillable limitAlert notes partialCharges partial_charges primary_external_code processing secondaryExternalCode secondary_external_code status statusMarking updated_at withIVA responsible { created_at daysAllow email enabled fullName id locale shortName superAdmin updated_at userType username } customer { id name primary_external_code company { id name } } practiceArea { id externalCode name } } } } variables:map[limit:100 orderBy:orderBy orderDesc:true page:7]]\n","time":"2025-07-30T10:50:39-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: POST https://apinewtm.com/graphql/ | Status: 200 | Duration: 2.2754147s\nHeaders: map[Access-Control-Allow-Credentials:[true] Access-Control-Allow-Origin:[https://azure-function.timemanagerweb.com] Access-Control-Expose-Headers:[link, access-control-allow-credentials] Cache-Control:[no-cache, private] Content-Type:[application/json] Date:[Wed, 30 Jul 2025 14:50:41 GMT] Server:[] Vary:[Authorization]]\nBody: {\"errors\":[{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",16,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",16,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",16,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",16,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",16,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",16,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",16,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",16,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",16,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",16,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",16,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",18,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",18,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",18,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",18,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",18,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",18,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",18,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",18,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",18,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",18,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",18,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",23,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",23,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",23,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",23,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",23,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",23,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",23,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",23,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",23,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",23,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",23,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",24,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",24,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",24,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",24,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",24,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",24,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",24,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",24,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",24,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",24,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",24,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",25,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",25,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",25,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",25,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",25,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",25,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",25,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",25,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",25,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",25,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",25,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",84,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",84,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",84,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",84,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",84,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",84,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",84,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",84,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",84,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",84,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",84,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",85,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",85,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",85,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",85,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",85,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",85,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",85,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",85,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",85,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",85,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",85,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",87,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",87,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",87,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",87,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",87,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",87,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",87,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",87,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",87,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",87,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",87,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",88,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",88,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",88,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",88,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",88,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",88,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",88,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",88,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",88,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",88,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",88,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",89,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",89,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",89,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",89,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",89,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",89,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",89,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",89,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",89,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",89,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",89,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",90,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",90,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",90,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",90,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",90,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",90,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",90,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",90,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",90,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",90,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",90,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",91,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",91,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",91,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",91,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",91,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",91,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",91,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",91,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",91,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",91,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",91,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",92,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",92,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",92,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",92,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",92,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",92,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",92,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",92,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",92,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",92,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",92,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",93,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",93,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",93,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",93,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",93,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",93,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",93,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",93,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",93,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",93,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",93,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",94,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",94,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",94,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",94,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",94,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",94,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",94,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",94,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",94,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",94,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",94,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",95,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",95,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",95,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",95,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",95,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",95,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",95,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",95,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",95,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",95,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",95,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",96,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",96,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",96,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",96,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",96,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",96,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",96,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",96,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",96,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",96,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",96,\"responsible\",\"username\"]}],\"data\":{\"BusinessMeta\":{\"meta\":{\"hasNextPage\":true,\"hasPreviousPage\":true,\"limit\":100,\"next\":8,\"page\":7,\"pages\":16,\"previous\":6,\"total\":1573},\"rows\":[{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-15 00:00:00\",\"confidential\":false,\"created_at\":\"2023-02-14 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000498-SR-000583 - Servicios Legales Mensuales\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000498-SR-000583\",\"finishedDate\":null,\"fixRateValue\":750,\"fix_rate_value\":750,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"132\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Cada hora adicional USD. 90\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000498-SR-000583\",\"processing\":false,\"secondaryExternalCode\":\"3839\",\"secondary_external_code\":\"3839\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-15 20:45:43\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"lmorenog@emba.com\",\"enabled\":true,\"fullName\":\"Luis Moreno Gutierrez\",\"id\":8,\"locale\":\"es\",\"shortName\":\"lmoreno\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"lmorenog@emba.com\"},\"customer\":{\"id\":\"163\",\"name\":\"Cooperativa Educacional Santa Cruz R.L.\",\"primary_external_code\":\"498\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"30\",\"externalCode\":\"AR33\",\"name\":\"Servicios Legales Mensuales\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":\"\",\"caseNumber\":null,\"closed_date\":\"2024-03-28 00:00:00\",\"confidential\":false,\"created_at\":\"2021-03-12 05:00:00\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000404-SR-000337 - Servicios legales mensuales (FM) Regional LP\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000404-SR-000337\",\"finishedDate\":\"2024-01-31 00:00:00\",\"fixRateValue\":565,\"fix_rate_value\":565,\"hourLimit\":5,\"hour_limit\":5,\"id\":\"133\",\"internal_code\":\"\",\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Por cada hora adicional es 90 horas, incluye IVA\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000404-SR-000337\",\"processing\":false,\"secondaryExternalCode\":\"2557\",\"secondary_external_code\":\"2557\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-28 20:23:05\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"tmercado@emba.com\",\"enabled\":true,\"fullName\":\"Teddy Alberto Mercado Carrion\",\"id\":12,\"locale\":\"es\",\"shortName\":\"tmercado\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"tmercado@emba.com\"},\"customer\":{\"id\":\"166\",\"name\":\"Copelme SA\",\"primary_external_code\":\"404\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"30\",\"externalCode\":\"AR33\",\"name\":\"Servicios Legales Mensuales\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":\"\",\"caseNumber\":null,\"closed_date\":\"2024-03-15 00:00:00\",\"confidential\":false,\"created_at\":\"2021-02-26 05:00:00\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000090-SR-000335 - Servicios Legales Mensuales (Desde 2021)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000090-SR-000335\",\"finishedDate\":\"2024-01-30 00:00:00\",\"fixRateValue\":1050,\"fix_rate_value\":1050,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"134\",\"internal_code\":\"\",\"isBillable\":true,\"limitAlert\":null,\"notes\":\"El Retainer incluye la cantidad de veinte (20) horas de atenci\\u00f3n por mes, por parte del Despacho, incluyendo trabajo de abogados de cualquier categor\\u00eda y\\/o especialidad del Despacho. Las horas adic\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000090-SR-000335\",\"processing\":false,\"secondaryExternalCode\":\"2533\",\"secondary_external_code\":\"2533\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-15 14:30:42\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"tmercado@emba.com\",\"enabled\":true,\"fullName\":\"Teddy Alberto Mercado Carrion\",\"id\":12,\"locale\":\"es\",\"shortName\":\"tmercado\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"tmercado@emba.com\"},\"customer\":{\"id\":\"168\",\"name\":\"CORPORACION ANDINA DE FOMENTO\",\"primary_external_code\":\"90\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"4\",\"externalCode\":\"AR16\",\"name\":\"Der.Mercantil-Banca\\u0026Finanzas\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-14 00:00:00\",\"confidential\":false,\"created_at\":\"2020-09-28 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000339-SR-000291 - Servicios legales mensuales (FM)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000339-SR-000291\",\"finishedDate\":null,\"fixRateValue\":500,\"fix_rate_value\":500,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"135\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Cobrar a partir de octubre (facturaci\\u00f3n en noviembre)\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000339-SR-000291\",\"processing\":false,\"secondaryExternalCode\":\"2294\",\"secondary_external_code\":\"2294\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-14 18:33:24\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"190\",\"name\":\"DeliveryHero Stores Almacenes Bolivia S.A.\",\"primary_external_code\":\"339\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"30\",\"externalCode\":\"AR33\",\"name\":\"Servicios Legales Mensuales\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-08-11 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000595-SR-000682 - Servicios Legales Mensuales\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000595-SR-000682\",\"finishedDate\":null,\"fixRateValue\":1000,\"fix_rate_value\":1000,\"hourLimit\":7,\"hour_limit\":7,\"id\":\"137\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Los honorarios son acumulables como m\\u00e1ximo por 3 meses. La vigencia de este Contrato es retroactiva desde el 12 de mayo de 2023\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000595-SR-000682\",\"processing\":false,\"secondaryExternalCode\":\"4259\",\"secondary_external_code\":\"4259\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-15 13:21:39\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"214\",\"name\":\"EFICIENCIA INDUSTRIAL BOLIVIA S.R.L. (GRUPO PRECISI\\u00d3N)\",\"primary_external_code\":\"595\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"30\",\"externalCode\":\"AR33\",\"name\":\"Servicios Legales Mensuales\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2019-12-17 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000318-SR-000220 - Opinion Legal Siniestro GAML-Setram (caso Pumakatari)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000318-SR-000220\",\"finishedDate\":null,\"fixRateValue\":500,\"fix_rate_value\":500,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"259\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000318-SR-000220\",\"processing\":false,\"secondaryExternalCode\":\"1836\",\"secondary_external_code\":\"1836\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"amorenog@emba.com\",\"enabled\":true,\"fullName\":\"Andres Moreno Gutierrez\",\"id\":5,\"locale\":\"es\",\"shortName\":\"amoreno\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"amorenog@emba.com\"},\"customer\":{\"id\":\"142\",\"name\":\"COMPA\\u00d1IA DE SEGUROS Y REASEGUROS FORTALEZA S.A\",\"primary_external_code\":\"318\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"5\",\"externalCode\":\"AR02\",\"name\":\"Der.Civil \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2021-10-06 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000318-SR-000422 - Estructuraci\\u00f3n de Inversi\\u00f3n en el Extranjero\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000318-SR-000422\",\"finishedDate\":null,\"fixRateValue\":6500,\"fix_rate_value\":6500,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"260\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Para cada uno de los pagos antes indicados, MB debe remitir la correspondiente factura girada a nombre de COMPA\\u00d1\\u00cdA DE SEGUROS Y REASEGUROS FORTALEZA S.A. con NIT 1028175023. FORTALEZA pagar\\u00e1 a MB un h\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000318-SR-000422\",\"processing\":false,\"secondaryExternalCode\":\"2949\",\"secondary_external_code\":\"2949\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"amorenog@emba.com\",\"enabled\":true,\"fullName\":\"Andres Moreno Gutierrez\",\"id\":5,\"locale\":\"es\",\"shortName\":\"amoreno\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"amorenog@emba.com\"},\"customer\":{\"id\":\"142\",\"name\":\"COMPA\\u00d1IA DE SEGUROS Y REASEGUROS FORTALEZA S.A\",\"primary_external_code\":\"318\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"23\",\"externalCode\":\"AR28\",\"name\":\"M\\u0026A\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2018-08-09 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000087-SR-000025 - Obtenci\\u00f3n Personalidad Jur\\u00eddica Asociaci\\u00f3n Civil\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000087-SR-000025\",\"finishedDate\":null,\"fixRateValue\":1600,\"fix_rate_value\":1600,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"261\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000087-SR-000025\",\"processing\":false,\"secondaryExternalCode\":\"35\",\"secondary_external_code\":\"35\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"145\",\"name\":\"CONDOMINIO ZERO\",\"primary_external_code\":\"87\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"2\",\"externalCode\":\"AR04\",\"name\":\"Arbitraje\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2019-09-26 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000302-SR-000192 - AUDITORIA LEGAL CORPORATIVA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000302-SR-000192\",\"finishedDate\":null,\"fixRateValue\":9500,\"fix_rate_value\":9500,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"263\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"ACLARAR QUE EL TOTAL DE LOS HONORARIOS ES 9500, FRACCIONADOS EN UN PAGO INICIAL DE $US.- 4850, SEGUNDO PAGO CONCLUSION AUDITORIA $US.- 3650, PAGO FINAL A LA CONCLUSION PROCESO TRANSFERENCIA DE CUOTAS\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000302-SR-000192\",\"processing\":false,\"secondaryExternalCode\":\"1694\",\"secondary_external_code\":\"1694\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"jpzegada@emba.com\",\"enabled\":true,\"fullName\":\"Juan Pablo Zegada\",\"id\":20,\"locale\":\"es\",\"shortName\":\"jzegada\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"jpzegada@emba.com\"},\"customer\":{\"id\":\"152\",\"name\":\"CONSTRUCTORA COMERCIAL ARAUCARIA S.R.L.\",\"primary_external_code\":\"302\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-11 00:00:00\",\"confidential\":false,\"created_at\":\"2023-09-06 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000602-SR-000706 - Negociaci\\u00f3n de Contrato con Thales LAS FRANCE SAS\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000602-SR-000706\",\"finishedDate\":null,\"fixRateValue\":1867.82,\"fix_rate_value\":1867.82,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"264\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":0,\"notes\":\"13000 + IVA\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000602-SR-000706\",\"processing\":false,\"secondaryExternalCode\":\"4326\",\"secondary_external_code\":\"4326\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-11 14:36:35\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"tmercado@emba.com\",\"enabled\":true,\"fullName\":\"Teddy Alberto Mercado Carrion\",\"id\":12,\"locale\":\"es\",\"shortName\":\"tmercado\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"tmercado@emba.com\"},\"customer\":{\"id\":\"153\",\"name\":\"Constructora e Inmobiliaria Wework Srl\",\"primary_external_code\":\"602\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"6\",\"externalCode\":\"AR17\",\"name\":\"Der.Comercial \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-07-26 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000089-SR-000675 - Cierre de sucursal\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000089-SR-000675\",\"finishedDate\":null,\"fixRateValue\":1400,\"fix_rate_value\":1400,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"265\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"El cliente ha indicado expresamente que ninguna factura sea emitida al NIT de la sociedad o a nombre de la sucursal boliviana.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000089-SR-000675\",\"processing\":false,\"secondaryExternalCode\":\"4234\",\"secondary_external_code\":\"4234\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"flanda@emba.com\",\"enabled\":true,\"fullName\":\"Carlos Fernando Landa Alejandro\",\"id\":18,\"locale\":\"es\",\"shortName\":\"flanda\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"flanda@emba.com\"},\"customer\":{\"id\":\"155\",\"name\":\"CONSTRUCTORA SAN JOSE S.A. - SUCURSAL BOLIVIA\",\"primary_external_code\":\"89\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"6\",\"externalCode\":\"AR17\",\"name\":\"Der.Comercial \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2021-07-22 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000424-SR-000404 - Auditor\\u00eda Corporativa y Tributaria\\/Contable - Cumplo Todo\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000424-SR-000404\",\"finishedDate\":null,\"fixRateValue\":1150,\"fix_rate_value\":1150,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"266\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000424-SR-000404\",\"processing\":false,\"secondaryExternalCode\":\"2857\",\"secondary_external_code\":\"2857\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"157\",\"name\":\"Consultores de Seguros S.A.\",\"primary_external_code\":\"424\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"6\",\"externalCode\":\"AR17\",\"name\":\"Der.Comercial \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2020-08-18 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000360-SR-000272 - Honorarios por constituci\\u00f3n de una S.R.L. y liquidaci\\u00f3n de Cooperativa\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000360-SR-000272\",\"finishedDate\":null,\"fixRateValue\":2000,\"fix_rate_value\":2000,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"268\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000360-SR-000272\",\"processing\":false,\"secondaryExternalCode\":\"2219\",\"secondary_external_code\":\"2219\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"amorenog@emba.com\",\"enabled\":true,\"fullName\":\"Andres Moreno Gutierrez\",\"id\":5,\"locale\":\"es\",\"shortName\":\"amoreno\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"amorenog@emba.com\"},\"customer\":{\"id\":\"162\",\"name\":\"COOPERATIVA DE SERVICIOS DE VIAJES LAURETANA R L\",\"primary_external_code\":\"360\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-07-03 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000498-SR-000660 - Modificaci\\u00f3n Estatutos y Reglamento Interno\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000498-SR-000660\",\"finishedDate\":null,\"fixRateValue\":1115,\"fix_rate_value\":1115,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"270\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Conforme la propuesta de honorarios se cobrar\\u00e1 el 50% a la aceptaci\\u00f3n y 50% a la conclusi\\u00f3n del regstro de los Estatutos ante la AFCOOP\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000498-SR-000660\",\"processing\":false,\"secondaryExternalCode\":\"4208\",\"secondary_external_code\":\"4208\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"iayala@emba.com\",\"enabled\":true,\"fullName\":\"Ines Ayala\",\"id\":19,\"locale\":\"es\",\"shortName\":\"iayala\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"iayala@emba.com\"},\"customer\":{\"id\":\"163\",\"name\":\"Cooperativa Educacional Santa Cruz R.L.\",\"primary_external_code\":\"498\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"5\",\"externalCode\":\"AR02\",\"name\":\"Der.Civil \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-07-19 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000498-SR-000665 - PERMANENCIA TEMPORAL DE 2 A\\u00d1OS SIN CONTRATO - REBECCA SUZANNE HALL\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000498-SR-000665\",\"finishedDate\":null,\"fixRateValue\":1599,\"fix_rate_value\":1599,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"271\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 1599.02 INCLUYE GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000498-SR-000665\",\"processing\":false,\"secondaryExternalCode\":\"4220\",\"secondary_external_code\":\"4220\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-07 22:14:02\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"163\",\"name\":\"Cooperativa Educacional Santa Cruz R.L.\",\"primary_external_code\":\"498\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2023-08-24 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000498-SR-000688 - PERMANENCIA TEMPORAL DE 2 A\\u00d1OS SIN CONTRATO - THOMAS JOHN HERBERT\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000498-SR-000688\",\"finishedDate\":null,\"fixRateValue\":1599,\"fix_rate_value\":1599,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"272\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 11129.21 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000498-SR-000688\",\"processing\":false,\"secondaryExternalCode\":\"4272\",\"secondary_external_code\":\"4272\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-07 22:14:02\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"163\",\"name\":\"Cooperativa Educacional Santa Cruz R.L.\",\"primary_external_code\":\"498\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2023-08-24 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000498-SR-000689 - PERMANENCIA TEMPORAL DE 2 A\\u00d1OS SIN CONTRATO - JANNA LEE SCHIMMER\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000498-SR-000689\",\"finishedDate\":null,\"fixRateValue\":1599,\"fix_rate_value\":1599,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"273\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 11129,29 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000498-SR-000689\",\"processing\":false,\"secondaryExternalCode\":\"4273\",\"secondary_external_code\":\"4273\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-07 22:14:02\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"163\",\"name\":\"Cooperativa Educacional Santa Cruz R.L.\",\"primary_external_code\":\"498\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2023-08-24 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000498-SR-000690 - PERMANENCIA TEMPORAL DE 2 A\\u00d1OS POR TRABAJO - NATHANIEL BURROUGHS CHERRY\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000498-SR-000690\",\"finishedDate\":null,\"fixRateValue\":1599,\"fix_rate_value\":1599,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"274\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 11129.21 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000498-SR-000690\",\"processing\":false,\"secondaryExternalCode\":\"4274\",\"secondary_external_code\":\"4274\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-07 22:14:02\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"163\",\"name\":\"Cooperativa Educacional Santa Cruz R.L.\",\"primary_external_code\":\"498\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2023-08-24 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000498-SR-000691 - PERMANENCIA TEMPORAL DE 2 A\\u00d1OS POR TRABAJO SIN CONTRATO - ELI JAY CAGEN\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000498-SR-000691\",\"finishedDate\":null,\"fixRateValue\":1599,\"fix_rate_value\":1599,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"275\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 11129.21 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000498-SR-000691\",\"processing\":false,\"secondaryExternalCode\":\"4275\",\"secondary_external_code\":\"4275\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-07 22:14:02\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"163\",\"name\":\"Cooperativa Educacional Santa Cruz R.L.\",\"primary_external_code\":\"498\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2023-08-24 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000498-SR-000692 - PERMANENCIA TEMPORAL DE 2 A\\u00d1OS POR TRABAJO SIN CONTRATO - MELISSA ANDREA LOPEZ\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000498-SR-000692\",\"finishedDate\":null,\"fixRateValue\":1599,\"fix_rate_value\":1599,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"276\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 11129.21 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000498-SR-000692\",\"processing\":false,\"secondaryExternalCode\":\"4276\",\"secondary_external_code\":\"4276\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-07 22:14:02\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"163\",\"name\":\"Cooperativa Educacional Santa Cruz R.L.\",\"primary_external_code\":\"498\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2023-08-24 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000498-SR-000693 - PERMANENCIA TEMPORAL DE 2 A\\u00d1OS POR TRABAJO SIN CONTRATO - TONIE JONES\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000498-SR-000693\",\"finishedDate\":null,\"fixRateValue\":1599,\"fix_rate_value\":1599,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"277\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 11129.21 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000498-SR-000693\",\"processing\":false,\"secondaryExternalCode\":\"4277\",\"secondary_external_code\":\"4277\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-07 22:14:02\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"163\",\"name\":\"Cooperativa Educacional Santa Cruz R.L.\",\"primary_external_code\":\"498\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2023-08-24 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000498-SR-000694 - PERMANENCIA TEMPORAL DE 2 A\\u00d1OS POR TRABAJO SIN CONTRATO - ARIEL ALMOITE\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000498-SR-000694\",\"finishedDate\":null,\"fixRateValue\":1599,\"fix_rate_value\":1599,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"278\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 11129.21 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000498-SR-000694\",\"processing\":false,\"secondaryExternalCode\":\"4278\",\"secondary_external_code\":\"4278\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-07 22:14:03\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"163\",\"name\":\"Cooperativa Educacional Santa Cruz R.L.\",\"primary_external_code\":\"498\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2023-08-24 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000498-SR-000695 - PERMANENCIA TEMPORAL DE 2 A\\u00d1OS POR TRABAJO SIN CONTRATO - ELENA GRACE KALAHAR\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000498-SR-000695\",\"finishedDate\":null,\"fixRateValue\":1599,\"fix_rate_value\":1599,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"279\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 11129.21 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000498-SR-000695\",\"processing\":false,\"secondaryExternalCode\":\"4279\",\"secondary_external_code\":\"4279\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-07 22:14:03\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"163\",\"name\":\"Cooperativa Educacional Santa Cruz R.L.\",\"primary_external_code\":\"498\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2023-09-05 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000498-SR-000703 - PERMANENCIA TEMPORAL DE 1 A\\u00d1O POR TRABAJO - OMAR KHALED ALY NEGM\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000498-SR-000703\",\"finishedDate\":null,\"fixRateValue\":1381.16,\"fix_rate_value\":1381.16,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"281\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 9612.86 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000498-SR-000703\",\"processing\":false,\"secondaryExternalCode\":\"4322\",\"secondary_external_code\":\"4322\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-07 22:14:03\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"163\",\"name\":\"Cooperativa Educacional Santa Cruz R.L.\",\"primary_external_code\":\"498\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2023-09-05 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000498-SR-000704 - PERMANENCIA TEMPORAL DE 1 A\\u00d1O POR TRABAJO - EMMA RYAN NUTTER\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000498-SR-000704\",\"finishedDate\":null,\"fixRateValue\":1381.16,\"fix_rate_value\":1381.16,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"282\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 9612.86 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000498-SR-000704\",\"processing\":false,\"secondaryExternalCode\":\"4323\",\"secondary_external_code\":\"4323\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-07 22:14:03\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"163\",\"name\":\"Cooperativa Educacional Santa Cruz R.L.\",\"primary_external_code\":\"498\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2023-09-13 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000498-SR-000709 - CEDULA PARA EXTRANJERO - REBECCA SUZANNE HALL\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000498-SR-000709\",\"finishedDate\":null,\"fixRateValue\":257.83,\"fix_rate_value\":257.83,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"283\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 257.83 INCLUYEN GASTOS E IMPUESTO DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000498-SR-000709\",\"processing\":false,\"secondaryExternalCode\":\"4345\",\"secondary_external_code\":\"4345\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-07 22:14:03\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"163\",\"name\":\"Cooperativa Educacional Santa Cruz R.L.\",\"primary_external_code\":\"498\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2021-04-15 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000404-SR-000347 - Regularizaci\\u00f3n de Plano Construcci\\u00f3n LOTE 14 Lote de 750 m2.\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000404-SR-000347\",\"finishedDate\":null,\"fixRateValue\":2486,\"fix_rate_value\":2486,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"284\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Se realizar\\u00e1n dos pagos de 25% del honorario convenido, y un pago final del 50% restante al concluir.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000404-SR-000347\",\"processing\":false,\"secondaryExternalCode\":\"2623\",\"secondary_external_code\":\"2623\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"aaraoz@emba.com\",\"enabled\":true,\"fullName\":\"Alvaro Araoz Ardaya\",\"id\":17,\"locale\":\"es\",\"shortName\":\"aaraoz\",\"superAdmin\":false,\"updated_at\":\"2024-12-04 15:29:19\",\"userType\":1,\"username\":\"aaraoz@emba.com\"},\"customer\":{\"id\":\"166\",\"name\":\"Copelme SA\",\"primary_external_code\":\"404\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"16\",\"externalCode\":\"AR24\",\"name\":\"Der. Inmobiliario\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2021-04-15 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000404-SR-000348 - Baja Tributaria VEH\\u00cdCULO CON PLACA 104-DCC en La Paz\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000404-SR-000348\",\"finishedDate\":null,\"fixRateValue\":1356,\"fix_rate_value\":1356,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"285\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Se realizar\\u00e1n dos pagos de 25% del honorario convenido, y un pago final del 50% restante al concluir.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000404-SR-000348\",\"processing\":false,\"secondaryExternalCode\":\"2630\",\"secondary_external_code\":\"2630\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"aaraoz@emba.com\",\"enabled\":true,\"fullName\":\"Alvaro Araoz Ardaya\",\"id\":17,\"locale\":\"es\",\"shortName\":\"aaraoz\",\"superAdmin\":false,\"updated_at\":\"2024-12-04 15:29:19\",\"userType\":1,\"username\":\"aaraoz@emba.com\"},\"customer\":{\"id\":\"166\",\"name\":\"Copelme SA\",\"primary_external_code\":\"404\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"16\",\"externalCode\":\"AR24\",\"name\":\"Der. Inmobiliario\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2021-04-15 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000404-SR-000349 - Regularizaci\\u00f3n de Plano Construcci\\u00f3n LOTE 15 Lote de 630 m2.\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000404-SR-000349\",\"finishedDate\":null,\"fixRateValue\":2486,\"fix_rate_value\":2486,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"286\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Se realizar\\u00e1n dos pagos de 25% del honorario convenido, y un pago final del 50% restante al concluir.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000404-SR-000349\",\"processing\":false,\"secondaryExternalCode\":\"2624\",\"secondary_external_code\":\"2624\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"aaraoz@emba.com\",\"enabled\":true,\"fullName\":\"Alvaro Araoz Ardaya\",\"id\":17,\"locale\":\"es\",\"shortName\":\"aaraoz\",\"superAdmin\":false,\"updated_at\":\"2024-12-04 15:29:19\",\"userType\":1,\"username\":\"aaraoz@emba.com\"},\"customer\":{\"id\":\"166\",\"name\":\"Copelme SA\",\"primary_external_code\":\"404\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"16\",\"externalCode\":\"AR24\",\"name\":\"Der. Inmobiliario\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2021-04-15 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000404-SR-000350 - Lote de 1.274 m2, IMELDA para saneamiento en el INRA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000404-SR-000350\",\"finishedDate\":null,\"fixRateValue\":5650,\"fix_rate_value\":5650,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"287\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Se realizar\\u00e1n dos pagos de 25% del honorario convenido, y un pago final del 50% restante al concluir.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000404-SR-000350\",\"processing\":false,\"secondaryExternalCode\":\"2625\",\"secondary_external_code\":\"2625\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"aaraoz@emba.com\",\"enabled\":true,\"fullName\":\"Alvaro Araoz Ardaya\",\"id\":17,\"locale\":\"es\",\"shortName\":\"aaraoz\",\"superAdmin\":false,\"updated_at\":\"2024-12-04 15:29:19\",\"userType\":1,\"username\":\"aaraoz@emba.com\"},\"customer\":{\"id\":\"166\",\"name\":\"Copelme SA\",\"primary_external_code\":\"404\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"16\",\"externalCode\":\"AR24\",\"name\":\"Der. Inmobiliario\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2021-04-15 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000404-SR-000351 - Predio de 1.209.2702 H. San Rafael. Ubicado en Santa Cruz, para saneamiento en el INRA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000404-SR-000351\",\"finishedDate\":null,\"fixRateValue\":1130,\"fix_rate_value\":1130,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"288\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Se realizar\\u00e1n pagos mensuales por 4 meses\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000404-SR-000351\",\"processing\":false,\"secondaryExternalCode\":\"2626\",\"secondary_external_code\":\"2626\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"aaraoz@emba.com\",\"enabled\":true,\"fullName\":\"Alvaro Araoz Ardaya\",\"id\":17,\"locale\":\"es\",\"shortName\":\"aaraoz\",\"superAdmin\":false,\"updated_at\":\"2024-12-04 15:29:19\",\"userType\":1,\"username\":\"aaraoz@emba.com\"},\"customer\":{\"id\":\"166\",\"name\":\"Copelme SA\",\"primary_external_code\":\"404\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"16\",\"externalCode\":\"AR24\",\"name\":\"Der. Inmobiliario\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2021-04-15 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000404-SR-000352 - inmueble de 31.716 m2 ABUDJER EID en Apote\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000404-SR-000352\",\"finishedDate\":null,\"fixRateValue\":5650,\"fix_rate_value\":5650,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"289\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Se realizar\\u00e1n dos pagos de 25% del honorario convenido, y un pago final del 50% restante al concluir.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000404-SR-000352\",\"processing\":false,\"secondaryExternalCode\":\"2628\",\"secondary_external_code\":\"2628\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"aaraoz@emba.com\",\"enabled\":true,\"fullName\":\"Alvaro Araoz Ardaya\",\"id\":17,\"locale\":\"es\",\"shortName\":\"aaraoz\",\"superAdmin\":false,\"updated_at\":\"2024-12-04 15:29:19\",\"userType\":1,\"username\":\"aaraoz@emba.com\"},\"customer\":{\"id\":\"166\",\"name\":\"Copelme SA\",\"primary_external_code\":\"404\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"16\",\"externalCode\":\"AR24\",\"name\":\"Der. Inmobiliario\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2021-04-15 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000404-SR-000353 - Lote C - 350m2; Lote D \\u2013 300 m2.; Lote E - 323 m2. Que solicitan ser anexados\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000404-SR-000353\",\"finishedDate\":null,\"fixRateValue\":3616,\"fix_rate_value\":3616,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"290\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Se realizar\\u00e1n dos pagos de 25% del honorario convenido, y un pago final del 50% restante al concluir.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000404-SR-000353\",\"processing\":false,\"secondaryExternalCode\":\"2629\",\"secondary_external_code\":\"2629\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"aaraoz@emba.com\",\"enabled\":true,\"fullName\":\"Alvaro Araoz Ardaya\",\"id\":17,\"locale\":\"es\",\"shortName\":\"aaraoz\",\"superAdmin\":false,\"updated_at\":\"2024-12-04 15:29:19\",\"userType\":1,\"username\":\"aaraoz@emba.com\"},\"customer\":{\"id\":\"166\",\"name\":\"Copelme SA\",\"primary_external_code\":\"404\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"16\",\"externalCode\":\"AR24\",\"name\":\"Der. Inmobiliario\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2021-04-15 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000404-SR-000354 - Aprobaci\\u00f3n plano Lote de 5337 m2, APOTE \\u2013 CASA MAR\\u00cdA ANTONIETA ABS\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000404-SR-000354\",\"finishedDate\":null,\"fixRateValue\":3955,\"fix_rate_value\":3955,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"291\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Se realizar\\u00e1n dos pagos de 25% del honorario convenido, y un pago final del 50% restante al concluir.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000404-SR-000354\",\"processing\":false,\"secondaryExternalCode\":\"2631\",\"secondary_external_code\":\"2631\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"aaraoz@emba.com\",\"enabled\":true,\"fullName\":\"Alvaro Araoz Ardaya\",\"id\":17,\"locale\":\"es\",\"shortName\":\"aaraoz\",\"superAdmin\":false,\"updated_at\":\"2024-12-04 15:29:19\",\"userType\":1,\"username\":\"aaraoz@emba.com\"},\"customer\":{\"id\":\"166\",\"name\":\"Copelme SA\",\"primary_external_code\":\"404\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"16\",\"externalCode\":\"AR24\",\"name\":\"Der. Inmobiliario\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2021-04-15 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000404-SR-000355 - Inmueble de 305m2 BALDEROMAR regularizar Derecho Propietario\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000404-SR-000355\",\"finishedDate\":null,\"fixRateValue\":2486,\"fix_rate_value\":2486,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"292\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Se realizar\\u00e1n dos pagos de 25% del honorario convenido, y un pago final del 50% restante al concluir.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000404-SR-000355\",\"processing\":false,\"secondaryExternalCode\":\"2627\",\"secondary_external_code\":\"2627\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"aaraoz@emba.com\",\"enabled\":true,\"fullName\":\"Alvaro Araoz Ardaya\",\"id\":17,\"locale\":\"es\",\"shortName\":\"aaraoz\",\"superAdmin\":false,\"updated_at\":\"2024-12-04 15:29:19\",\"userType\":1,\"username\":\"aaraoz@emba.com\"},\"customer\":{\"id\":\"166\",\"name\":\"Copelme SA\",\"primary_external_code\":\"404\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"16\",\"externalCode\":\"AR24\",\"name\":\"Der. Inmobiliario\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2021-04-26 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000404-SR-000367 - Debida Diligencia Legal Cumplimiento Reglamento RA\\/AEMP\\/NOOO9\\/2021\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000404-SR-000367\",\"finishedDate\":null,\"fixRateValue\":3850,\"fix_rate_value\":3850,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"293\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000404-SR-000367\",\"processing\":false,\"secondaryExternalCode\":\"2652\",\"secondary_external_code\":\"2652\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"aaraoz@emba.com\",\"enabled\":true,\"fullName\":\"Alvaro Araoz Ardaya\",\"id\":17,\"locale\":\"es\",\"shortName\":\"aaraoz\",\"superAdmin\":false,\"updated_at\":\"2024-12-04 15:29:19\",\"userType\":1,\"username\":\"aaraoz@emba.com\"},\"customer\":{\"id\":\"166\",\"name\":\"Copelme SA\",\"primary_external_code\":\"404\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"6\",\"externalCode\":\"AR17\",\"name\":\"Der.Comercial \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2021-07-15 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000404-SR-000401 - Compra VIVIENDA, ubicado en CALLE 3 No. S\\/N - CALLE 4, ZONA LOS SAUCES de la ciudad de La Paz\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000404-SR-000401\",\"finishedDate\":null,\"fixRateValue\":2000,\"fix_rate_value\":2000,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"294\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Proyecto personal y a facturar a Charbel Mendoza\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000404-SR-000401\",\"processing\":false,\"secondaryExternalCode\":\"2795\",\"secondary_external_code\":\"2795\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"aaraoz@emba.com\",\"enabled\":true,\"fullName\":\"Alvaro Araoz Ardaya\",\"id\":17,\"locale\":\"es\",\"shortName\":\"aaraoz\",\"superAdmin\":false,\"updated_at\":\"2024-12-04 15:29:19\",\"userType\":1,\"username\":\"aaraoz@emba.com\"},\"customer\":{\"id\":\"166\",\"name\":\"Copelme SA\",\"primary_external_code\":\"404\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"16\",\"externalCode\":\"AR24\",\"name\":\"Der. Inmobiliario\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2021-07-15 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000404-SR-000402 - Transferencia moto Guzzi Charbel Mendoza\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000404-SR-000402\",\"finishedDate\":null,\"fixRateValue\":500,\"fix_rate_value\":500,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"295\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Proyecto personal y a facturar a Charbel Mendoza\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000404-SR-000402\",\"processing\":false,\"secondaryExternalCode\":\"2794\",\"secondary_external_code\":\"2794\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"aaraoz@emba.com\",\"enabled\":true,\"fullName\":\"Alvaro Araoz Ardaya\",\"id\":17,\"locale\":\"es\",\"shortName\":\"aaraoz\",\"superAdmin\":false,\"updated_at\":\"2024-12-04 15:29:19\",\"userType\":1,\"username\":\"aaraoz@emba.com\"},\"customer\":{\"id\":\"166\",\"name\":\"Copelme SA\",\"primary_external_code\":\"404\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"11\",\"externalCode\":\"AR21\",\"name\":\"Der. Administrativo\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2021-07-15 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000404-SR-000403 - Transferencia inmueble Villa Magna Santa Cruz\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000404-SR-000403\",\"finishedDate\":null,\"fixRateValue\":5000,\"fix_rate_value\":5000,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"296\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Proyecto a facturar directamente a Charbel Mendoza no Copelme\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000404-SR-000403\",\"processing\":false,\"secondaryExternalCode\":\"2796\",\"secondary_external_code\":\"2796\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"aaraoz@emba.com\",\"enabled\":true,\"fullName\":\"Alvaro Araoz Ardaya\",\"id\":17,\"locale\":\"es\",\"shortName\":\"aaraoz\",\"superAdmin\":false,\"updated_at\":\"2024-12-04 15:29:19\",\"userType\":1,\"username\":\"aaraoz@emba.com\"},\"customer\":{\"id\":\"166\",\"name\":\"Copelme SA\",\"primary_external_code\":\"404\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"16\",\"externalCode\":\"AR24\",\"name\":\"Der. Inmobiliario\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-11 00:00:00\",\"confidential\":false,\"created_at\":\"2023-11-30 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000404-SR-000779 - Acciones penales y recuperaci\\u00f3n contra Fernando Flores - Cuant\\u00eda Bs.48.333\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000404-SR-000779\",\"finishedDate\":null,\"fixRateValue\":718.39,\"fix_rate_value\":718.39,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"297\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":0,\"notes\":\"Porcentaje de recuperaci\\u00f3n de deuda de 10%\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000404-SR-000779\",\"processing\":false,\"secondaryExternalCode\":\"4622\",\"secondary_external_code\":\"4622\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-11 14:39:12\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"tmercado@emba.com\",\"enabled\":true,\"fullName\":\"Teddy Alberto Mercado Carrion\",\"id\":12,\"locale\":\"es\",\"shortName\":\"tmercado\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"tmercado@emba.com\"},\"customer\":{\"id\":\"166\",\"name\":\"Copelme SA\",\"primary_external_code\":\"404\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"34\",\"externalCode\":\"AR03\",\"name\":\"Der. Penal\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-11 00:00:00\",\"confidential\":false,\"created_at\":\"2023-11-30 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000404-SR-000780 - Acciones penales y recuperaci\\u00f3n contra Omar Marquez y Antonia Vargas - Cuant\\u00eda Bs.59.000\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000404-SR-000780\",\"finishedDate\":null,\"fixRateValue\":718.39,\"fix_rate_value\":718.39,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"298\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":0,\"notes\":\"Porcentaje de 10% recuperaci\\u00f3n de deuda\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000404-SR-000780\",\"processing\":false,\"secondaryExternalCode\":\"4623\",\"secondary_external_code\":\"4623\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-11 14:40:10\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"tmercado@emba.com\",\"enabled\":true,\"fullName\":\"Teddy Alberto Mercado Carrion\",\"id\":12,\"locale\":\"es\",\"shortName\":\"tmercado\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"tmercado@emba.com\"},\"customer\":{\"id\":\"166\",\"name\":\"Copelme SA\",\"primary_external_code\":\"404\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"34\",\"externalCode\":\"AR03\",\"name\":\"Der. Penal\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-12-28 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000475-SR-000564 - Representante Legal\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000475-SR-000564\",\"finishedDate\":null,\"fixRateValue\":250,\"fix_rate_value\":250,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"299\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Cobrar desde el 01 de enero de 2022. Coordinar la facturaci\\u00f3n con Cristian Delgado de MB Outsourcing\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000475-SR-000564\",\"processing\":false,\"secondaryExternalCode\":\"3784\",\"secondary_external_code\":\"3784\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"167\",\"name\":\"CORPCREDIT SOLUCIONES TECONOLOGICAS S.A\",\"primary_external_code\":\"475\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-12-28 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000475-SR-000565 - Domicilio Legal\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000475-SR-000565\",\"finishedDate\":null,\"fixRateValue\":250,\"fix_rate_value\":250,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"300\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Cobrar desde el 01 de enero de 2022. Coordinar la facturaci\\u00f3n con Cristhian Delgado de MB Outsourcing\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000475-SR-000565\",\"processing\":false,\"secondaryExternalCode\":\"3785\",\"secondary_external_code\":\"3785\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"167\",\"name\":\"CORPCREDIT SOLUCIONES TECONOLOGICAS S.A\",\"primary_external_code\":\"475\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-11-22 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000475-SR-000770 - OUTSOURCING CONTABLE Y TRIBUTARIO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000475-SR-000770\",\"finishedDate\":null,\"fixRateValue\":857,\"fix_rate_value\":857,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"301\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Honorario variable en funci\\u00f3n al n\\u00famero de operaciones.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000475-SR-000770\",\"processing\":false,\"secondaryExternalCode\":\"4612\",\"secondary_external_code\":\"4612\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 15:26:50\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"cdelgado@emba.com\",\"enabled\":true,\"fullName\":\"Cristhian Delgado Ramirez\",\"id\":13,\"locale\":\"es\",\"shortName\":\"cdelgado\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"cdelgado@emba.com\"},\"customer\":{\"id\":\"167\",\"name\":\"CORPCREDIT SOLUCIONES TECONOLOGICAS S.A\",\"primary_external_code\":\"475\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"24\",\"externalCode\":\"AR05\",\"name\":\"Outsourcing\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2019-05-13 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000090-SR-000102 - Nueva Linea de Cr\\u00e9dito 2019 con CRECER IFD\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000090-SR-000102\",\"finishedDate\":null,\"fixRateValue\":2000,\"fix_rate_value\":2000,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"302\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"El Honorario y gastos ser\\u00e1n cubiertos por el cliente de CAF: CRECER IFD\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000090-SR-000102\",\"processing\":false,\"secondaryExternalCode\":\"1383\",\"secondary_external_code\":\"1383\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"tmercado@emba.com\",\"enabled\":true,\"fullName\":\"Teddy Alberto Mercado Carrion\",\"id\":12,\"locale\":\"es\",\"shortName\":\"tmercado\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"tmercado@emba.com\"},\"customer\":{\"id\":\"168\",\"name\":\"CORPORACION ANDINA DE FOMENTO\",\"primary_external_code\":\"90\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2019-05-16 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000090-SR-000103 - Nueva Linea de Cr\\u00e9dito 2019 con CIDRE\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000090-SR-000103\",\"finishedDate\":null,\"fixRateValue\":2000,\"fix_rate_value\":2000,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"303\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"El honorario lo pagar CIDRE IFD\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000090-SR-000103\",\"processing\":false,\"secondaryExternalCode\":\"1387\",\"secondary_external_code\":\"1387\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"tmercado@emba.com\",\"enabled\":true,\"fullName\":\"Teddy Alberto Mercado Carrion\",\"id\":12,\"locale\":\"es\",\"shortName\":\"tmercado\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"tmercado@emba.com\"},\"customer\":{\"id\":\"168\",\"name\":\"CORPORACION ANDINA DE FOMENTO\",\"primary_external_code\":\"90\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2019-05-16 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000090-SR-000104 - Nueva Linea de Cr\\u00e9dito 2019 con DIACON\\u00cdA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000090-SR-000104\",\"finishedDate\":null,\"fixRateValue\":2000,\"fix_rate_value\":2000,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"304\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"El Honorario lo pagara DIACONIA IFD\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000090-SR-000104\",\"processing\":false,\"secondaryExternalCode\":\"1388\",\"secondary_external_code\":\"1388\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"tmercado@emba.com\",\"enabled\":true,\"fullName\":\"Teddy Alberto Mercado Carrion\",\"id\":12,\"locale\":\"es\",\"shortName\":\"tmercado\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"tmercado@emba.com\"},\"customer\":{\"id\":\"168\",\"name\":\"CORPORACION ANDINA DE FOMENTO\",\"primary_external_code\":\"90\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2019-08-30 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000090-SR-000170 - Nueva Linea de Cr\\u00e9dito con CAF con BNB\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000090-SR-000170\",\"finishedDate\":null,\"fixRateValue\":2000,\"fix_rate_value\":2000,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"305\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000090-SR-000170\",\"processing\":false,\"secondaryExternalCode\":\"1622\",\"secondary_external_code\":\"1622\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"tmercado@emba.com\",\"enabled\":true,\"fullName\":\"Teddy Alberto Mercado Carrion\",\"id\":12,\"locale\":\"es\",\"shortName\":\"tmercado\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"tmercado@emba.com\"},\"customer\":{\"id\":\"168\",\"name\":\"CORPORACION ANDINA DE FOMENTO\",\"primary_external_code\":\"90\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2021-01-14 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000218-SR-000325 - Actualizaci\\u00f3n de nombre de la organizaci\\u00f3n\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000218-SR-000325\",\"finishedDate\":null,\"fixRateValue\":3500,\"fix_rate_value\":3500,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"307\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000218-SR-000325\",\"processing\":false,\"secondaryExternalCode\":\"2465\",\"secondary_external_code\":\"2465\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"169\",\"name\":\"The Church of Jesus Christ of Latter-day Saints (a Utah corporation sole)\",\"primary_external_code\":\"218\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-09 00:00:00\",\"confidential\":false,\"created_at\":\"2021-02-19 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000165-SR-000334 - COBRANZA EMBOTELLADORA REFRESCOS INTERNACIONALES \\u0022POP\\u0022\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000165-SR-000334\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"308\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000165-SR-000334\",\"processing\":false,\"secondaryExternalCode\":\"2521\",\"secondary_external_code\":\"2521\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-09 13:01:14\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"jpzegada@emba.com\",\"enabled\":true,\"fullName\":\"Juan Pablo Zegada\",\"id\":20,\"locale\":\"es\",\"shortName\":\"jzegada\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"jpzegada@emba.com\"},\"customer\":{\"id\":\"175\",\"name\":\"CRAMER BOLIVIA S.A.\",\"primary_external_code\":\"165\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"6\",\"externalCode\":\"AR17\",\"name\":\"Der.Comercial \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2021-09-09 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000852-SR-000418 - Adenda Total L\\u00ednea de Cr\\u00e9dito CAF (2021)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000852-SR-000418\",\"finishedDate\":null,\"fixRateValue\":2000,\"fix_rate_value\":2000,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"309\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000852-SR-000418\",\"processing\":false,\"secondaryExternalCode\":\"2929\",\"secondary_external_code\":\"2929\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"tmercado@emba.com\",\"enabled\":true,\"fullName\":\"Teddy Alberto Mercado Carrion\",\"id\":12,\"locale\":\"es\",\"shortName\":\"tmercado\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"tmercado@emba.com\"},\"customer\":{\"id\":\"178\",\"name\":\"CR\\u00c9DITO CON EDUCACI\\u00d3N RURAL INSTITUCI\\u00d3N FINANCIERA DE DESARROLLO - CRECER IFD\",\"primary_external_code\":\"852\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"4\",\"externalCode\":\"AR16\",\"name\":\"Der.Mercantil-Banca\\u0026Finanzas\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-11-02 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000521-SR-000552 - Revisi\\u00f3n de contratos modelo\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000521-SR-000552\",\"finishedDate\":null,\"fixRateValue\":990,\"fix_rate_value\":990,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"318\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000521-SR-000552\",\"processing\":false,\"secondaryExternalCode\":\"3675\",\"secondary_external_code\":\"3675\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"flanda@emba.com\",\"enabled\":true,\"fullName\":\"Carlos Fernando Landa Alejandro\",\"id\":18,\"locale\":\"es\",\"shortName\":\"flanda\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"flanda@emba.com\"},\"customer\":{\"id\":\"191\",\"name\":\"Delta Cargo S.R.L.\",\"primary_external_code\":\"521\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"5\",\"externalCode\":\"AR02\",\"name\":\"Der.Civil \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-21 00:00:00\",\"confidential\":false,\"created_at\":\"2023-04-05 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000507-SR-000611 - Servicios Legales Mensuales - Representaci\\u00f3n y Domicilio\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000507-SR-000611\",\"finishedDate\":null,\"fixRateValue\":1000,\"fix_rate_value\":1000,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"319\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000507-SR-000611\",\"processing\":false,\"secondaryExternalCode\":\"4042\",\"secondary_external_code\":\"4042\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-21 14:53:15\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"192\",\"name\":\"DEMERGE BOLIVIA SRL\",\"primary_external_code\":\"507\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-20 00:00:00\",\"confidential\":false,\"created_at\":\"2023-06-30 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000587-SR-000658 - servicios legales y domicilio legal\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000587-SR-000658\",\"finishedDate\":null,\"fixRateValue\":1000,\"fix_rate_value\":1000,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"320\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000587-SR-000658\",\"processing\":false,\"secondaryExternalCode\":\"4206\",\"secondary_external_code\":\"4206\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-20 16:30:23\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"aaraoz@emba.com\",\"enabled\":true,\"fullName\":\"Alvaro Araoz Ardaya\",\"id\":17,\"locale\":\"es\",\"shortName\":\"aaraoz\",\"superAdmin\":false,\"updated_at\":\"2024-12-04 15:29:19\",\"userType\":1,\"username\":\"aaraoz@emba.com\"},\"customer\":{\"id\":\"194\",\"name\":\"DEVELOOP SRL\",\"primary_external_code\":\"587\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"6\",\"externalCode\":\"AR17\",\"name\":\"Der.Comercial \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-07-03 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000589-SR-000661 - Asesoria Tributaria y Corporativa\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000589-SR-000661\",\"finishedDate\":null,\"fixRateValue\":9800,\"fix_rate_value\":9800,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"321\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000589-SR-000661\",\"processing\":false,\"secondaryExternalCode\":\"4209\",\"secondary_external_code\":\"4209\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"rburgos@emba.com\",\"enabled\":true,\"fullName\":\"Edwin Rodrigo Burgos Fernandez\",\"id\":16,\"locale\":\"es\",\"shortName\":\"rburgos\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rburgos@emba.com\"},\"customer\":{\"id\":\"199\",\"name\":\"DISTRIBUIDORA MAYORISTA DE TECNOLOGIA S.A.\",\"primary_external_code\":\"589\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"19\",\"externalCode\":\"AR09\",\"name\":\"Der. Tributario\\u0026 Plan.Fiscal\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-27 00:00:00\",\"confidential\":false,\"created_at\":\"2023-11-07 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000589-SR-000758 - Market Place\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000589-SR-000758\",\"finishedDate\":null,\"fixRateValue\":9800,\"fix_rate_value\":9800,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"322\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"FAvor facturar el 50% ahora mismo\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000589-SR-000758\",\"processing\":false,\"secondaryExternalCode\":\"4574\",\"secondary_external_code\":\"4574\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"flanda@emba.com\",\"enabled\":true,\"fullName\":\"Carlos Fernando Landa Alejandro\",\"id\":18,\"locale\":\"es\",\"shortName\":\"flanda\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"flanda@emba.com\"},\"customer\":{\"id\":\"199\",\"name\":\"DISTRIBUIDORA MAYORISTA DE TECNOLOGIA S.A.\",\"primary_external_code\":\"589\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"6\",\"externalCode\":\"AR17\",\"name\":\"Der.Comercial \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-03-17 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000092-SR-000602 - Servicios Legales Mensuales\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000092-SR-000602\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"323\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Empresa del Grupo Operadora Caribe\\u00f1a\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000092-SR-000602\",\"processing\":false,\"secondaryExternalCode\":\"4020\",\"secondary_external_code\":\"4020\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"200\",\"name\":\"DISTRIFILMS SRL\",\"primary_external_code\":\"92\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"30\",\"externalCode\":\"AR33\",\"name\":\"Servicios Legales Mensuales\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-05-03 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000425-SR-000624 - Cambio de Representante Legal y Aprobaci\\u00f3n de Gesti\\u00f3n 2022\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000425-SR-000624\",\"finishedDate\":null,\"fixRateValue\":500,\"fix_rate_value\":500,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"324\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Propuesta de servicios aprobada. Se informar\\u00e1 cuando se concluya el servicio para gestionar factura y cobro.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000425-SR-000624\",\"processing\":false,\"secondaryExternalCode\":\"4097\",\"secondary_external_code\":\"4097\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"iayala@emba.com\",\"enabled\":true,\"fullName\":\"Ines Ayala\",\"id\":19,\"locale\":\"es\",\"shortName\":\"iayala\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"iayala@emba.com\"},\"customer\":{\"id\":\"201\",\"name\":\"DISTRITO MODA S.R.L.\",\"primary_external_code\":\"425\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-11-22 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000595-SR-000771 - Outsourcing contable, tributario, laboral y tesoreria.\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000595-SR-000771\",\"finishedDate\":null,\"fixRateValue\":3056,\"fix_rate_value\":3056,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"327\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Honorario variable en funci\\u00f3n a volumend e operaciones. Take over USD 700\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000595-SR-000771\",\"processing\":false,\"secondaryExternalCode\":\"4609\",\"secondary_external_code\":\"4609\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 15:27:25\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"cdelgado@emba.com\",\"enabled\":true,\"fullName\":\"Cristhian Delgado Ramirez\",\"id\":13,\"locale\":\"es\",\"shortName\":\"cdelgado\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"cdelgado@emba.com\"},\"customer\":{\"id\":\"214\",\"name\":\"EFICIENCIA INDUSTRIAL BOLIVIA S.R.L. (GRUPO PRECISI\\u00d3N)\",\"primary_external_code\":\"595\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"24\",\"externalCode\":\"AR05\",\"name\":\"Outsourcing\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-11-30 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000216-SR-000781 - ANALISIS SOBRE LA APLICACION DEL SISTEMA DE COMPENSACI\\u00d3N VARIABLE\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000216-SR-000781\",\"finishedDate\":null,\"fixRateValue\":2100,\"fix_rate_value\":2100,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"331\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Coordinar con Rene Claure y Natalio Zegarra para el cobro de los honorarios cuando el trabajo este finalizado.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000216-SR-000781\",\"processing\":false,\"secondaryExternalCode\":\"4624\",\"secondary_external_code\":\"4624\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"nezegarra@emba.com\",\"enabled\":true,\"fullName\":\"Natalio Eduardo Zegarra Ribera\",\"id\":15,\"locale\":\"es\",\"shortName\":\"nzegarra\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"nezegarra@emba.com\"},\"customer\":{\"id\":\"217\",\"name\":\"EMBAJADA AMERICANA EN BOLIVIA\",\"primary_external_code\":\"216\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"17\",\"externalCode\":\"AR08\",\"name\":\"Der. Laboral y Seg. Soc.\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2020-08-09 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000359-SR-000266 - Arrendamiento Oficinas\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000359-SR-000266\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"332\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Ver honorarios con Andres Moreno\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000359-SR-000266\",\"processing\":false,\"secondaryExternalCode\":\"2207\",\"secondary_external_code\":\"2207\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 14:03:50\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"nicoln042001@gmail.com\",\"enabled\":true,\"fullName\":\"Daniel Marcelo Arredondo Zelada\",\"id\":6,\"locale\":\"es\",\"shortName\":\"darredon\",\"superAdmin\":false,\"updated_at\":\"2024-09-03 11:43:07\",\"userType\":1,\"username\":\"darredondo@emba.com.bo\"},\"customer\":{\"id\":\"218\",\"name\":\"Embajada de Canad\\u00e1\",\"primary_external_code\":\"359\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"16\",\"externalCode\":\"AR24\",\"name\":\"Der. Inmobiliario\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-06-22 00:00:00\",\"confidential\":false,\"created_at\":\"2023-11-16 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000626-SR-000761 - REDACCION DE PROYECTO DE ACUERDO PRIVADO DE PAGO COMPENSATORIO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000626-SR-000761\",\"finishedDate\":null,\"fixRateValue\":200,\"fix_rate_value\":200,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"333\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000626-SR-000761\",\"processing\":false,\"secondaryExternalCode\":\"4596\",\"secondary_external_code\":\"4596\",\"status\":1,\"statusMarking\":\"billed\",\"updated_at\":\"2024-06-22 03:03:50\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"nezegarra@emba.com\",\"enabled\":true,\"fullName\":\"Natalio Eduardo Zegarra Ribera\",\"id\":15,\"locale\":\"es\",\"shortName\":\"nzegarra\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"nezegarra@emba.com\"},\"customer\":{\"id\":\"220\",\"name\":\"EMBAJADA DE FRANCIA EN BOLIVIA\",\"primary_external_code\":\"626\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"17\",\"externalCode\":\"AR08\",\"name\":\"Der. Laboral y Seg. Soc.\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-10-12 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000318-SR-000847 - Arbitraje Indara - Cochabamba\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000318-SR-000847\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1267\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Honorarios s\\/iguala profesional\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000318-SR-000847\",\"processing\":false,\"secondaryExternalCode\":\"3640\",\"secondary_external_code\":\"3640\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"amorenog@emba.com\",\"enabled\":true,\"fullName\":\"Andres Moreno Gutierrez\",\"id\":5,\"locale\":\"es\",\"shortName\":\"amoreno\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"amorenog@emba.com\"},\"customer\":{\"id\":\"142\",\"name\":\"COMPA\\u00d1IA DE SEGUROS Y REASEGUROS FORTALEZA S.A\",\"primary_external_code\":\"318\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"2\",\"externalCode\":\"AR04\",\"name\":\"Arbitraje\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2021-07-07 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000404-SR-000816 - Adquisici\\u00f3n de inmueble de 21.111,76m2 en la ciudad de EL ALTO .- LA PAZ\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000404-SR-000816\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1269\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000404-SR-000816\",\"processing\":false,\"secondaryExternalCode\":\"2779\",\"secondary_external_code\":\"2779\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"166\",\"name\":\"Copelme SA\",\"primary_external_code\":\"404\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"16\",\"externalCode\":\"AR24\",\"name\":\"Der. Inmobiliario\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2022-02-26 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000404-SR-000829 - Proceso Penal contra Jos\\u00e9 Mar\\u00eda Rodr\\u00edguez Figueroa\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000404-SR-000829\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1270\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000404-SR-000829\",\"processing\":false,\"secondaryExternalCode\":\"3189\",\"secondary_external_code\":\"3189\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 20:28:37\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"166\",\"name\":\"Copelme SA\",\"primary_external_code\":\"404\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"34\",\"externalCode\":\"AR03\",\"name\":\"Der. Penal\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-07 00:00:00\",\"confidential\":false,\"created_at\":\"2022-03-07 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000404-SR-000830 - Proceso laboral interpuesto por los Sres. Carlos Mansilla Dorado y Gustavo Rivero Montero\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000404-SR-000830\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1271\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000404-SR-000830\",\"processing\":false,\"secondaryExternalCode\":\"3198\",\"secondary_external_code\":\"3198\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-07 13:38:35\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"paramayo@emba.com\",\"enabled\":true,\"fullName\":\"Paul Aramayo Salinas\",\"id\":9,\"locale\":\"es\",\"shortName\":\"paramayo\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"paramayo@emba.com\"},\"customer\":{\"id\":\"166\",\"name\":\"Copelme SA\",\"primary_external_code\":\"404\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"17\",\"externalCode\":\"AR08\",\"name\":\"Der. Laboral y Seg. Soc.\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-04-13 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000404-SR-000831 - Regularizaci\\u00f3n Legal Lote No. 409 3.354 Mts2, Urbanizaci\\u00f3n Alto de la Alianza, El Alto.\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000404-SR-000831\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1272\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000404-SR-000831\",\"processing\":false,\"secondaryExternalCode\":\"3295\",\"secondary_external_code\":\"3295\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"aaraoz@emba.com\",\"enabled\":true,\"fullName\":\"Alvaro Araoz Ardaya\",\"id\":17,\"locale\":\"es\",\"shortName\":\"aaraoz\",\"superAdmin\":false,\"updated_at\":\"2024-12-04 15:29:19\",\"userType\":1,\"username\":\"aaraoz@emba.com\"},\"customer\":{\"id\":\"166\",\"name\":\"Copelme SA\",\"primary_external_code\":\"404\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"16\",\"externalCode\":\"AR24\",\"name\":\"Der. Inmobiliario\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-10-27 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000404-SR-000851 - Proceso Civil Ejecutivo contra Walter Dur\\u00e1n (Santa Cruz)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000404-SR-000851\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1273\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Conforme a Iguala marco que tenemos suscrita con Copelme para este tipo de procesos por la demanda, cobrar\\u00edamos una suma \\u00fanica de USD. 350.-, un honorario de \\u00e9xito del 8% y la suma mensual fija de USD\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000404-SR-000851\",\"processing\":false,\"secondaryExternalCode\":\"3660\",\"secondary_external_code\":\"3660\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"166\",\"name\":\"Copelme SA\",\"primary_external_code\":\"404\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-12-09 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000404-SR-000854 - Arbitraje - Resoluci\\u00f3n contrato Oscar Jorge Dorado Vega\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000404-SR-000854\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1274\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Primer pago a la suscripci\\u00f3n de iguala de servicios 50% \\nSegundo pago, al momento de la presentaci\\u00f3n de pruebas. 30% \\nTercer pago, al se\\u00f1alamiento de la audiencia de alegatos de clausura. 20%\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000404-SR-000854\",\"processing\":false,\"secondaryExternalCode\":\"3770\",\"secondary_external_code\":\"3770\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"166\",\"name\":\"Copelme SA\",\"primary_external_code\":\"404\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"2\",\"externalCode\":\"AR04\",\"name\":\"Arbitraje\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-02-01 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000404-SR-000857 - tr\\u00e1mite de personer\\u00eda jur\\u00eddica FUNDACI\\u00d3N FRAME\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000404-SR-000857\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1275\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000404-SR-000857\",\"processing\":false,\"secondaryExternalCode\":\"3826\",\"secondary_external_code\":\"3826\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"aaraoz@emba.com\",\"enabled\":true,\"fullName\":\"Alvaro Araoz Ardaya\",\"id\":17,\"locale\":\"es\",\"shortName\":\"aaraoz\",\"superAdmin\":false,\"updated_at\":\"2024-12-04 15:29:19\",\"userType\":1,\"username\":\"aaraoz@emba.com\"},\"customer\":{\"id\":\"166\",\"name\":\"Copelme SA\",\"primary_external_code\":\"404\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"5\",\"externalCode\":\"AR02\",\"name\":\"Der.Civil \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2023-04-01 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000404-SR-000866 - Proceso penal Romel Siles\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000404-SR-000866\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1276\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000404-SR-000866\",\"processing\":false,\"secondaryExternalCode\":\"4037\",\"secondary_external_code\":\"4037\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 20:30:12\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"166\",\"name\":\"Copelme SA\",\"primary_external_code\":\"404\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"34\",\"externalCode\":\"AR03\",\"name\":\"Der. Penal\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2023-04-01 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000404-SR-000867 - Proceso penal Hector Sandoval Colque\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000404-SR-000867\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1277\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000404-SR-000867\",\"processing\":false,\"secondaryExternalCode\":\"4038\",\"secondary_external_code\":\"4038\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 20:31:10\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"166\",\"name\":\"Copelme SA\",\"primary_external_code\":\"404\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"34\",\"externalCode\":\"AR03\",\"name\":\"Der. Penal\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-09-21 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000376-SR-000883 - Arbitraje ad hoc contra Electroingenieria SA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000376-SR-000883\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1280\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Existe Honorarios Medidas Cautelares por un valor de USD 51.730 con un primer pago de USD 15.500 y segundo pago de USD 36.230 previa confirmacion de AMG\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000376-SR-000883\",\"processing\":false,\"secondaryExternalCode\":\"4377\",\"secondary_external_code\":\"4377\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"amorenog@emba.com\",\"enabled\":true,\"fullName\":\"Andres Moreno Gutierrez\",\"id\":5,\"locale\":\"es\",\"shortName\":\"amoreno\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"amorenog@emba.com\"},\"customer\":{\"id\":\"176\",\"name\":\"Credinform\",\"primary_external_code\":\"376\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"2\",\"externalCode\":\"AR04\",\"name\":\"Arbitraje\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-08-22 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000371-SR-000840 - NUREJ 204059956 - Patrocino Proceso Contencioso\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000371-SR-000840\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1282\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000371-SR-000840\",\"processing\":false,\"secondaryExternalCode\":\"3546\",\"secondary_external_code\":\"3546\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"198\",\"name\":\"Distribuidora Cummins S.A. Sucursal Bolivia\",\"primary_external_code\":\"371\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"11\",\"externalCode\":\"AR21\",\"name\":\"Der. Administrativo\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-08-22 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000371-SR-000841 - NUREJ 204026187 - Patrocinio Proceso Contencioso\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000371-SR-000841\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1283\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000371-SR-000841\",\"processing\":false,\"secondaryExternalCode\":\"3547\",\"secondary_external_code\":\"3547\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"198\",\"name\":\"Distribuidora Cummins S.A. Sucursal Bolivia\",\"primary_external_code\":\"371\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"11\",\"externalCode\":\"AR21\",\"name\":\"Der. Administrativo\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-08-22 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000371-SR-000842 - NUREJ 204026168 - Patroinio Proceso Contencioso\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000371-SR-000842\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1284\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000371-SR-000842\",\"processing\":false,\"secondaryExternalCode\":\"3548\",\"secondary_external_code\":\"3548\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"198\",\"name\":\"Distribuidora Cummins S.A. Sucursal Bolivia\",\"primary_external_code\":\"371\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"11\",\"externalCode\":\"AR21\",\"name\":\"Der. Administrativo\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-08-22 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000371-SR-000843 - NUREJ 204026176 - Proceso Contencioso\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000371-SR-000843\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1285\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000371-SR-000843\",\"processing\":false,\"secondaryExternalCode\":\"3549\",\"secondary_external_code\":\"3549\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"198\",\"name\":\"Distribuidora Cummins S.A. Sucursal Bolivia\",\"primary_external_code\":\"371\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"11\",\"externalCode\":\"AR21\",\"name\":\"Der. Administrativo\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-01-17 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000371-SR-000856 - NUREJ 203994990 - Patroinio Proceso Contencioso - Contrato 2256\\/2019\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000371-SR-000856\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1286\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000371-SR-000856\",\"processing\":false,\"secondaryExternalCode\":\"3809\",\"secondary_external_code\":\"3809\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"198\",\"name\":\"Distribuidora Cummins S.A. Sucursal Bolivia\",\"primary_external_code\":\"371\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"11\",\"externalCode\":\"AR21\",\"name\":\"Der. Administrativo\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-10-20 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000620-SR-000888 - Proceso Laboral contra Yovana Zenteno Rioja\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000620-SR-000888\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1287\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000620-SR-000888\",\"processing\":false,\"secondaryExternalCode\":\"4539\",\"secondary_external_code\":\"4539\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"215\",\"name\":\"EGOSCENTRI SRL\",\"primary_external_code\":\"620\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"17\",\"externalCode\":\"AR08\",\"name\":\"Der. Laboral y Seg. Soc.\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":\"\",\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-09-10 05:00:00\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000511-SR-000526 - Licitaci\\u00f3n BCB I\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000511-SR-000526\",\"finishedDate\":null,\"fixRateValue\":20555,\"fix_rate_value\":20555,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1353\",\"internal_code\":\"\",\"isBillable\":true,\"limitAlert\":null,\"notes\":\"La tarifa aplicable es por hitos + success fee de acuerdo a Iguala\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000511-SR-000526\",\"processing\":false,\"secondaryExternalCode\":\"3577\",\"secondary_external_code\":\"3577\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"nicoln042001@gmail.com\",\"enabled\":true,\"fullName\":\"Daniel Marcelo Arredondo Zelada\",\"id\":6,\"locale\":\"es\",\"shortName\":\"darredon\",\"superAdmin\":false,\"updated_at\":\"2024-09-03 11:43:07\",\"userType\":1,\"username\":\"darredondo@emba.com.bo\"},\"customer\":{\"id\":\"187\",\"name\":\"De La Rue\",\"primary_external_code\":\"511\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"9\",\"externalCode\":\"AR20\",\"name\":\"Contrataci\\u00f3n P\\u00fablica\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-01-19 00:00:00\",\"confidential\":false,\"created_at\":\"2022-07-28 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000404-SR-000941 - PROCESO JUDICIAL Recuperaci\\u00f3n deuda Javier C\\u00e1ceres Parada\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000404-SR-000941\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1495\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"El seguimiento mensual debe cobrarse por 24 meses, a menos que el proceso se concluya antes.\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000404-SR-000941\",\"processing\":false,\"secondaryExternalCode\":\"3510\",\"secondary_external_code\":\"3510\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"aaraoz@emba.com\",\"enabled\":true,\"fullName\":\"Alvaro Araoz Ardaya\",\"id\":17,\"locale\":\"es\",\"shortName\":\"aaraoz\",\"superAdmin\":false,\"updated_at\":\"2024-12-04 15:29:19\",\"userType\":1,\"username\":\"aaraoz@emba.com\"},\"customer\":{\"id\":\"166\",\"name\":\"Copelme SA\",\"primary_external_code\":\"404\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-14 00:00:00\",\"confidential\":false,\"created_at\":\"2019-04-01 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000218-SR-000981 - General Matters -BOL0004000250\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000218-SR-000981\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1565\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"SEGUN TABLA DE PRECIOS\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000218-SR-000981\",\"processing\":false,\"secondaryExternalCode\":\"981\",\"secondary_external_code\":\"981\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-05 19:59:30\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"paramayo@emba.com\",\"enabled\":true,\"fullName\":\"Paul Aramayo Salinas\",\"id\":9,\"locale\":\"es\",\"shortName\":\"paramayo\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"paramayo@emba.com\"},\"customer\":{\"id\":\"169\",\"name\":\"The Church of Jesus Christ of Latter-day Saints (a Utah corporation sole)\",\"primary_external_code\":\"218\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-01 18:56:22\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000355-SR-000994 - Informe Tributario - Exportaci\\u00f3n de Servicios\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000355-SR-000994\",\"finishedDate\":null,\"fixRateValue\":1400,\"fix_rate_value\":1400,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2292\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000355-SR-000994\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 16:29:17\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"rburgos@emba.com\",\"enabled\":true,\"fullName\":\"Edwin Rodrigo Burgos Fernandez\",\"id\":16,\"locale\":\"es\",\"shortName\":\"rburgos\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rburgos@emba.com\"},\"customer\":{\"id\":\"195\",\"name\":\"DIGITAL HARBOR INTERNATIONAL S.R.L\",\"primary_external_code\":\"355\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"19\",\"externalCode\":\"AR09\",\"name\":\"Der. Tributario\\u0026 Plan.Fiscal\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-01 19:06:13\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000498-SR-000996 - Elaboraci\\u00f3n de pol\\u00edticas contables y manual de cuentas\\t\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000498-SR-000996\",\"finishedDate\":null,\"fixRateValue\":9000,\"fix_rate_value\":9000,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2294\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000498-SR-000996\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 14:04:13\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"rburgos@emba.com\",\"enabled\":true,\"fullName\":\"Edwin Rodrigo Burgos Fernandez\",\"id\":16,\"locale\":\"es\",\"shortName\":\"rburgos\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rburgos@emba.com\"},\"customer\":{\"id\":\"163\",\"name\":\"Cooperativa Educacional Santa Cruz R.L.\",\"primary_external_code\":\"498\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"19\",\"externalCode\":\"AR09\",\"name\":\"Der. Tributario\\u0026 Plan.Fiscal\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-05 18:46:14\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000498-SR-001008 - Permanencia temporal de 2 a\\u00f1os por trabajo - MAKIKO NISHIHARA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000498-SR-001008\",\"finishedDate\":null,\"fixRateValue\":1599,\"fix_rate_value\":1599,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2309\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000498-SR-001008\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 18:52:36\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"163\",\"name\":\"Cooperativa Educacional Santa Cruz R.L.\",\"primary_external_code\":\"498\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-19 22:54:23\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000498-SR-001022 - Carnet para Extranjero - MAKIKO NISHIHARA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000498-SR-001022\",\"finishedDate\":null,\"fixRateValue\":257.83,\"fix_rate_value\":257.83,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2337\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000498-SR-001022\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-07 22:14:03\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"163\",\"name\":\"Cooperativa Educacional Santa Cruz R.L.\",\"primary_external_code\":\"498\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-20 22:01:45\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000475-SR-001028 - Calendario Legal 2024\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000475-SR-001028\",\"finishedDate\":null,\"fixRateValue\":550,\"fix_rate_value\":550,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2349\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"100% al final\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000475-SR-001028\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 16:41:27\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"167\",\"name\":\"CORPCREDIT SOLUCIONES TECONOLOGICAS S.A\",\"primary_external_code\":\"475\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-15 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-15 18:21:41\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000498-SR-001123 - Permanencia Temporal de 2 a\\u00f1os por trabajo - ELY JAY CAGEN\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000498-SR-001123\",\"finishedDate\":null,\"fixRateValue\":1599.02,\"fix_rate_value\":1599.02,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2699\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Los honorarios de $us. 1599.02, Incluyen gastos e impuestos de ley.\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000498-SR-001123\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-15 13:21:41\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"163\",\"name\":\"Cooperativa Educacional Santa Cruz R.L.\",\"primary_external_code\":\"498\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-15 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-15 18:24:29\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000498-SR-001124 - Carnet de Extranjero - ELY JAY CAGEN\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000498-SR-001124\",\"finishedDate\":null,\"fixRateValue\":257.83,\"fix_rate_value\":257.83,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2700\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE $US. 257.83 INCLUYEN GASTOS E IMPUESTOS DE LEY. 100% Final\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000498-SR-001124\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-15 13:24:30\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"163\",\"name\":\"Cooperativa Educacional Santa Cruz R.L.\",\"primary_external_code\":\"498\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-15 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-15 18:26:11\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000498-SR-001125 - Carnet de Extranjero - MELISSA ANDREA LOPEZ\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000498-SR-001125\",\"finishedDate\":null,\"fixRateValue\":257.83,\"fix_rate_value\":257.83,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2701\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE $US. 257.83 INCLUYEN GASTOS E IMPUESTOS DE LEY. 100% Final\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000498-SR-001125\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-15 13:26:11\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"163\",\"name\":\"Cooperativa Educacional Santa Cruz R.L.\",\"primary_external_code\":\"498\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-15 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-15 18:27:37\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000498-SR-001126 - Carnet de Extranjero - ELENA GRACE KALAHAR\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000498-SR-001126\",\"finishedDate\":null,\"fixRateValue\":257.83,\"fix_rate_value\":257.83,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2702\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE $US. 257.83 INCLUYEN GASTOS E IMPUESTOS DE LEY. 100% Final\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000498-SR-001126\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-15 13:27:37\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"163\",\"name\":\"Cooperativa Educacional Santa Cruz R.L.\",\"primary_external_code\":\"498\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-15 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-15 18:29:05\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000498-SR-001127 - Carnet de extranjero - NATHANIEL BURROUGHS CHERRY\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000498-SR-001127\",\"finishedDate\":null,\"fixRateValue\":257.83,\"fix_rate_value\":257.83,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2703\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE $US. 257.83 INCLUYEN GASTOS E IMPUESTOS DE LEY. 100% Final\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000498-SR-001127\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-15 13:29:05\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"163\",\"name\":\"Cooperativa Educacional Santa Cruz R.L.\",\"primary_external_code\":\"498\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-15 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-15 18:30:27\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000498-SR-001128 - Carnet de Extrajero - THOMAS JOHN HERBERT\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000498-SR-001128\",\"finishedDate\":null,\"fixRateValue\":257.83,\"fix_rate_value\":257.83,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2704\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE $US. 257.83 INCLUYEN GASTOS E IMPUESTOS DE LEY. 100% Final\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000498-SR-001128\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-15 13:30:28\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"163\",\"name\":\"Cooperativa Educacional Santa Cruz R.L.\",\"primary_external_code\":\"498\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-15 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-15 18:31:50\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000498-SR-001129 - Carnet de Extranjero - TONIE JONES\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000498-SR-001129\",\"finishedDate\":null,\"fixRateValue\":257.83,\"fix_rate_value\":257.83,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2705\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE $US. 257.83 INCLUYEN GASTOS E IMPUESTOS DE LEY. 100% Final\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000498-SR-001129\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-15 13:31:51\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"163\",\"name\":\"Cooperativa Educacional Santa Cruz R.L.\",\"primary_external_code\":\"498\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-15 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-15 18:33:06\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000498-SR-001130 - Carnet de Extranjero - ARIEL ALMOITE GUECO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000498-SR-001130\",\"finishedDate\":null,\"fixRateValue\":257.83,\"fix_rate_value\":257.83,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2706\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE $US. 257.83 INCLUYEN GASTOS E IMPUESTOS DE LEY. 100% Final\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000498-SR-001130\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-15 13:33:07\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"163\",\"name\":\"Cooperativa Educacional Santa Cruz R.L.\",\"primary_external_code\":\"498\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-15 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-15 18:34:15\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000498-SR-001131 - Carnet de Extranjero - EMMA RYAN NUTTER\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000498-SR-001131\",\"finishedDate\":null,\"fixRateValue\":257.83,\"fix_rate_value\":257.83,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2707\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE $US. 257.83 INCLUYEN GASTOS E IMPUESTOS DE LEY. 100% Final\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000498-SR-001131\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-15 13:34:16\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"163\",\"name\":\"Cooperativa Educacional Santa Cruz R.L.\",\"primary_external_code\":\"498\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-15 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-15 18:35:28\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000498-SR-001132 - Carnet de Extranjero - OMAR KHALED ALY NEGM\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000498-SR-001132\",\"finishedDate\":null,\"fixRateValue\":257.83,\"fix_rate_value\":257.83,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2708\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE $US. 257.83 INCLUYEN GASTOS E IMPUESTOS DE LEY. 100% Final\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000498-SR-001132\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-15 13:35:29\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"163\",\"name\":\"Cooperativa Educacional Santa Cruz R.L.\",\"primary_external_code\":\"498\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-28 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-28 20:10:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000404-SR-001147 - Servicios legales mensuales (FM) Regional SC\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000404-SR-001147\",\"finishedDate\":null,\"fixRateValue\":565,\"fix_rate_value\":565,\"hourLimit\":6,\"hour_limit\":6,\"id\":\"2765\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000404-SR-001147\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-28 20:22:31\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"166\",\"name\":\"Copelme SA\",\"primary_external_code\":\"404\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"30\",\"externalCode\":\"AR33\",\"name\":\"Servicios Legales Mensuales\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-28 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-28 20:16:47\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000404-SR-001148 - Servicios legales mensuales (FM) Regional CBBA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000404-SR-001148\",\"finishedDate\":null,\"fixRateValue\":565,\"fix_rate_value\":565,\"hourLimit\":6,\"hour_limit\":6,\"id\":\"2766\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000404-SR-001148\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-28 20:22:13\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"aaraoz@emba.com\",\"enabled\":true,\"fullName\":\"Alvaro Araoz Ardaya\",\"id\":17,\"locale\":\"es\",\"shortName\":\"aaraoz\",\"superAdmin\":false,\"updated_at\":\"2024-12-04 15:29:19\",\"userType\":1,\"username\":\"aaraoz@emba.com\"},\"customer\":{\"id\":\"166\",\"name\":\"Copelme SA\",\"primary_external_code\":\"404\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"30\",\"externalCode\":\"AR33\",\"name\":\"Servicios Legales Mensuales\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-08 00:00:00\",\"confidential\":false,\"created_at\":\"2024-04-08 20:10:47\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000165-SR-001167 - Ampliaci\\u00f3n del Objeto Social\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000165-SR-001167\",\"finishedDate\":null,\"fixRateValue\":1280,\"fix_rate_value\":1280,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2830\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"50% Inicio\\/50% Final\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000165-SR-001167\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-09 14:29:35\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"aaraoz@emba.com\",\"enabled\":true,\"fullName\":\"Alvaro Araoz Ardaya\",\"id\":17,\"locale\":\"es\",\"shortName\":\"aaraoz\",\"superAdmin\":false,\"updated_at\":\"2024-12-04 15:29:19\",\"userType\":1,\"username\":\"aaraoz@emba.com\"},\"customer\":{\"id\":\"175\",\"name\":\"CRAMER BOLIVIA S.A.\",\"primary_external_code\":\"165\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}}]}}}\n","time":"2025-07-30T10:50:42-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: POST https://apinewtm.com/graphql/\nHeaders: map[Accept:[application/json] Authorization:[Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJpYXQiOjE3NTM4ODY1MjIsImV4cCI6MTc1Mzk2NjUyMiwiaWQiOjEwNSwidXNlcm5hbWUiOiJpbnRlZ3JhY2lvbmVzQGVtYmEuYm8iLCJhcGlrZXkiOiI5Yzg0ZjYzZTRlMzk2ZGZmOWU5ZjU3NDI5OGRmZWUzOSIsImFwaWtleUNyZWF0ZWRBdCI6eyJkYXRlIjoiMjAyNS0wNy0xNyAxMDo0MToyNS4wMDAwMDAiLCJ0aW1lem9uZV90eXBlIjozLCJ0aW1lem9uZSI6IkFtZXJpY2EvQm9nb3RhIn0sImZ1bGxOYW1lIjoiSW50ZWdyYWNpw7NuIEVNQkEiLCJlbWFpbCI6ImludGVncmFjaW9uZXNAZW1iYS5ibyIsImxvY2FsZSI6ImVzIiwiZGF5c0FsbG93ZWQiOjMwLCJpc0Nvb3JkaW5hdG9yIjpmYWxzZSwidHlwZVRhc2tWaWV3IjoibGlzdHMiLCJkYXlzYWxsb3ciOjMwLCJyb2xlcyI6e30sInNob3J0X25hbWUiOiJJTi5FTUJBIiwicGVybWlzc2lvbnMiOlsic3luY19leHRlcm5hbF9idXNpbmVzcyIsInN5bmNfZXh0ZXJuYWxfY3VzdG9tZXIiLCJzeW5jX2V4dGVybmFsX21pbGVzdG9uZSIsImFic2VuY2VfYXBwcm92ZSIsImFic2VuY2VfY3JlYXRlX2FsbCIsImFic2VuY2VfY3JlYXRlX293biIsImFic2VuY2VfbWVudSIsImFjY291bnRpbmdfYnVzaW5lc3NfbGlzdCIsImFjY291bnRpbmdfY3VzdG9tZXJfbGlzdCIsImJpbGxpbmdfcGVyaW9kX2RlbGV0ZV9hbGwiLCJiaWxsaW5nX3BlcmlvZF9lZGl0X2FsbCIsImJpbGxpbmdfcGVyaW9kX2xpc3QiLCJiaWxsaW5nX3BlcmlvZF9yZWFjdGl2YXRlIiwiYm9hcmRfcmF0ZV91c2VyX2NyZWF0ZSIsImJvYXJkX3JhdGVfdXNlcl9lZGl0IiwiYnVzaW5lc3NfY3JlYXRlIiwiYnVzaW5lc3NfZGVzY3JpcHRpb25fc2F2ZSIsImJ1c2luZXNzX2VkaXQiLCJidXNpbmVzc19saXN0X2FsbCIsImJ1c2luZXNzX21lbnUiLCJidXNpbmVzc19yZXNwb25zaWJsZV9saXN0X2FsbCIsImJ1c2luZXNzX3NlZV9iaWxsaW5nX2luZm8iLCJidXNpbmVzc2VzX2FsbG93ZWRfdXNlcl9jcmVhdGUiLCJidXNpbmVzc2VzX2FsbG93ZWRfdXNlcl9kZWxldGUiLCJjb21wYW55X2Rpc2FibGUiLCJjb21wYW55X2VkaXQiLCJjb21wYW55X2xpc3QiLCJjb25jZXB0X2NyZWF0ZSIsImNvbmNlcHRfZWRpdCIsImNvbmNlcHRfbWVudSIsImNvbnRhY3RfY3JlYXRlIiwiY29udGFjdF9jcmVhdGVfZmFzdCIsImNvbnRhY3RfZWRpdCIsImNvbnRhY3RfbGlzdCIsImNvbnRhY3RfbWVudSIsImN1c3RvbWVyX2NyZWF0ZSIsImN1c3RvbWVyX2NyZWF0ZV9mYXN0IiwiY3VzdG9tZXJfZWRpdCIsImN1c3RvbWVyX2xpc3QiLCJjdXN0b21lcl9saXN0X2FsbCIsImN1c3RvbWVyX21lbnUiLCJleHBlbnNlX2NyZWF0ZV9hbGwiLCJleHBlbnNlX2RlbGV0ZV9hbGwiLCJleHBlbnNlX2R1cGxpY2F0ZSIsImV4cGVuc2VfZWRpdF9hbGwiLCJleHBlbnNlX2xpc3RfYWxsIiwiZXhwZW5zZV9tZW51IiwiZXhwZW5zZV9yZWplY3RfYWxsIiwiZmFiX3Nob3ciLCJmaWxlX21lbnUiLCJnZW9yZWZlcmVuY2VfY3JlYXRlIiwiZ2VvcmVmZXJlbmNlX2VkaXQiLCJnZW9yZWZlcmVuY2VfbWVudSIsImdvX3RvX2xlZ2FjeSIsImluZGljYXRvcnNfbWVudSIsImludm9pY2VfY3JlYXRlIiwiaW52b2ljZV9kZXRhaWxfbGlzdF9hbGwiLCJpbnZvaWNlX2ZpeF90aW1lc19jdXN0b21fdmFsdWUiLCJpbnZvaWNlX2xpc3RfYWxsIiwiaW52b2ljZWFkdmFuY2VfY3JlYXRlIiwiaW52b2ljZWFkdmFuY2VfbGlzdCIsImludm9pY2VhZHZhbmNlX3VwZGF0ZSIsImxvZ19saXN0X2FsbCIsImxvZ19saXN0X293biIsIm1pbGVzdG9uZV9jcmVhdGUiLCJtaWxlc3RvbmVfZGVsZXRlIiwibWlsZXN0b25lX2VkaXQiLCJtb250aGx5X2ZpeF9yYXRlX2dyb3VwX2NyZWF0ZSIsIm1vbnRobHlfZml4X3JhdGVfZ3JvdXBfZWRpdCIsIm1vbnRobHlfdXNlcl9jb3N0X2NyZWF0ZSIsIm1vbnRobHlfdXNlcl9jb3N0X2VkaXQiLCJwYXltZW50X2NyZWF0ZSIsInBheW1lbnRfZGVsZXRlIiwicGF5bWVudF9lZGl0IiwicGF5bWVudF9tZW51IiwicHJvY2VkdXJlX21lbnUiLCJwcm9jZWR1cmVfcmF0ZV9jcmVhdGUiLCJwcm9jZWR1cmVfcmF0ZV9kZXRhaWxfY3JlYXRlIiwicHJvY2VkdXJlX3JhdGVfZGV0YWlsX2VkaXQiLCJwcm9jZWR1cmVfcmF0ZV9kZXRhaWxfbGlzdCIsInByb2NlZHVyZV9yYXRlX2VkaXQiLCJwcm9jZWR1cmVfcmF0ZV9saXN0IiwicHJvY2VkdXJlX3JhdGVfbWVudSIsInByb2NlZHVyZV90cmFuc2FjdGlvbl9saXN0IiwicHJvamVjdF9hcmNoaXZlX2Nhc2NhZGVfYWxsIiwicHJvamVjdF9kZWxldGVfY2FzY2FkZV9hbGwiLCJwcm9qZWN0X3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInJhdGVfYnVzaW5lc3NfY2F0ZWdvcnlfY3JlYXRlIiwicmF0ZV9idXNpbmVzc19jYXRlZ29yeV9lZGl0IiwicmF0ZV9idXNpbmVzc191c2VyX2NyZWF0ZSIsInJhdGVfYnVzaW5lc3NfdXNlcl9lZGl0IiwicmF0ZV9leGNoYW5nZV9jcmVhdGUiLCJyYXRlX2V4Y2hhbmdlX2VkaXQiLCJyYXRlX2V4Y2hhbmdlX2xpc3QiLCJyYXRlX3VzZXJfY3JlYXRlIiwicmF0ZV91c2VyX2VkaXQiLCJyb2xlX2NyZWF0ZSIsInJvbGVfZWRpdF9hbGwiLCJyb2xlX2xpc3RfYWxsIiwic2VjdGlvbl9hcmNoaXZlX2Nhc2NhZGVfYWxsIiwic2VjdGlvbl9kZWxldGVfY2FzY2FkZV9hbGwiLCJzZWN0aW9uX3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInNlZV9tZW51X3JhdGVfZXhjaGFuZ2UiLCJzZXJpZV9jcmVhdGUiLCJzZXJpZV9lZGl0Iiwic2VyaWVfbWVudSIsInNldHRpbmdzX3ZpZXciLCJzdXBwbGllcl9jcmVhdGUiLCJ0YXNrX2FkZF90aW1lX2FsbCIsInRhc2tfYWRkX3RpbWVfb3duIiwidGFza19hc3NpZ25lZF91c2VyX2VtYWlsIiwidGFza19jbG9zZWRfZW1haWwiLCJ0YXNrX2NyZWF0ZV9hbGwiLCJ0YXNrX2NyZWF0ZV9jb21tZW50X2VtYWlsIiwidGFza19jcmVhdGVfc2VsZiIsInRhc2tfY3JlYXRlX3RlYW0iLCJ0YXNrX2RlbGV0ZV9hbGwiLCJ0YXNrX2RlbGV0ZV9vd24iLCJ0YXNrX2RlbGV0ZV90ZWFtIiwidGFza19lZGl0X2FsbCIsInRhc2tfZWRpdF9kdWVfZGF0ZSIsInRhc2tfZWRpdF9vd24iLCJ0YXNrX2VkaXRfdGVhbSIsInRhc2tfbGlzdF9hbGwiLCJ0YXNrX2xpc3Rfb3duIiwidGFza19saXN0X3RlYW0iLCJ0YXNrX21hc3NpdmVpbXBvcnQiLCJ0YXNrX21lbnUiLCJ0YXNrX21pZ3JhdGlvbiIsInRhc2tfc2V0X2FkZGl0aW9uYWxfYXNzaWduZWVzIiwidGFza19zZXRfZHVlX2RhdGUiLCJ0YXNrX3NldF9lc3RpbWF0ZWRfdGltZSIsInRhc2tfc2V0X3ByaW9yaXR5IiwidGFza19zZXRfcHJvZ3Jlc3MiLCJ0YXhfZWRpdF9hbGwiLCJ0YXhfbGlzdF9hbGwiLCJ0ZWFtX2FyY2hpdmVfY2FzY2FkZV9hbGwiLCJ0ZWFtX2NyZWF0ZV9hbGwiLCJ0ZWFtX2RlbGV0ZV9hbGwiLCJ0ZWFtX2VkaXRfYWxsIiwidGVhbV9saXN0X2FsbCIsInRlYW1fbGlzdF9vd24iLCJ0ZWFtX3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInRpbWVfYWNjZXB0X2FsbCIsInRpbWVfYWNjZXB0X293biIsInRpbWVfYXBwcm92ZV9hbGwiLCJ0aW1lX2FwcHJvdmVfb3duIiwidGltZV9jcmVhdGVfYWxsIiwidGltZV9jcmVhdGVfb3duIiwidGltZV9kZWxldGVfYWxsIiwidGltZV9kZWxldGVfb3duIiwidGltZV9kZW55X2FsbCIsInRpbWVfZGVueV9vd24iLCJ0aW1lX2Rvd25sb2FkZmlsZV9hbGwiLCJ0aW1lX2Rvd25sb2FkZmlsZV9vd24iLCJ0aW1lX2VkaXRfYWxsIiwidGltZV9lZGl0X2Nsb3NlX3BlcmlvZF9hbGwiLCJ0aW1lX2VkaXRfY2xvc2VfcGVyaW9kX293biIsInRpbWVfZWRpdF9vd24iLCJ0aW1lX2xpc3RfYWxsIiwidGltZV9saXN0X293biIsInRpbWVfbWVudSIsInRpbWVfbWludXRlc196ZXJvIiwidGltZV9yZWplY3RfYWxsIiwidGltZV9yZXN0cmljdGVkX3BlcmlvZF9jcmVhdGUiLCJ0aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX2VkaXQiLCJ0aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX21lbnUiLCJ0aW1lX3NoYXJlX2FsbCIsInRpbWVfc2hhcmVfb3duIiwidGltZV9zaG93X2NhbGVuZGFyX3ZpZXciLCJ0aW1lX3VwbG9hZGZpbGVfYWxsIiwidGltZV91cGxvYWRmaWxlX293biIsInRyYW5zYWN0aW9uX2FkYXB0ZXJfbGlzdCIsInRyYW5zYWN0aW9uX2xpc3QiLCJ1c2VyX2Fic2VuY2VzX3Nob3ciLCJ1c2VyX2Nvc3RfY3JlYXRlIiwidXNlcl9jb3N0X2VkaXQiLCJ1c2VyX2Nvc3RfbGlzdCIsInVzZXJfY29zdF9tZW51IiwidXNlcl9jb3N0X3JhdGVfY3JlYXRlIiwidXNlcl9jb3N0X3JhdGVfZWRpdCIsInVzZXJfY29zdF9yYXRlX2xpc3QiLCJ1c2VyX2NyZWF0ZSIsInVzZXJfZGlzYWJsZSIsInVzZXJfZWRpdCIsInVzZXJfZWRpdF9kYXlzX2FsbG93X29ubHkiLCJ1c2VyX2dyb3VwX3JvbGVfY3JlYXRlX2FsbCIsInVzZXJfZ3JvdXBfcm9sZV9kZWxldGVfYWxsIiwidXNlcl9ncm91cF9yb2xlX2VkaXRfYWxsIiwidXNlcl9ncm91cF9yb2xlc19saXN0X2FsbCIsInVzZXJfbGlzdCIsInVzZXJfbGlzdF9hbGwiLCJ1c2VyX21hc3NfYWN0aXZhdGlvbiIsInVzZXJfcHJvZHVjdGl2aXR5X2NyZWF0ZSIsInVzZXJfcHJvZHVjdGl2aXR5X2Rpc2FibGUiLCJ1c2VyX3Byb2R1Y3Rpdml0eV9lZGl0IiwidXNlcl9wcm9kdWN0aXZpdHlfZW5hYmxlIiwidXNlcl9wcm9kdWN0aXZpdHlfbWVudSIsInVzZXJfdGltZV9yZXN0cmljdGVkX3BlcmlvZF9jcmVhdGUiLCJ1c2VyX3RpbWVfcmVzdHJpY3RlZF9wZXJpb2RfZGVsZXRlIiwidXNlcl90aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX2VkaXQiLCJ1c2VyZ3JvdXBfY3JlYXRlX2FsbCIsInVzZXJncm91cF9kZWxldGVfYWxsIiwidXNlcmdyb3VwX2VkaXRfYWxsIiwidXNlcmdyb3VwX2xpc3RfYWxsIiwidXNlcmdyb3VwX21lbnUiLCJ1c2Vyc191c2VyX2dyb3VwX2NyZWF0ZV9hbGwiLCJ1c2Vyc191c2VyX2dyb3VwX2RlbGV0ZV9hbGwiLCJ1c2Vyc191c2VyX2dyb3VwX2VkaXRfYWxsIiwidXNlcnNfdXNlcl9ncm91cHNfbGlzdF9hbGwiXSwiaG9tZXBhZ2UiOm51bGx9.kShN7NXGoaz1oFro-yYNyIpIEcnNpo1GiB8SFGKFUJtDQoqyp1I1w-CMA8Kta3vWXnUZwx-y2z1yVSJaMpZbqQgKFlakpcf6351bZSL8IAUPExSfLz0HYYCWFx-Usx94BBTqosKsRhnT8PkPN3dGxs8-XTIEDi9gN-Pk9OSHmM5mPkTsaaxTY40M-F7Y0Up2y6s_lwFaX13CmstiYZSXzyKL9SUBBx-E6-8qQAfuKPIoZ_50jSGPW98-IkAcWwqO6yGf-M07dSfFZ2vLfwc3ulHm2p8jVSmRxJ_O43BEWQD5cvqGbVIvSMXkS4y98DL4Vencjjg27iu3CUJsDNBBTg] Content-Type:[application/json] Origin:[https://azure-function.timemanagerweb.com] Tenant-Name:[pruebas-dos] User-Agent:[Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36]]\nBody: map[query:query ($limit: Int, $orderBy: String, $orderDesc: Boolean, $page: Int) { BusinessMeta(limit: $limit, orderBy: $orderBy, orderDesc: $orderDesc, page: $page) { meta { hasNextPage hasPreviousPage limit next page pages previous total } rows { apply_procedures billable business_customer_code caseNumber closed_date confidential created_at discountAmount discountPercent displayName enableBusinessAllowedUsers expedient finishedDate fixRateValue fix_rate_value hourLimit hour_limit id internal_code isBillable limitAlert notes partialCharges partial_charges primary_external_code processing secondaryExternalCode secondary_external_code status statusMarking updated_at withIVA responsible { created_at daysAllow email enabled fullName id locale shortName superAdmin updated_at userType username } customer { id name primary_external_code company { id name } } practiceArea { id externalCode name } } } } variables:map[limit:100 orderBy:orderBy orderDesc:true page:8]]\n","time":"2025-07-30T10:50:42-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: POST https://apinewtm.com/graphql/ | Status: 200 | Duration: 1.3985449s\nHeaders: map[Access-Control-Allow-Credentials:[true] Access-Control-Allow-Origin:[https://azure-function.timemanagerweb.com] Access-Control-Expose-Headers:[link, access-control-allow-credentials] Cache-Control:[no-cache, private] Content-Type:[application/json] Date:[Wed, 30 Jul 2025 14:50:43 GMT] Server:[] Vary:[Authorization]]\nBody: {\"errors\":[{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"username\"]}],\"data\":{\"BusinessMeta\":{\"meta\":{\"hasNextPage\":true,\"hasPreviousPage\":true,\"limit\":100,\"next\":9,\"page\":8,\"pages\":16,\"previous\":7,\"total\":1573},\"rows\":[{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-09-21 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000603-SR-000726 - Asesor\\u00eda legal por horas\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000603-SR-000726\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"8\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Se debe a\\u00f1adir impuestos - IVA\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000603-SR-000726\",\"processing\":false,\"secondaryExternalCode\":\"4376\",\"secondary_external_code\":\"4376\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-21 20:10:39\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"222\",\"name\":\"Embajada de Suecia, La Paz, Bolivia\",\"primary_external_code\":\"603\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"17\",\"externalCode\":\"AR08\",\"name\":\"Der. Laboral y Seg. Soc.\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-06-12 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000537-SR-000653 - Consultas Legales por hora\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000537-SR-000653\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"9\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"El honorario no incluye IVA\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000537-SR-000653\",\"processing\":false,\"secondaryExternalCode\":\"4179\",\"secondary_external_code\":\"4179\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-21 20:09:25\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"223\",\"name\":\"Embajada de Suiza\",\"primary_external_code\":\"537\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"17\",\"externalCode\":\"AR08\",\"name\":\"Der. Laboral y Seg. Soc.\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-07-25 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000592-SR-000674 - Transferencia de Cuotas y Activos\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000592-SR-000674\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"10\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000592-SR-000674\",\"processing\":false,\"secondaryExternalCode\":\"4231\",\"secondary_external_code\":\"4231\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"amorenog@emba.com\",\"enabled\":true,\"fullName\":\"Andres Moreno Gutierrez\",\"id\":5,\"locale\":\"es\",\"shortName\":\"amoreno\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"amorenog@emba.com\"},\"customer\":{\"id\":\"235\",\"name\":\"ENERFLEX SERVICES BOLIVIA S.R.L.\",\"primary_external_code\":\"592\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-08-03 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000490-SR-000515 - Asesor\\u00eda legal por horas\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000490-SR-000515\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"11\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Socio USD 240\\nSenior USD 180\\nAsociado USD 150\\n\\nFacturar a Cisneros Interactive Bolivia S.R.L. de forma mensual\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000490-SR-000515\",\"processing\":false,\"secondaryExternalCode\":\"3516\",\"secondary_external_code\":\"3516\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"237\",\"name\":\"ENTRAVISION BOLIVIA S.R.L.\",\"primary_external_code\":\"490\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"30\",\"externalCode\":\"AR33\",\"name\":\"Servicios Legales Mensuales\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-10-23 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000490-SR-000752 - Servicios de apoyo preparaci\\u00f3n y llenado form RIOF\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000490-SR-000752\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"12\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Se debe facturar por hora a USD 150 por hora\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000490-SR-000752\",\"processing\":false,\"secondaryExternalCode\":\"4543\",\"secondary_external_code\":\"4543\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-07 15:59:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"cdelgado@emba.com\",\"enabled\":true,\"fullName\":\"Cristhian Delgado Ramirez\",\"id\":13,\"locale\":\"es\",\"shortName\":\"cdelgado\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"cdelgado@emba.com\"},\"customer\":{\"id\":\"237\",\"name\":\"ENTRAVISION BOLIVIA S.R.L.\",\"primary_external_code\":\"490\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"24\",\"externalCode\":\"AR05\",\"name\":\"Outsourcing\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2021-07-23 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000098-SR-000407 - Asesor\\u00eda legal por horas\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000098-SR-000407\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"13\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000098-SR-000407\",\"processing\":false,\"secondaryExternalCode\":\"2863\",\"secondary_external_code\":\"2863\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"jpzegada@emba.com\",\"enabled\":true,\"fullName\":\"Juan Pablo Zegada\",\"id\":20,\"locale\":\"es\",\"shortName\":\"jzegada\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"jpzegada@emba.com\"},\"customer\":{\"id\":\"294\",\"name\":\"GOJA BOLIVIA SRL\",\"primary_external_code\":\"98\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"17\",\"externalCode\":\"AR08\",\"name\":\"Der. Laboral y Seg. Soc.\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-28 00:00:00\",\"confidential\":false,\"created_at\":\"2021-12-22 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000455-SR-000443 - GRUPO MARCHETT\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000455-SR-000443\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"14\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"SOCIO USD 250, ASOCIADO SENIOR USD 190 Y ASOCIADO USD 140\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000455-SR-000443\",\"processing\":false,\"secondaryExternalCode\":\"3071\",\"secondary_external_code\":\"3071\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-09 20:51:29\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"lmorenog@emba.com\",\"enabled\":true,\"fullName\":\"Luis Moreno Gutierrez\",\"id\":8,\"locale\":\"es\",\"shortName\":\"lmoreno\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"lmorenog@emba.com\"},\"customer\":{\"id\":\"306\",\"name\":\"GRUPO MARCHET - Natalia Rivero\",\"primary_external_code\":\"455\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"6\",\"externalCode\":\"AR17\",\"name\":\"Der.Comercial \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2018-06-01 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000096-SR-000016 - Servicios legales mensuales (FM)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000096-SR-000016\",\"finishedDate\":null,\"fixRateValue\":2160,\"fix_rate_value\":2160,\"hourLimit\":20,\"hour_limit\":20,\"id\":\"138\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000096-SR-000016\",\"processing\":false,\"secondaryExternalCode\":\"57\",\"secondary_external_code\":\"57\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-08 20:27:31\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"paramayo@emba.com\",\"enabled\":true,\"fullName\":\"Paul Aramayo Salinas\",\"id\":9,\"locale\":\"es\",\"shortName\":\"paramayo\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"paramayo@emba.com\"},\"customer\":{\"id\":\"243\",\"name\":\"EXTERRAN BOLIVIA SRL\",\"primary_external_code\":\"96\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":\"\",\"caseNumber\":null,\"closed_date\":\"2024-02-23 00:00:00\",\"confidential\":false,\"created_at\":\"2022-08-11 05:00:00\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000508-SR-000516 - Servicios Legales Mensuales\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000508-SR-000516\",\"finishedDate\":\"2024-02-29 00:00:00\",\"fixRateValue\":1305,\"fix_rate_value\":1305,\"hourLimit\":12,\"hour_limit\":12,\"id\":\"139\",\"internal_code\":\"\",\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Retainer mensual de USD. 1500.- hasta 12 horas, supera se cobra USD. 100 por cada hora adicional\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000508-SR-000516\",\"processing\":false,\"secondaryExternalCode\":\"3524\",\"secondary_external_code\":\"3524\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-22 16:37:18\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"268\",\"name\":\"FOIANINISALUD MEDICINAPREPAGA S.A\",\"primary_external_code\":\"508\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"6\",\"externalCode\":\"AR17\",\"name\":\"Der.Comercial \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":\"\",\"caseNumber\":null,\"closed_date\":\"2024-06-11 00:00:00\",\"confidential\":false,\"created_at\":\"2019-04-09 05:00:00\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000744-SR-000081 - Servicios legales mensuales (FM)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000744-SR-000081\",\"finishedDate\":\"2024-06-11 00:00:00\",\"fixRateValue\":1500,\"fix_rate_value\":1500,\"hourLimit\":12,\"hour_limit\":12,\"id\":\"140\",\"internal_code\":\"\",\"isBillable\":true,\"limitAlert\":null,\"notes\":\"USD. 1.500.- de manera mensual, sin impuestos, por doce (12) horas al mes de servicios. Por cada hora adicional a las doce (12) horas pactadas en el honorario fijo, se cobrar\\u00e1 un monto adicional de\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000744-SR-000081\",\"processing\":false,\"secondaryExternalCode\":\"1294\",\"secondary_external_code\":\"1294\",\"status\":1,\"statusMarking\":\"finished\",\"updated_at\":\"2024-06-13 14:44:06\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"305\",\"name\":\"AGENCIA DE MARKETINGPROMOCIONAL LUCKY BOLIVIA S.A.\",\"primary_external_code\":\"744\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-11 00:00:00\",\"confidential\":false,\"created_at\":\"2023-01-24 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000483-SR-000572 - Actualizaci\\u00f3n de la Tarjeta de Propiedad y obtenci\\u00f3n de Folio Real. Obtenci\\u00f3n de Registro Catastral\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000483-SR-000572\",\"finishedDate\":null,\"fixRateValue\":1939.66,\"fix_rate_value\":1939.66,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"334\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000483-SR-000572\",\"processing\":false,\"secondaryExternalCode\":\"3812\",\"secondary_external_code\":\"3812\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-11 21:10:13\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"221\",\"name\":\"Embajada de Italia en Bolivia\",\"primary_external_code\":\"483\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"5\",\"externalCode\":\"AR02\",\"name\":\"Der.Civil \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-12-06 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000483-SR-000788 - INFORME LEGAL SOBRE EL ESTADO DE 2 PROCESOS COACTIVOS SOCIALES SEGUIDOS POR LA CNS\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000483-SR-000788\",\"finishedDate\":null,\"fixRateValue\":490,\"fix_rate_value\":490,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"335\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000483-SR-000788\",\"processing\":false,\"secondaryExternalCode\":\"4634\",\"secondary_external_code\":\"4634\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"nezegarra@emba.com\",\"enabled\":true,\"fullName\":\"Natalio Eduardo Zegarra Ribera\",\"id\":15,\"locale\":\"es\",\"shortName\":\"nzegarra\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"nezegarra@emba.com\"},\"customer\":{\"id\":\"221\",\"name\":\"Embajada de Italia en Bolivia\",\"primary_external_code\":\"483\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"17\",\"externalCode\":\"AR08\",\"name\":\"Der. Laboral y Seg. Soc.\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-12-06 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000483-SR-000789 - INFORME LEGAL SOBRE BENEFICIOS Y DERECHOS LABORALES EN BOLIVIA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000483-SR-000789\",\"finishedDate\":null,\"fixRateValue\":380,\"fix_rate_value\":380,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"336\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000483-SR-000789\",\"processing\":false,\"secondaryExternalCode\":\"4636\",\"secondary_external_code\":\"4636\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"nezegarra@emba.com\",\"enabled\":true,\"fullName\":\"Natalio Eduardo Zegarra Ribera\",\"id\":15,\"locale\":\"es\",\"shortName\":\"nzegarra\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"nezegarra@emba.com\"},\"customer\":{\"id\":\"221\",\"name\":\"Embajada de Italia en Bolivia\",\"primary_external_code\":\"483\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"17\",\"externalCode\":\"AR08\",\"name\":\"Der. Laboral y Seg. Soc.\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-09-14 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000537-SR-000718 - Terminaci\\u00f3n Laboral - M\\u00f3nica Virginia Calyzaya Mendoza\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000537-SR-000718\",\"finishedDate\":null,\"fixRateValue\":90,\"fix_rate_value\":90,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"337\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000537-SR-000718\",\"processing\":false,\"secondaryExternalCode\":\"4358\",\"secondary_external_code\":\"4358\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"223\",\"name\":\"Embajada de Suiza\",\"primary_external_code\":\"537\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"17\",\"externalCode\":\"AR08\",\"name\":\"Der. Laboral y Seg. Soc.\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-09-14 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000537-SR-000719 - Terminaci\\u00f3n laboral - Blanca Carmi\\u00f1a Antezana\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000537-SR-000719\",\"finishedDate\":null,\"fixRateValue\":90,\"fix_rate_value\":90,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"338\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000537-SR-000719\",\"processing\":false,\"secondaryExternalCode\":\"4359\",\"secondary_external_code\":\"4359\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"223\",\"name\":\"Embajada de Suiza\",\"primary_external_code\":\"537\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"17\",\"externalCode\":\"AR08\",\"name\":\"Der. Laboral y Seg. Soc.\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-09-14 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000537-SR-000720 - Terminaci\\u00f3n Laboral - Judy Leny Torrez Ossio\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000537-SR-000720\",\"finishedDate\":null,\"fixRateValue\":90,\"fix_rate_value\":90,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"339\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000537-SR-000720\",\"processing\":false,\"secondaryExternalCode\":\"4360\",\"secondary_external_code\":\"4360\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"223\",\"name\":\"Embajada de Suiza\",\"primary_external_code\":\"537\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"17\",\"externalCode\":\"AR08\",\"name\":\"Der. Laboral y Seg. Soc.\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-12-07 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000537-SR-000790 - REVISI\\u00d3N DE DOCUMENTOS - FISCALIZACI\\u00d3N SENASIR\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000537-SR-000790\",\"finishedDate\":null,\"fixRateValue\":4200,\"fix_rate_value\":4200,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"340\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000537-SR-000790\",\"processing\":false,\"secondaryExternalCode\":\"4638\",\"secondary_external_code\":\"4638\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"cdelgado@emba.com\",\"enabled\":true,\"fullName\":\"Cristhian Delgado Ramirez\",\"id\":13,\"locale\":\"es\",\"shortName\":\"cdelgado\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"cdelgado@emba.com\"},\"customer\":{\"id\":\"223\",\"name\":\"Embajada de Suiza\",\"primary_external_code\":\"537\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"17\",\"externalCode\":\"AR08\",\"name\":\"Der. Laboral y Seg. Soc.\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-03-07 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000278-SR-000596 - Defensa Tributaria\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000278-SR-000596\",\"finishedDate\":null,\"fixRateValue\":4275,\"fix_rate_value\":4275,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"341\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Tambi\\u00e9n tenemos un honorario de \\u00e9xito del 4% sobre el ahorro que se genere.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000278-SR-000596\",\"processing\":false,\"secondaryExternalCode\":\"4006\",\"secondary_external_code\":\"4006\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"rburgos@emba.com\",\"enabled\":true,\"fullName\":\"Edwin Rodrigo Burgos Fernandez\",\"id\":16,\"locale\":\"es\",\"shortName\":\"rburgos\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rburgos@emba.com\"},\"customer\":{\"id\":\"224\",\"name\":\"EMPACAR S.A.\",\"primary_external_code\":\"278\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"19\",\"externalCode\":\"AR09\",\"name\":\"Der. Tributario\\u0026 Plan.Fiscal\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-03-14 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000557-SR-000599 - Servicios legales\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000557-SR-000599\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"342\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000557-SR-000599\",\"processing\":false,\"secondaryExternalCode\":\"4011\",\"secondary_external_code\":\"4011\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-28 20:51:13\",\"daysAllow\":302,\"email\":\"Prueba@prueba.com\",\"enabled\":true,\"fullName\":\"Ramiro Moreno Baldivieso\",\"id\":72,\"locale\":\"es\",\"shortName\":\"rmorenob\",\"superAdmin\":false,\"updated_at\":\"2024-08-29 14:19:23\",\"userType\":1,\"username\":\"Prueba@prueba.com\"},\"customer\":{\"id\":\"226\",\"name\":\"EMPRESA CONSTRUCTORA HORUS Ltda\",\"primary_external_code\":\"557\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2020-05-29 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000347-SR-000255 - Honorarios por servicios legales mensuales\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000347-SR-000255\",\"finishedDate\":null,\"fixRateValue\":2298.85,\"fix_rate_value\":2298.85,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"343\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Honorarios por servicios legales mensuales USD 3900 a partir del mes de Junio 2020\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000347-SR-000255\",\"processing\":false,\"secondaryExternalCode\":\"2056\",\"secondary_external_code\":\"2056\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"227\",\"name\":\"EMPRESA DE COMUNICACI\\u00d3N SOCIAL EL DEBER S.A.\",\"primary_external_code\":\"347\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"32\",\"externalCode\":\"AR35\",\"name\":\"Telecomunicaciones\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2021-06-30 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000347-SR-000393 - PROCESO JUDICIAL LABORAL (Mauricio Da Costa Saat)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000347-SR-000393\",\"finishedDate\":null,\"fixRateValue\":3549.82,\"fix_rate_value\":3549.82,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"344\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000347-SR-000393\",\"processing\":false,\"secondaryExternalCode\":\"2770\",\"secondary_external_code\":\"2770\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 14:07:22\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"paramayo@emba.com\",\"enabled\":true,\"fullName\":\"Paul Aramayo Salinas\",\"id\":9,\"locale\":\"es\",\"shortName\":\"paramayo\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"paramayo@emba.com\"},\"customer\":{\"id\":\"227\",\"name\":\"EMPRESA DE COMUNICACI\\u00d3N SOCIAL EL DEBER S.A.\",\"primary_external_code\":\"347\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"17\",\"externalCode\":\"AR08\",\"name\":\"Der. Laboral y Seg. Soc.\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-11-14 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000592-SR-000760 - Licencia Ambiental - Ministerio de Medio Ambiente y Agua\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000592-SR-000760\",\"finishedDate\":null,\"fixRateValue\":1500,\"fix_rate_value\":1500,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"345\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000592-SR-000760\",\"processing\":false,\"secondaryExternalCode\":\"4581\",\"secondary_external_code\":\"4581\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"atejerina@emba.com\",\"enabled\":true,\"fullName\":\"Andre Luis Tejerina Queiroz\",\"id\":25,\"locale\":\"es\",\"shortName\":\"atejerin\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"atejerina@emba.com\"},\"customer\":{\"id\":\"235\",\"name\":\"ENERFLEX SERVICES BOLIVIA S.R.L.\",\"primary_external_code\":\"592\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"12\",\"externalCode\":null,\"name\":\"Der. Constitucional\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-04-11 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000490-SR-000484 - Seguimiento y monitoreo proceso penal Interactive\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000490-SR-000484\",\"finishedDate\":null,\"fixRateValue\":3800,\"fix_rate_value\":3800,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"346\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Consultar con AMG si ser\\u00e1 BKP\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000490-SR-000484\",\"processing\":false,\"secondaryExternalCode\":\"3288\",\"secondary_external_code\":\"3288\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"237\",\"name\":\"ENTRAVISION BOLIVIA S.R.L.\",\"primary_external_code\":\"490\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"34\",\"externalCode\":\"AR03\",\"name\":\"Der. Penal\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-05-12 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000490-SR-000499 - Representaci\\u00f3n Legal Cisneros Interactive Bolivia S.R.L.\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000490-SR-000499\",\"finishedDate\":null,\"fixRateValue\":3500,\"fix_rate_value\":3500,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"347\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Del honorario total que recibe MB, debemos pagar mensualmente USD 2500 al representante legal, de los cuales se deben deducir o descontar impuestos.\\nFavor coordinar cada mes la facturaci\\u00f3n oportuna y\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000490-SR-000499\",\"processing\":false,\"secondaryExternalCode\":\"3387\",\"secondary_external_code\":\"3387\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"237\",\"name\":\"ENTRAVISION BOLIVIA S.R.L.\",\"primary_external_code\":\"490\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"6\",\"externalCode\":\"AR17\",\"name\":\"Der.Comercial \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-09-22 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000607-SR-000729 - Aumento de Capital\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000607-SR-000729\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"348\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000607-SR-000729\",\"processing\":false,\"secondaryExternalCode\":\"4378\",\"secondary_external_code\":\"4378\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-21 21:58:59\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"238\",\"name\":\"EPICUSINE GROUP LTDA\",\"primary_external_code\":\"607\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2020-11-30 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000096-SR-000304 - Asesoria Legal Etapa Extrajudicial Exterrran v. Petrobras\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000096-SR-000304\",\"finishedDate\":null,\"fixRateValue\":15000,\"fix_rate_value\":15000,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"351\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000096-SR-000304\",\"processing\":false,\"secondaryExternalCode\":\"2381\",\"secondary_external_code\":\"2381\",\"status\":1,\"statusMarking\":\"disabled\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"amorenog@emba.com\",\"enabled\":true,\"fullName\":\"Andres Moreno Gutierrez\",\"id\":5,\"locale\":\"es\",\"shortName\":\"amoreno\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"amorenog@emba.com\"},\"customer\":{\"id\":\"243\",\"name\":\"EXTERRAN BOLIVIA SRL\",\"primary_external_code\":\"96\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"2\",\"externalCode\":\"AR04\",\"name\":\"Arbitraje\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2023-08-14 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000096-SR-000683 - Informe anual de monitoreo medio ambiental 2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000096-SR-000683\",\"finishedDate\":null,\"fixRateValue\":352.01,\"fix_rate_value\":352.01,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"353\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Cobrar de inmediato 50 %\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000096-SR-000683\",\"processing\":false,\"secondaryExternalCode\":\"4260\",\"secondary_external_code\":\"4260\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 14:09:19\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"atejerina@emba.com\",\"enabled\":true,\"fullName\":\"Andre Luis Tejerina Queiroz\",\"id\":25,\"locale\":\"es\",\"shortName\":\"atejerin\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"atejerina@emba.com\"},\"customer\":{\"id\":\"243\",\"name\":\"EXTERRAN BOLIVIA SRL\",\"primary_external_code\":\"96\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"17\",\"externalCode\":\"AR08\",\"name\":\"Der. Laboral y Seg. Soc.\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2019-03-29 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000243-SR-000073 - GESTI\\u00d3N DE COBRANZA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000243-SR-000073\",\"finishedDate\":null,\"fixRateValue\":9500,\"fix_rate_value\":9500,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"355\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"HONORARIOS Y FORMA DE PAGO A CONFIRMAR CON EL DR. ANDR\\u00c9S MORENO\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000243-SR-000073\",\"processing\":false,\"secondaryExternalCode\":\"1269\",\"secondary_external_code\":\"1269\",\"status\":1,\"statusMarking\":\"disabled\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"246\",\"name\":\"FABER CASTELL\",\"primary_external_code\":\"243\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"5\",\"externalCode\":\"AR02\",\"name\":\"Der.Civil \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-09-14 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000513-SR-000527 - Registro Aceptaci\\u00f3n de Herencia\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000513-SR-000527\",\"finishedDate\":null,\"fixRateValue\":1000,\"fix_rate_value\":1000,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"357\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000513-SR-000527\",\"processing\":false,\"secondaryExternalCode\":\"3580\",\"secondary_external_code\":\"3580\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"aaraoz@emba.com\",\"enabled\":true,\"fullName\":\"Alvaro Araoz Ardaya\",\"id\":17,\"locale\":\"es\",\"shortName\":\"aaraoz\",\"superAdmin\":false,\"updated_at\":\"2024-12-04 15:29:19\",\"userType\":1,\"username\":\"aaraoz@emba.com\"},\"customer\":{\"id\":\"248\",\"name\":\"Fabiola Antelo Cuellar\",\"primary_external_code\":\"513\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"5\",\"externalCode\":\"AR02\",\"name\":\"Der.Civil \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-10-17 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000618-SR-000737 - Adquisici\\u00f3n Inmueble Sarco\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000618-SR-000737\",\"finishedDate\":null,\"fixRateValue\":391.5,\"fix_rate_value\":391.5,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"358\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000618-SR-000737\",\"processing\":false,\"secondaryExternalCode\":\"4520\",\"secondary_external_code\":\"4520\",\"status\":1,\"statusMarking\":\"disabled\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"aaraoz@emba.com\",\"enabled\":true,\"fullName\":\"Alvaro Araoz Ardaya\",\"id\":17,\"locale\":\"es\",\"shortName\":\"aaraoz\",\"superAdmin\":false,\"updated_at\":\"2024-12-04 15:29:19\",\"userType\":1,\"username\":\"aaraoz@emba.com\"},\"customer\":{\"id\":\"252\",\"name\":\"Familia Tejerina Rivera\",\"primary_external_code\":\"618\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"16\",\"externalCode\":\"AR24\",\"name\":\"Der. Inmobiliario\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2021-12-01 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000449-SR-000437 - Servicio de Outsourcing contable\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000449-SR-000437\",\"finishedDate\":null,\"fixRateValue\":1150,\"fix_rate_value\":1150,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"363\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"facturar a paertir del mes de noviembre 2022\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000449-SR-000437\",\"processing\":false,\"secondaryExternalCode\":\"3038\",\"secondary_external_code\":\"3038\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 15:30:16\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"cdelgado@emba.com\",\"enabled\":true,\"fullName\":\"Cristhian Delgado Ramirez\",\"id\":13,\"locale\":\"es\",\"shortName\":\"cdelgado\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"cdelgado@emba.com\"},\"customer\":{\"id\":\"270\",\"name\":\"FOROEMP SRL\",\"primary_external_code\":\"449\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"24\",\"externalCode\":\"AR05\",\"name\":\"Outsourcing\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2021-08-17 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000426-SR-000413 - Nueva L\\u00ednea de Cr\\u00e9dito con CAF 2021\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000426-SR-000413\",\"finishedDate\":null,\"fixRateValue\":2000,\"fix_rate_value\":2000,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"364\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000426-SR-000413\",\"processing\":false,\"secondaryExternalCode\":\"2887\",\"secondary_external_code\":\"2887\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"tmercado@emba.com\",\"enabled\":true,\"fullName\":\"Teddy Alberto Mercado Carrion\",\"id\":12,\"locale\":\"es\",\"shortName\":\"tmercado\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"tmercado@emba.com\"},\"customer\":{\"id\":\"277\",\"name\":\"FUNDACI\\u00d3N PRO MUJER INSTITUCI\\u00d3N FINANCIERA DE DESARROLLO\",\"primary_external_code\":\"426\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"4\",\"externalCode\":\"AR16\",\"name\":\"Der.Mercantil-Banca\\u0026Finanzas\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2019-12-17 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000310-SR-000221 - Regularizaci\\u00f3n documentos Sra. Cristina Pati\\u00f1o\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000310-SR-000221\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"365\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Se establecer\\u00e1 el honorario al finalizar el servicio\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000310-SR-000221\",\"processing\":false,\"secondaryExternalCode\":\"1838\",\"secondary_external_code\":\"1838\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"278\",\"name\":\"Fundaci\\u00f3n Sim\\u00f3n I. Pati\\u00f1o\",\"primary_external_code\":\"310\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"11\",\"externalCode\":\"AR21\",\"name\":\"Der. Administrativo\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-10-18 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000259-SR-000739 - Elaboraci\\u00f3n y visado Contrato por obra o servicio Guillermo Semp\\u00e9rtegui\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000259-SR-000739\",\"finishedDate\":null,\"fixRateValue\":180,\"fix_rate_value\":180,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"370\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000259-SR-000739\",\"processing\":false,\"secondaryExternalCode\":\"4528\",\"secondary_external_code\":\"4528\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"279\",\"name\":\"FUNDACION SPARKASSENSTIFTUNG\",\"primary_external_code\":\"259\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"17\",\"externalCode\":\"AR08\",\"name\":\"Der. Laboral y Seg. Soc.\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-10-18 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000259-SR-000740 - Elaboraci\\u00f3n y visado Contrato por obra o servicio Erika Castillo\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000259-SR-000740\",\"finishedDate\":null,\"fixRateValue\":180,\"fix_rate_value\":180,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"371\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000259-SR-000740\",\"processing\":false,\"secondaryExternalCode\":\"4529\",\"secondary_external_code\":\"4529\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 23:33:22\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"279\",\"name\":\"FUNDACION SPARKASSENSTIFTUNG\",\"primary_external_code\":\"259\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"17\",\"externalCode\":\"AR08\",\"name\":\"Der. Laboral y Seg. Soc.\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-10-18 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000259-SR-000741 - Elboraci\\u00f3n y visado contrato de trabajo por obra o servicio Luc\\u00eda Cruz\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000259-SR-000741\",\"finishedDate\":null,\"fixRateValue\":180,\"fix_rate_value\":180,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"372\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000259-SR-000741\",\"processing\":false,\"secondaryExternalCode\":\"4530\",\"secondary_external_code\":\"4530\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 23:33:22\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"279\",\"name\":\"FUNDACION SPARKASSENSTIFTUNG\",\"primary_external_code\":\"259\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"17\",\"externalCode\":\"AR08\",\"name\":\"Der. Laboral y Seg. Soc.\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-01-16 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000541-SR-000570 - Proceso de reorganizaci\\u00f3n empresarial internacional\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000541-SR-000570\",\"finishedDate\":null,\"fixRateValue\":12000,\"fix_rate_value\":12000,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"377\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000541-SR-000570\",\"processing\":false,\"secondaryExternalCode\":\"3808\",\"secondary_external_code\":\"3808\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"amorenog@emba.com\",\"enabled\":true,\"fullName\":\"Andres Moreno Gutierrez\",\"id\":5,\"locale\":\"es\",\"shortName\":\"amoreno\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"amorenog@emba.com\"},\"customer\":{\"id\":\"300\",\"name\":\"GRUPO EMPRESARIAL DE INVERSIONES NACIONAL VIDA S.A.\",\"primary_external_code\":\"541\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-08-18 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000596-SR-000686 - Constituci\\u00f3n de Sociedad An\\u00f3nima\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000596-SR-000686\",\"finishedDate\":null,\"fixRateValue\":2500,\"fix_rate_value\":2500,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"378\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000596-SR-000686\",\"processing\":false,\"secondaryExternalCode\":\"4267\",\"secondary_external_code\":\"4267\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"302\",\"name\":\"Grupo Gadea\",\"primary_external_code\":\"596\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2019-04-09 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000744-SR-000080 - Sindico\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000744-SR-000080\",\"finishedDate\":null,\"fixRateValue\":200,\"fix_rate_value\":200,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"379\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000744-SR-000080\",\"processing\":false,\"secondaryExternalCode\":\"1292\",\"secondary_external_code\":\"1292\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"305\",\"name\":\"AGENCIA DE MARKETINGPROMOCIONAL LUCKY BOLIVIA S.A.\",\"primary_external_code\":\"744\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2019-04-09 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000744-SR-000082 - Representante Legal\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000744-SR-000082\",\"finishedDate\":null,\"fixRateValue\":200,\"fix_rate_value\":200,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"380\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"El honorario se ajusta a USD. 350.- con impuestos. Esto a partir del 01 de diciembre de 2022\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000744-SR-000082\",\"processing\":false,\"secondaryExternalCode\":\"1291\",\"secondary_external_code\":\"1291\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"305\",\"name\":\"AGENCIA DE MARKETINGPROMOCIONAL LUCKY BOLIVIA S.A.\",\"primary_external_code\":\"744\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2021-06-16 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000744-SR-000385 - PERMANENCIA TEMPORAL DE 2 A\\u00d1OS POR TRABAJO- ALEXIS EINAR ESCUDERO JAIMES\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000744-SR-000385\",\"finishedDate\":null,\"fixRateValue\":1567.09,\"fix_rate_value\":1567.09,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"381\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 10.907,22.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\\n\\nNOTA: este tramite tiene multas por lo cual las multas debes ser repuestas por el cliente en su totalidad.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000744-SR-000385\",\"processing\":false,\"secondaryExternalCode\":\"2744\",\"secondary_external_code\":\"2744\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 16:10:58\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"305\",\"name\":\"AGENCIA DE MARKETINGPROMOCIONAL LUCKY BOLIVIA S.A.\",\"primary_external_code\":\"744\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2021-06-16 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000744-SR-000386 - PERMANENCIA TEMPORAL DE 2 A\\u00d1OS POR TRABAJO- MICHELE OSKARINA GUTIERREZ REGIS\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000744-SR-000386\",\"finishedDate\":null,\"fixRateValue\":1567.09,\"fix_rate_value\":1567.09,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"382\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 10.907,22.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000744-SR-000386\",\"processing\":false,\"secondaryExternalCode\":\"2745\",\"secondary_external_code\":\"2745\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 16:11:58\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"305\",\"name\":\"AGENCIA DE MARKETINGPROMOCIONAL LUCKY BOLIVIA S.A.\",\"primary_external_code\":\"744\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2021-06-16 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000744-SR-000387 - RENOVACI\\u00d3N C\\u00c9DULA DE EXTRANJERO - MICHELE OSKARINA GUTIERREZ REGIS\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000744-SR-000387\",\"finishedDate\":null,\"fixRateValue\":381.32,\"fix_rate_value\":381.32,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"383\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 2.654,33.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000744-SR-000387\",\"processing\":false,\"secondaryExternalCode\":\"2746\",\"secondary_external_code\":\"2746\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 16:13:06\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"305\",\"name\":\"AGENCIA DE MARKETINGPROMOCIONAL LUCKY BOLIVIA S.A.\",\"primary_external_code\":\"744\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2021-06-16 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000744-SR-000388 - RENOVACI\\u00d3N C\\u00c9DULA DE EXTRANJERO - ALEXIS EINAR ESCUDERO JAIMES\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000744-SR-000388\",\"finishedDate\":null,\"fixRateValue\":381.32,\"fix_rate_value\":381.32,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"384\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 2.654,33.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000744-SR-000388\",\"processing\":false,\"secondaryExternalCode\":\"2747\",\"secondary_external_code\":\"2747\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 16:13:47\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"305\",\"name\":\"AGENCIA DE MARKETINGPROMOCIONAL LUCKY BOLIVIA S.A.\",\"primary_external_code\":\"744\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2023-05-29 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000744-SR-000640 - RENOVACION DE C\\u00c9DULA DE EXTRANJERO- ALEXIS EINAR ESCUDERO JAIMES\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000744-SR-000640\",\"finishedDate\":null,\"fixRateValue\":381.32,\"fix_rate_value\":381.32,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"385\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 2654.34 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000744-SR-000640\",\"processing\":false,\"secondaryExternalCode\":\"4157\",\"secondary_external_code\":\"4157\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 16:14:35\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"305\",\"name\":\"AGENCIA DE MARKETINGPROMOCIONAL LUCKY BOLIVIA S.A.\",\"primary_external_code\":\"744\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2023-05-29 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000744-SR-000641 - RENOVACI\\u00d3N DE C\\u00c9DULA DE EXTRANJERO- MICHELE OSKARINA GUTIERREZ REGIS\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000744-SR-000641\",\"finishedDate\":null,\"fixRateValue\":381.32,\"fix_rate_value\":381.32,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"386\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 2654.34 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000744-SR-000641\",\"processing\":false,\"secondaryExternalCode\":\"4158\",\"secondary_external_code\":\"4158\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 16:15:16\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"305\",\"name\":\"AGENCIA DE MARKETINGPROMOCIONAL LUCKY BOLIVIA S.A.\",\"primary_external_code\":\"744\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-09 00:00:00\",\"confidential\":false,\"created_at\":\"2023-09-21 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000455-SR-000727 - Constiucion de Dos Sociedades An\\u00f3nimas\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000455-SR-000727\",\"finishedDate\":null,\"fixRateValue\":6000,\"fix_rate_value\":6000,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"387\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"facturar a fin de mes con las horas.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000455-SR-000727\",\"processing\":false,\"secondaryExternalCode\":\"4375\",\"secondary_external_code\":\"4375\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-09 20:51:29\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"306\",\"name\":\"GRUPO MARCHET - Natalia Rivero\",\"primary_external_code\":\"455\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-06-01 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000582-SR-000644 - Background Check Hansa\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000582-SR-000644\",\"finishedDate\":null,\"fixRateValue\":700,\"fix_rate_value\":700,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"388\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Favor a\\u00f1adir IVA\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000582-SR-000644\",\"processing\":false,\"secondaryExternalCode\":\"4166\",\"secondary_external_code\":\"4166\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"312\",\"name\":\"Haleon\",\"primary_external_code\":\"582\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"6\",\"externalCode\":\"AR17\",\"name\":\"Der.Comercial \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-06-01 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000582-SR-000645 - Background Check Bellcos\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000582-SR-000645\",\"finishedDate\":null,\"fixRateValue\":700,\"fix_rate_value\":700,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"389\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"A\\u00f1adir IVA\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000582-SR-000645\",\"processing\":false,\"secondaryExternalCode\":\"4167\",\"secondary_external_code\":\"4167\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"312\",\"name\":\"Haleon\",\"primary_external_code\":\"582\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"6\",\"externalCode\":\"AR17\",\"name\":\"Der.Comercial \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-06-01 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000582-SR-000646 - Background Check Companex\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000582-SR-000646\",\"finishedDate\":null,\"fixRateValue\":700,\"fix_rate_value\":700,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"390\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"A\\u00f1adir IVA\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000582-SR-000646\",\"processing\":false,\"secondaryExternalCode\":\"4168\",\"secondary_external_code\":\"4168\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"312\",\"name\":\"Haleon\",\"primary_external_code\":\"582\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"6\",\"externalCode\":\"AR17\",\"name\":\"Der.Comercial \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-06-01 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000582-SR-000647 - Background Check Abbot\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000582-SR-000647\",\"finishedDate\":null,\"fixRateValue\":700,\"fix_rate_value\":700,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"391\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Agregar IVA\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000582-SR-000647\",\"processing\":false,\"secondaryExternalCode\":\"4169\",\"secondary_external_code\":\"4169\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"312\",\"name\":\"Haleon\",\"primary_external_code\":\"582\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"6\",\"externalCode\":\"AR17\",\"name\":\"Der.Comercial \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-05-29 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000579-SR-000642 - Servicios Legales Mensuales\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000579-SR-000642\",\"finishedDate\":null,\"fixRateValue\":500,\"fix_rate_value\":500,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"392\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000579-SR-000642\",\"processing\":false,\"secondaryExternalCode\":\"4156\",\"secondary_external_code\":\"4156\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"aaraoz@emba.com\",\"enabled\":true,\"fullName\":\"Alvaro Araoz Ardaya\",\"id\":17,\"locale\":\"es\",\"shortName\":\"aaraoz\",\"superAdmin\":false,\"updated_at\":\"2024-12-04 15:29:19\",\"userType\":1,\"username\":\"aaraoz@emba.com\"},\"customer\":{\"id\":\"315\",\"name\":\"HASHI\",\"primary_external_code\":\"579\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-03-10 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000285-SR-000598 - Cierre Definitivo de Sucursal\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000285-SR-000598\",\"finishedDate\":null,\"fixRateValue\":2550,\"fix_rate_value\":2550,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"393\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Conforme la propuesta se estableci\\u00f3: Usd. 2550+13% por IVA. (50% a la aceptaci\\u00f3n y 50% a la conclusi\\u00f3n del servicio)\\nEl cliente envi\\u00f3 hoy la aceptaci\\u00f3n a la propuesta e inform\\u00f3 que inmediatamente har\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000285-SR-000598\",\"processing\":false,\"secondaryExternalCode\":\"4010\",\"secondary_external_code\":\"4010\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"iayala@emba.com\",\"enabled\":true,\"fullName\":\"Ines Ayala\",\"id\":19,\"locale\":\"es\",\"shortName\":\"iayala\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"iayala@emba.com\"},\"customer\":{\"id\":\"316\",\"name\":\"HAZAMA ANDO CORPORATION\",\"primary_external_code\":\"285\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-07-24 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000591-SR-000673 - Contrato Elaboraci\\u00f3n Software\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000591-SR-000673\",\"finishedDate\":null,\"fixRateValue\":800,\"fix_rate_value\":800,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"394\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000591-SR-000673\",\"processing\":false,\"secondaryExternalCode\":\"4229\",\"secondary_external_code\":\"4229\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"aaraoz@emba.com\",\"enabled\":true,\"fullName\":\"Alvaro Araoz Ardaya\",\"id\":17,\"locale\":\"es\",\"shortName\":\"aaraoz\",\"superAdmin\":false,\"updated_at\":\"2024-12-04 15:29:19\",\"userType\":1,\"username\":\"aaraoz@emba.com\"},\"customer\":{\"id\":\"317\",\"name\":\"HealthC Management Services S.L\",\"primary_external_code\":\"591\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"6\",\"externalCode\":\"AR17\",\"name\":\"Der.Comercial \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2022-03-03 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000478-SR-000478 - Servicio legal\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000478-SR-000478\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"396\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000478-SR-000478\",\"processing\":false,\"secondaryExternalCode\":\"3193\",\"secondary_external_code\":\"3193\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"amorenog@emba.com\",\"enabled\":true,\"fullName\":\"Andres Moreno Gutierrez\",\"id\":5,\"locale\":\"es\",\"shortName\":\"amoreno\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"amorenog@emba.com\"},\"customer\":{\"id\":\"323\",\"name\":\"HERRAGRO SRL\",\"primary_external_code\":\"478\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-03-17 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000560-SR-000603 - Servicios Legales Mensuales\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000560-SR-000603\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"401\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Empresa del Grupo Venado\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000560-SR-000603\",\"processing\":false,\"secondaryExternalCode\":\"4018\",\"secondary_external_code\":\"4018\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"353\",\"name\":\"INDUSTRIAS FACRULESA S.A. (GRUPO VENADO)\",\"primary_external_code\":\"560\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"30\",\"externalCode\":\"AR33\",\"name\":\"Servicios Legales Mensuales\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-09-19 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000560-SR-000724 - Procedimiento Administrativo - Revocaci\\u00f3n de RAI\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000560-SR-000724\",\"finishedDate\":null,\"fixRateValue\":500,\"fix_rate_value\":500,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"402\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000560-SR-000724\",\"processing\":false,\"secondaryExternalCode\":\"4367\",\"secondary_external_code\":\"4367\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"atejerina@emba.com\",\"enabled\":true,\"fullName\":\"Andre Luis Tejerina Queiroz\",\"id\":25,\"locale\":\"es\",\"shortName\":\"atejerin\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"atejerina@emba.com\"},\"customer\":{\"id\":\"353\",\"name\":\"INDUSTRIAS FACRULESA S.A. (GRUPO VENADO)\",\"primary_external_code\":\"560\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"12\",\"externalCode\":null,\"name\":\"Der. Constitucional\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2023-11-22 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000528-SR-000772 - Servicios de Outsourcing contable y tributario\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000528-SR-000772\",\"finishedDate\":null,\"fixRateValue\":998,\"fix_rate_value\":998,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"403\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Honorario variable en base a cantidad de operaciones.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000528-SR-000772\",\"processing\":false,\"secondaryExternalCode\":\"4607\",\"secondary_external_code\":\"4607\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 15:30:46\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"cdelgado@emba.com\",\"enabled\":true,\"fullName\":\"Cristhian Delgado Ramirez\",\"id\":13,\"locale\":\"es\",\"shortName\":\"cdelgado\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"cdelgado@emba.com\"},\"customer\":{\"id\":\"354\",\"name\":\"Industrias Feniziam Bolivia S.A.\",\"primary_external_code\":\"528\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"24\",\"externalCode\":\"AR05\",\"name\":\"Outsourcing\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2021-05-01 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000343-SR-000371 - Servicios Legales Mensuales\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000343-SR-000371\",\"finishedDate\":null,\"fixRateValue\":3017.24,\"fix_rate_value\":3017.24,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"405\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Entra en vigencia a partir del 01 de abril\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000343-SR-000371\",\"processing\":false,\"secondaryExternalCode\":\"2664\",\"secondary_external_code\":\"2664\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"357\",\"name\":\"INDUSTRIAS VENADO S.A.\",\"primary_external_code\":\"343\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-05-07 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000343-SR-000495 - Proceso civil ejecutivo Freddy Inca Arratia.\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000343-SR-000495\",\"finishedDate\":null,\"fixRateValue\":100,\"fix_rate_value\":100,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"406\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Adicionalmente al honorario mensual de seguimiento, de acuerdo a Iguala se debe cobrar al presentar la demanda, el 30% del 10% de la cuant\\u00eda demandada y al obtenerse Sentencia el restante 70% del 10%.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000343-SR-000495\",\"processing\":false,\"secondaryExternalCode\":\"3376\",\"secondary_external_code\":\"3376\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"357\",\"name\":\"INDUSTRIAS VENADO S.A.\",\"primary_external_code\":\"343\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-10-19 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000343-SR-000746 - Proceso Civil de cobranza de deuda MEGAPRO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000343-SR-000746\",\"finishedDate\":null,\"fixRateValue\":200,\"fix_rate_value\":200,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"407\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Conforme a Iguala marco de fecha 01 de marzo de 2021. Adicional al honorario fijo hay un variable que corresponde al 10% de la cuant\\u00eda demandada (Bs. 139506). De este 10% hay que cobrar ahora el 30% y\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000343-SR-000746\",\"processing\":false,\"secondaryExternalCode\":\"4532\",\"secondary_external_code\":\"4532\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"357\",\"name\":\"INDUSTRIAS VENADO S.A.\",\"primary_external_code\":\"343\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-10-26 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000347-SR-000889 - Proceso Judicial contra SIBRA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000347-SR-000889\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1288\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Adicionalmente al honorario fijo, se pact\\u00f3 un honorario variable (succes fee) equivalente al 18% del monto o valor total efectivamente recuperado y\\/o ganado.\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000347-SR-000889\",\"processing\":false,\"secondaryExternalCode\":\"4565\",\"secondary_external_code\":\"4565\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"227\",\"name\":\"EMPRESA DE COMUNICACI\\u00d3N SOCIAL EL DEBER S.A.\",\"primary_external_code\":\"347\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-07 00:00:00\",\"confidential\":false,\"created_at\":\"2021-10-05 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000096-SR-000822 - Proceso laboral Jorge Adalberto Le\\u00f3n Gurrieri contra EXTERRAN\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000096-SR-000822\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1291\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000096-SR-000822\",\"processing\":false,\"secondaryExternalCode\":\"2947\",\"secondary_external_code\":\"2947\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-07 14:00:54\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"paramayo@emba.com\",\"enabled\":true,\"fullName\":\"Paul Aramayo Salinas\",\"id\":9,\"locale\":\"es\",\"shortName\":\"paramayo\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"paramayo@emba.com\"},\"customer\":{\"id\":\"243\",\"name\":\"EXTERRAN BOLIVIA SRL\",\"primary_external_code\":\"96\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"17\",\"externalCode\":\"AR08\",\"name\":\"Der. Laboral y Seg. Soc.\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-07 00:00:00\",\"confidential\":false,\"created_at\":\"2021-10-05 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000096-SR-000823 - Proceso laboral Marcelino Sotillo Ortega contra EXTERRAN\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000096-SR-000823\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1292\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000096-SR-000823\",\"processing\":false,\"secondaryExternalCode\":\"2948\",\"secondary_external_code\":\"2948\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-07 22:30:49\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"paramayo@emba.com\",\"enabled\":true,\"fullName\":\"Paul Aramayo Salinas\",\"id\":9,\"locale\":\"es\",\"shortName\":\"paramayo\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"paramayo@emba.com\"},\"customer\":{\"id\":\"243\",\"name\":\"EXTERRAN BOLIVIA SRL\",\"primary_external_code\":\"96\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"17\",\"externalCode\":\"AR08\",\"name\":\"Der. Laboral y Seg. Soc.\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-07 00:00:00\",\"confidential\":false,\"created_at\":\"2023-09-20 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000096-SR-000878 - PROCESO LABORAL HECTOR HING MANRIQUE TANG CONTRA EXTERRAN\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000096-SR-000878\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1294\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Coordinar el primer pago con el cliente\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000096-SR-000878\",\"processing\":false,\"secondaryExternalCode\":\"4368\",\"secondary_external_code\":\"4368\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-07 22:34:12\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"paramayo@emba.com\",\"enabled\":true,\"fullName\":\"Paul Aramayo Salinas\",\"id\":9,\"locale\":\"es\",\"shortName\":\"paramayo\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"paramayo@emba.com\"},\"customer\":{\"id\":\"243\",\"name\":\"EXTERRAN BOLIVIA SRL\",\"primary_external_code\":\"96\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"17\",\"externalCode\":\"AR08\",\"name\":\"Der. Laboral y Seg. Soc.\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-07 00:00:00\",\"confidential\":false,\"created_at\":\"2023-09-20 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000096-SR-000879 - PROCESO LABORAL JORGE ADOLFO OROSCO REYES CONTRA EXTERRAN\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000096-SR-000879\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1295\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Coordinar con el cliente el primer pago\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000096-SR-000879\",\"processing\":false,\"secondaryExternalCode\":\"4369\",\"secondary_external_code\":\"4369\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-07 22:37:12\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"paramayo@emba.com\",\"enabled\":true,\"fullName\":\"Paul Aramayo Salinas\",\"id\":9,\"locale\":\"es\",\"shortName\":\"paramayo\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"paramayo@emba.com\"},\"customer\":{\"id\":\"243\",\"name\":\"EXTERRAN BOLIVIA SRL\",\"primary_external_code\":\"96\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"17\",\"externalCode\":\"AR08\",\"name\":\"Der. Laboral y Seg. Soc.\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-07 00:00:00\",\"confidential\":false,\"created_at\":\"2023-09-20 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000096-SR-000880 - PROCESO LABORAL WALTER ORTIZ ROMAN CONTRA EXTERRAN\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000096-SR-000880\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1296\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"a. 30% (Bs. 10.008,05) al momento de la creaci\\u00f3n del proyecto. b 30% (Bs. 10.008,05) apertura de t\\u00e9rmino de prueba. c. 20% (Bs. 6.672,03) cierre de t\\u00e9rmino de prueba d. 20% (Bs. 6.672,03) Senten\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000096-SR-000880\",\"processing\":false,\"secondaryExternalCode\":\"4370\",\"secondary_external_code\":\"4370\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-07 22:39:39\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"paramayo@emba.com\",\"enabled\":true,\"fullName\":\"Paul Aramayo Salinas\",\"id\":9,\"locale\":\"es\",\"shortName\":\"paramayo\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"paramayo@emba.com\"},\"customer\":{\"id\":\"243\",\"name\":\"EXTERRAN BOLIVIA SRL\",\"primary_external_code\":\"96\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"17\",\"externalCode\":\"AR08\",\"name\":\"Der. Laboral y Seg. Soc.\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2023-09-20 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000096-SR-000881 - PROCESO LABORAL LISBER HARLEY CUELLAR ALBIS CONTRA EXTERRAN\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000096-SR-000881\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1297\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Coordinar con el cliente el cobro del primer hito\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000096-SR-000881\",\"processing\":false,\"secondaryExternalCode\":\"4371\",\"secondary_external_code\":\"4371\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 20:32:27\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"paramayo@emba.com\",\"enabled\":true,\"fullName\":\"Paul Aramayo Salinas\",\"id\":9,\"locale\":\"es\",\"shortName\":\"paramayo\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"paramayo@emba.com\"},\"customer\":{\"id\":\"243\",\"name\":\"EXTERRAN BOLIVIA SRL\",\"primary_external_code\":\"96\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"17\",\"externalCode\":\"AR08\",\"name\":\"Der. Laboral y Seg. Soc.\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-01 00:00:00\",\"confidential\":false,\"created_at\":\"2023-08-11 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000594-SR-000875 - IP legal assistance in Bolivia - copyright infringement case (17074) - Monthly update reports\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000594-SR-000875\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1298\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000594-SR-000875\",\"processing\":false,\"secondaryExternalCode\":\"4257\",\"secondary_external_code\":\"4257\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"264\",\"name\":\"FIFA\",\"primary_external_code\":\"594\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"34\",\"externalCode\":\"AR03\",\"name\":\"Der. Penal\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2021-10-22 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000443-SR-000824 - Cobranza\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000443-SR-000824\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1299\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000443-SR-000824\",\"processing\":false,\"secondaryExternalCode\":\"2971\",\"secondary_external_code\":\"2971\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-08-30 16:43:36\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"aaraoz@emba.com\",\"enabled\":true,\"fullName\":\"Alvaro Araoz Ardaya\",\"id\":17,\"locale\":\"es\",\"shortName\":\"aaraoz\",\"superAdmin\":false,\"updated_at\":\"2024-12-04 15:29:19\",\"userType\":1,\"username\":\"aaraoz@emba.com\"},\"customer\":{\"id\":\"272\",\"name\":\"Freddy Alejandro Coila Lopera\",\"primary_external_code\":\"443\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"5\",\"externalCode\":\"AR02\",\"name\":\"Der.Civil \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2022-10-17 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000520-SR-000849 - Registro VIPFE - subsanaci\\u00f3n observaciones - seguimiento\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000520-SR-000849\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1300\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000520-SR-000849\",\"processing\":false,\"secondaryExternalCode\":\"3652\",\"secondary_external_code\":\"3652\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 20:40:19\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"276\",\"name\":\"Fundaci\\u00f3n Jala\",\"primary_external_code\":\"520\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"5\",\"externalCode\":\"AR02\",\"name\":\"Der.Civil \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-09-14 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000541-SR-000877 - Proceso Judicial Ejecutivo cobro de Letras de Cambio\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000541-SR-000877\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1301\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Adicionalmente a estos honorarios fijos, se ha pactado con el Cliente, un honorario variable (success fee) equivalente al 5% de la monto total efectivamente recuperado.\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000541-SR-000877\",\"processing\":false,\"secondaryExternalCode\":\"4361\",\"secondary_external_code\":\"4361\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"300\",\"name\":\"GRUPO EMPRESARIAL DE INVERSIONES NACIONAL VIDA S.A.\",\"primary_external_code\":\"541\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-02-28 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000552-SR-000863 - DD y Restructuraci\\u00f3n - Pavinal\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000552-SR-000863\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1303\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000552-SR-000863\",\"processing\":false,\"secondaryExternalCode\":\"3945\",\"secondary_external_code\":\"3945\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"nicoln042001@gmail.com\",\"enabled\":true,\"fullName\":\"Daniel Marcelo Arredondo Zelada\",\"id\":6,\"locale\":\"es\",\"shortName\":\"darredon\",\"superAdmin\":false,\"updated_at\":\"2024-09-03 11:43:07\",\"userType\":1,\"username\":\"darredondo@emba.com.bo\"},\"customer\":{\"id\":\"347\",\"name\":\"INDUSTRIA CER\\u00c1MICA PAVINAL S.A.\",\"primary_external_code\":\"552\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-02-28 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000553-SR-000864 - DD y Restructuraci\\u00f3n - INCERCRUZ\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000553-SR-000864\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1304\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000553-SR-000864\",\"processing\":false,\"secondaryExternalCode\":\"3946\",\"secondary_external_code\":\"3946\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"nicoln042001@gmail.com\",\"enabled\":true,\"fullName\":\"Daniel Marcelo Arredondo Zelada\",\"id\":6,\"locale\":\"es\",\"shortName\":\"darredon\",\"superAdmin\":false,\"updated_at\":\"2024-09-03 11:43:07\",\"userType\":1,\"username\":\"darredondo@emba.com.bo\"},\"customer\":{\"id\":\"348\",\"name\":\"INDUSTRIA CRUCE\\u00d1A DE CER\\u00c1MICAS LIMITADA - INCERCRUZ Ltda.\",\"primary_external_code\":\"553\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-02-28 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000555-SR-000865 - DD y Restructuraci\\u00f3n - INCERCO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000555-SR-000865\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1305\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000555-SR-000865\",\"processing\":false,\"secondaryExternalCode\":\"3947\",\"secondary_external_code\":\"3947\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"nicoln042001@gmail.com\",\"enabled\":true,\"fullName\":\"Daniel Marcelo Arredondo Zelada\",\"id\":6,\"locale\":\"es\",\"shortName\":\"darredon\",\"superAdmin\":false,\"updated_at\":\"2024-09-03 11:43:07\",\"userType\":1,\"username\":\"darredondo@emba.com.bo\"},\"customer\":{\"id\":\"349\",\"name\":\"INDUSTRIA DE CER\\u00c1MICAS COCHABAMBA LIMITADA - INCERCO Ltda.\",\"primary_external_code\":\"555\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2021-04-13 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000187-SR-000814 - Proceso Ejecutivo Samanta Roc\\u00edo Torralba Jim\\u00e9nez\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000187-SR-000814\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1308\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Cuant\\u00eda demandada: Bs. 73.942,87.-\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000187-SR-000814\",\"processing\":false,\"secondaryExternalCode\":\"2621\",\"secondary_external_code\":\"2621\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"350\",\"name\":\"INDUSTRIAS AJEBOLIVIA S.A.\",\"primary_external_code\":\"187\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"5\",\"externalCode\":\"AR02\",\"name\":\"Der.Civil \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2023-12-05 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000187-SR-000892 - Patrocinio proceso judicial laboral interpuesto por Zoilo Cortez Guzm\\u00e1n\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000187-SR-000892\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1310\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000187-SR-000892\",\"processing\":false,\"secondaryExternalCode\":\"4628\",\"secondary_external_code\":\"4628\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 20:44:39\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"paramayo@emba.com\",\"enabled\":true,\"fullName\":\"Paul Aramayo Salinas\",\"id\":9,\"locale\":\"es\",\"shortName\":\"paramayo\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"paramayo@emba.com\"},\"customer\":{\"id\":\"350\",\"name\":\"INDUSTRIAS AJEBOLIVIA S.A.\",\"primary_external_code\":\"187\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"17\",\"externalCode\":\"AR08\",\"name\":\"Der. Laboral y Seg. Soc.\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2021-09-21 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000433-SR-000820 - Demanda Contenciosa contra Municipio de Buena Vista\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000433-SR-000820\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1311\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Ver Iguala\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000433-SR-000820\",\"processing\":false,\"secondaryExternalCode\":\"2935\",\"secondary_external_code\":\"2935\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"351\",\"name\":\"INDUSTRIAS CERAMICAS PAZ LTDA.\",\"primary_external_code\":\"433\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-08 00:00:00\",\"confidential\":false,\"created_at\":\"2023-10-03 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000581-SR-000885 - Proceso Judicial Ejecutivo\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000581-SR-000885\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1312\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Adicionalmente se ha pactado un honorario de \\u00e9xito del 10% sobre el monto efectivamente recuperado a ra\\u00edz del Juicio que se inicie (cuya cuant\\u00eda demandada es de USD. 565.000.-). Este honorario se paga\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000581-SR-000885\",\"processing\":false,\"secondaryExternalCode\":\"4393\",\"secondary_external_code\":\"4393\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"356\",\"name\":\"Industrias Saladillo S.A. (Argentina)\",\"primary_external_code\":\"581\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2021-07-22 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000343-SR-000818 - Proceso Ejecutivo contra Linet Lesly Segales Ugarte y Nilda Blanca Ugarte Garc\\u00eda\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000343-SR-000818\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1313\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Revisar la Iguala para servicios de cobranza que hemos pactado con VENADO de fecha 01 de marzo de 2021.\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000343-SR-000818\",\"processing\":false,\"secondaryExternalCode\":\"2858\",\"secondary_external_code\":\"2858\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"357\",\"name\":\"INDUSTRIAS VENADO S.A.\",\"primary_external_code\":\"343\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2021-07-22 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000343-SR-000819 - Proceso civil ejecutivo contra Gerson Enoc Limachi Si\\u00f1ani y Sandra Begonia L\\u00f3pez Coarite\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000343-SR-000819\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1314\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Por favor cobrar conforme a Iguala suscrita en fecha 01 de marzo de 2021\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000343-SR-000819\",\"processing\":false,\"secondaryExternalCode\":\"2859\",\"secondary_external_code\":\"2859\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"357\",\"name\":\"INDUSTRIAS VENADO S.A.\",\"primary_external_code\":\"343\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":\"\",\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-12-08 05:00:00\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000909-SR-000793 - Garant\\u00eda Emisi\\u00f3n de Bonos Sociales Bancosol\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000909-SR-000793\",\"finishedDate\":null,\"fixRateValue\":23000,\"fix_rate_value\":23000,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1354\",\"internal_code\":\"\",\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Legal Due Dilligence: USD 8,000.-\\nFinancing Documents: USD 9,000.-\\nClosing - Post Closing Matters: USD 6,000.-\\nSocio: USD 200 p\\/hora de trabajo\\nAsociado Senior: USD 140 p\\/hora de trabajo\\nAsociado\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000909-SR-000793\",\"processing\":false,\"secondaryExternalCode\":\"4639\",\"secondary_external_code\":\"4639\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"tmercado@emba.com\",\"enabled\":true,\"fullName\":\"Teddy Alberto Mercado Carrion\",\"id\":12,\"locale\":\"es\",\"shortName\":\"tmercado\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"tmercado@emba.com\"},\"customer\":{\"id\":\"335\",\"name\":\"IDB Invest\",\"primary_external_code\":\"909\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"4\",\"externalCode\":\"AR16\",\"name\":\"Der.Mercantil-Banca\\u0026Finanzas\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-01-19 00:00:00\",\"confidential\":false,\"created_at\":\"2022-09-13 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000096-SR-000903 - Revisi\\u00f3n y actualizaci\\u00f3n del Programa de Seguridad y Salud en el Trabajo (PSST) de oficina central\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000096-SR-000903\",\"finishedDate\":null,\"fixRateValue\":2000,\"fix_rate_value\":2000,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1400\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Emitir la primera factura\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000096-SR-000903\",\"processing\":false,\"secondaryExternalCode\":\"3579\",\"secondary_external_code\":\"3579\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"atejerina@emba.com\",\"enabled\":true,\"fullName\":\"Andre Luis Tejerina Queiroz\",\"id\":25,\"locale\":\"es\",\"shortName\":\"atejerin\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"atejerina@emba.com\"},\"customer\":{\"id\":\"243\",\"name\":\"EXTERRAN BOLIVIA SRL\",\"primary_external_code\":\"96\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"17\",\"externalCode\":\"AR08\",\"name\":\"Der. Laboral y Seg. Soc.\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-01-19 00:00:00\",\"confidential\":false,\"created_at\":\"2023-12-20 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000485-SR-000956 - Servicios relacionados a financiamiento de la Corporaci\\u00f3n Interamericana de Inversiones\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000485-SR-000956\",\"finishedDate\":null,\"fixRateValue\":15000,\"fix_rate_value\":15000,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1440\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000485-SR-000956\",\"processing\":false,\"secondaryExternalCode\":\"4675\",\"secondary_external_code\":\"4675\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"253\",\"name\":\"Farmacorp S.A.\",\"primary_external_code\":\"485\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"4\",\"externalCode\":\"AR16\",\"name\":\"Der.Mercantil-Banca\\u0026Finanzas\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":\"\",\"caseNumber\":\"\",\"closed_date\":null,\"confidential\":false,\"created_at\":\"2022-03-24 05:00:00\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000485-SR-000955 - Due Diligence L\\u00ednea de Cr\\u00e9dito IDB INVEST\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000485-SR-000955\",\"finishedDate\":\"2024-01-19 00:00:00\",\"fixRateValue\":15000,\"fix_rate_value\":15000,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1501\",\"internal_code\":\"\",\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000485-SR-000955\",\"processing\":false,\"secondaryExternalCode\":\"3258\",\"secondary_external_code\":\"3258\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"tmercado@emba.com\",\"enabled\":true,\"fullName\":\"Teddy Alberto Mercado Carrion\",\"id\":12,\"locale\":\"es\",\"shortName\":\"tmercado\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"tmercado@emba.com\"},\"customer\":{\"id\":\"253\",\"name\":\"Farmacorp S.A.\",\"primary_external_code\":\"485\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":null},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":\"\",\"caseNumber\":null,\"closed_date\":\"2024-01-24 00:00:00\",\"confidential\":false,\"created_at\":\"2024-01-24 16:01:40\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000744-SR-000983 - Servicios mensuales Director \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000744-SR-000983\",\"finishedDate\":null,\"fixRateValue\":200,\"fix_rate_value\":200,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1506\",\"internal_code\":\"\",\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000744-SR-000983\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"305\",\"name\":\"AGENCIA DE MARKETINGPROMOCIONAL LUCKY BOLIVIA S.A.\",\"primary_external_code\":\"744\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2024-01-26 16:38:21\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000137-SR-000986 - Servicios legales mensuales (FM)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000137-SR-000986\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1510\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000137-SR-000986\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 16:23:35\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-28 20:51:13\",\"daysAllow\":302,\"email\":\"Prueba@prueba.com\",\"enabled\":true,\"fullName\":\"Ramiro Moreno Baldivieso\",\"id\":72,\"locale\":\"es\",\"shortName\":\"rmorenob\",\"superAdmin\":false,\"updated_at\":\"2024-08-29 14:19:23\",\"userType\":1,\"username\":\"Prueba@prueba.com\"},\"customer\":{\"id\":\"267\",\"name\":\"FLUOR DANIEL SOUTH AMERICA LIMITED (SUC. BOLIVIA)\",\"primary_external_code\":\"137\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-01-26 00:00:00\",\"confidential\":false,\"created_at\":\"2024-01-26 20:22:50\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000508-SR-000987 - Comunicaci\\u00f3n APS - Transferencia de Acciones CAF\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000508-SR-000987\",\"finishedDate\":null,\"fixRateValue\":1500,\"fix_rate_value\":1500,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1511\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000508-SR-000987\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"268\",\"name\":\"FOIANINISALUD MEDICINAPREPAGA S.A\",\"primary_external_code\":\"508\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"29\",\"externalCode\":\"AR32\",\"name\":\"Seguros y Reaseguros\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-20 00:00:00\",\"confidential\":false,\"created_at\":\"2018-10-31 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000187-SC-000096 - Servicios legales mensuales (FM)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000187-SC-000096\",\"finishedDate\":null,\"fixRateValue\":1000,\"fix_rate_value\":1000,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1917\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000187-SC-000096\",\"processing\":false,\"secondaryExternalCode\":\"252\",\"secondary_external_code\":\"252\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-20 20:21:26\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"350\",\"name\":\"INDUSTRIAS AJEBOLIVIA S.A.\",\"primary_external_code\":\"187\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":1,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-07 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-14 22:25:23\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000528-SR-001016 - Servicios legales mensuales (FM)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000528-SR-001016\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2328\",\"internal_code\":null,\"isBillable\":false,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000528-SR-001016\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-07 22:57:23\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"354\",\"name\":\"Industrias Feniziam Bolivia S.A.\",\"primary_external_code\":\"528\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-22 14:39:20\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000347-SR-001041 - An\\u00e1lisis de la RA para presentaci\\u00f3n del RJ RD 172379000087\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000347-SR-001041\",\"finishedDate\":null,\"fixRateValue\":2610,\"fix_rate_value\":2610,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2368\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"100% al inicio\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000347-SR-001041\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 14:04:50\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"rburgos@emba.com\",\"enabled\":true,\"fullName\":\"Edwin Rodrigo Burgos Fernandez\",\"id\":16,\"locale\":\"es\",\"shortName\":\"rburgos\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rburgos@emba.com\"},\"customer\":{\"id\":\"227\",\"name\":\"EMPRESA DE COMUNICACI\\u00d3N SOCIAL EL DEBER S.A.\",\"primary_external_code\":\"347\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"19\",\"externalCode\":\"AR09\",\"name\":\"Der. Tributario\\u0026 Plan.Fiscal\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-22 14:42:18\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000347-SR-001042 - Defensa de la DCA RJ 0213\\/2024\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000347-SR-001042\",\"finishedDate\":null,\"fixRateValue\":2610,\"fix_rate_value\":2610,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2369\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":50,\"notes\":\"50% al inicio y 50% al final\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000347-SR-001042\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 14:05:02\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"rburgos@emba.com\",\"enabled\":true,\"fullName\":\"Edwin Rodrigo Burgos Fernandez\",\"id\":16,\"locale\":\"es\",\"shortName\":\"rburgos\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rburgos@emba.com\"},\"customer\":{\"id\":\"227\",\"name\":\"EMPRESA DE COMUNICACI\\u00d3N SOCIAL EL DEBER S.A.\",\"primary_external_code\":\"347\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"19\",\"externalCode\":\"AR09\",\"name\":\"Der. Tributario\\u0026 Plan.Fiscal\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-05 14:29:42\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000278-SR-001101 - Defensa - Demanda Contenciosa Administrativa 2024\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000278-SR-001101\",\"finishedDate\":null,\"fixRateValue\":3500,\"fix_rate_value\":3500,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2634\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":50,\"notes\":\"50% al inicio y 50% al final\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000278-SR-001101\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"rburgos@emba.com\",\"enabled\":true,\"fullName\":\"Edwin Rodrigo Burgos Fernandez\",\"id\":16,\"locale\":\"es\",\"shortName\":\"rburgos\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rburgos@emba.com\"},\"customer\":{\"id\":\"224\",\"name\":\"EMPACAR S.A.\",\"primary_external_code\":\"278\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"19\",\"externalCode\":\"AR09\",\"name\":\"Der. Tributario\\u0026 Plan.Fiscal\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-07 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-05 14:32:15\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000278-SR-001102 - HONORARIO DE EXITO - Resoluci\\u00f3n de Recurso Jer\\u00e1rquico \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000278-SR-001102\",\"finishedDate\":null,\"fixRateValue\":5210,\"fix_rate_value\":5210,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2635\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"100% al inicio\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000278-SR-001102\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 14:04:22\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"rburgos@emba.com\",\"enabled\":true,\"fullName\":\"Edwin Rodrigo Burgos Fernandez\",\"id\":16,\"locale\":\"es\",\"shortName\":\"rburgos\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rburgos@emba.com\"},\"customer\":{\"id\":\"224\",\"name\":\"EMPACAR S.A.\",\"primary_external_code\":\"278\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"19\",\"externalCode\":\"AR09\",\"name\":\"Der. Tributario\\u0026 Plan.Fiscal\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-01 00:00:00\",\"confidential\":false,\"created_at\":\"2024-04-01 18:40:08\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000455-SR-001150 - Outsourcing de Declaraciones Juradas\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000455-SR-001150\",\"finishedDate\":null,\"fixRateValue\":800,\"fix_rate_value\":800,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2773\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000455-SR-001150\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-01 13:40:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"cdelgado@emba.com\",\"enabled\":true,\"fullName\":\"Cristhian Delgado Ramirez\",\"id\":13,\"locale\":\"es\",\"shortName\":\"cdelgado\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"cdelgado@emba.com\"},\"customer\":{\"id\":\"306\",\"name\":\"GRUPO MARCHET - Natalia Rivero\",\"primary_external_code\":\"455\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"24\",\"externalCode\":\"AR05\",\"name\":\"Outsourcing\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-01 00:00:00\",\"confidential\":false,\"created_at\":\"2024-04-01 20:48:34\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000314-SR-001151 - Regularizaci\\u00f3n inmueble El Alto (Cl\\u00ednica Fides)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000314-SR-001151\",\"finishedDate\":null,\"fixRateValue\":1000,\"fix_rate_value\":1000,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2774\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":50,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000314-SR-001151\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-01 15:51:16\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"cmerino@emba.com\",\"enabled\":true,\"fullName\":\"Carlos Merino Troche\",\"id\":14,\"locale\":\"es\",\"shortName\":\"cmerino\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"cmerino@emba.com\"},\"customer\":{\"id\":\"240\",\"name\":\"ESCUELAS RADIOFONICAS FIDES\",\"primary_external_code\":\"314\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"5\",\"externalCode\":\"AR02\",\"name\":\"Der.Civil \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-01 00:00:00\",\"confidential\":false,\"created_at\":\"2024-04-01 20:55:36\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000314-SR-001152 - Proceso Ejecutivo - Juzgado 20 de partido en lo CIviil y Comercial\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000314-SR-001152\",\"finishedDate\":null,\"fixRateValue\":2155,\"fix_rate_value\":2155,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2775\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":50,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000314-SR-001152\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-01 15:55:37\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"cmerino@emba.com\",\"enabled\":true,\"fullName\":\"Carlos Merino Troche\",\"id\":14,\"locale\":\"es\",\"shortName\":\"cmerino\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"cmerino@emba.com\"},\"customer\":{\"id\":\"240\",\"name\":\"ESCUELAS RADIOFONICAS FIDES\",\"primary_external_code\":\"314\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-01 00:00:00\",\"confidential\":false,\"created_at\":\"2024-04-01 21:06:54\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000407-SR-001155 - Transferencia Cuotas\\/Reduccion de capital\\/ Absorcion de Perdidas\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000407-SR-001155\",\"finishedDate\":null,\"fixRateValue\":1000,\"fix_rate_value\":1000,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2778\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":50,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000407-SR-001155\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-01 16:06:57\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"cmerino@emba.com\",\"enabled\":true,\"fullName\":\"Carlos Merino Troche\",\"id\":14,\"locale\":\"es\",\"shortName\":\"cmerino\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"cmerino@emba.com\"},\"customer\":{\"id\":\"263\",\"name\":\"FIDES MATER TELEVISI\\u00d3N S.R.L\",\"primary_external_code\":\"407\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"5\",\"externalCode\":\"AR02\",\"name\":\"Der.Civil \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-04 00:00:00\",\"confidential\":false,\"created_at\":\"2024-04-04 18:06:48\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000485-SR-001159 - Informe regulatorio financiero\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000485-SR-001159\",\"finishedDate\":null,\"fixRateValue\":1200,\"fix_rate_value\":1200,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2821\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"100% Final\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000485-SR-001159\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-04 13:06:48\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"flanda@emba.com\",\"enabled\":true,\"fullName\":\"Carlos Fernando Landa Alejandro\",\"id\":18,\"locale\":\"es\",\"shortName\":\"flanda\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"flanda@emba.com\"},\"customer\":{\"id\":\"253\",\"name\":\"Farmacorp S.A.\",\"primary_external_code\":\"485\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"6\",\"externalCode\":\"AR17\",\"name\":\"Der.Comercial \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-08 00:00:00\",\"confidential\":false,\"created_at\":\"2024-04-08 14:37:24\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000560-SR-001165 - Elaboraci\\u00f3n y Presentaci\\u00f3n de RAI\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000560-SR-001165\",\"finishedDate\":null,\"fixRateValue\":1077.59,\"fix_rate_value\":1077.59,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2828\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"La Moneda es Bolivianos. El monto es Bs. 7.500,00 (Siete mil quinientos 00\\/100 bolivianos)\\/ 50% Inicio\\/50% Final\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000560-SR-001165\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-08 09:37:24\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"atejerina@emba.com\",\"enabled\":true,\"fullName\":\"Andre Luis Tejerina Queiroz\",\"id\":25,\"locale\":\"es\",\"shortName\":\"atejerin\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"atejerina@emba.com\"},\"customer\":{\"id\":\"353\",\"name\":\"INDUSTRIAS FACRULESA S.A. (GRUPO VENADO)\",\"primary_external_code\":\"560\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"36\",\"externalCode\":\"AR37\",\"name\":\"Der. Ambiental\"}}]}}}\n","time":"2025-07-30T10:50:43-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: POST https://apinewtm.com/graphql/\nHeaders: map[Accept:[application/json] Authorization:[Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJpYXQiOjE3NTM4ODY1MjIsImV4cCI6MTc1Mzk2NjUyMiwiaWQiOjEwNSwidXNlcm5hbWUiOiJpbnRlZ3JhY2lvbmVzQGVtYmEuYm8iLCJhcGlrZXkiOiI5Yzg0ZjYzZTRlMzk2ZGZmOWU5ZjU3NDI5OGRmZWUzOSIsImFwaWtleUNyZWF0ZWRBdCI6eyJkYXRlIjoiMjAyNS0wNy0xNyAxMDo0MToyNS4wMDAwMDAiLCJ0aW1lem9uZV90eXBlIjozLCJ0aW1lem9uZSI6IkFtZXJpY2EvQm9nb3RhIn0sImZ1bGxOYW1lIjoiSW50ZWdyYWNpw7NuIEVNQkEiLCJlbWFpbCI6ImludGVncmFjaW9uZXNAZW1iYS5ibyIsImxvY2FsZSI6ImVzIiwiZGF5c0FsbG93ZWQiOjMwLCJpc0Nvb3JkaW5hdG9yIjpmYWxzZSwidHlwZVRhc2tWaWV3IjoibGlzdHMiLCJkYXlzYWxsb3ciOjMwLCJyb2xlcyI6e30sInNob3J0X25hbWUiOiJJTi5FTUJBIiwicGVybWlzc2lvbnMiOlsic3luY19leHRlcm5hbF9idXNpbmVzcyIsInN5bmNfZXh0ZXJuYWxfY3VzdG9tZXIiLCJzeW5jX2V4dGVybmFsX21pbGVzdG9uZSIsImFic2VuY2VfYXBwcm92ZSIsImFic2VuY2VfY3JlYXRlX2FsbCIsImFic2VuY2VfY3JlYXRlX293biIsImFic2VuY2VfbWVudSIsImFjY291bnRpbmdfYnVzaW5lc3NfbGlzdCIsImFjY291bnRpbmdfY3VzdG9tZXJfbGlzdCIsImJpbGxpbmdfcGVyaW9kX2RlbGV0ZV9hbGwiLCJiaWxsaW5nX3BlcmlvZF9lZGl0X2FsbCIsImJpbGxpbmdfcGVyaW9kX2xpc3QiLCJiaWxsaW5nX3BlcmlvZF9yZWFjdGl2YXRlIiwiYm9hcmRfcmF0ZV91c2VyX2NyZWF0ZSIsImJvYXJkX3JhdGVfdXNlcl9lZGl0IiwiYnVzaW5lc3NfY3JlYXRlIiwiYnVzaW5lc3NfZGVzY3JpcHRpb25fc2F2ZSIsImJ1c2luZXNzX2VkaXQiLCJidXNpbmVzc19saXN0X2FsbCIsImJ1c2luZXNzX21lbnUiLCJidXNpbmVzc19yZXNwb25zaWJsZV9saXN0X2FsbCIsImJ1c2luZXNzX3NlZV9iaWxsaW5nX2luZm8iLCJidXNpbmVzc2VzX2FsbG93ZWRfdXNlcl9jcmVhdGUiLCJidXNpbmVzc2VzX2FsbG93ZWRfdXNlcl9kZWxldGUiLCJjb21wYW55X2Rpc2FibGUiLCJjb21wYW55X2VkaXQiLCJjb21wYW55X2xpc3QiLCJjb25jZXB0X2NyZWF0ZSIsImNvbmNlcHRfZWRpdCIsImNvbmNlcHRfbWVudSIsImNvbnRhY3RfY3JlYXRlIiwiY29udGFjdF9jcmVhdGVfZmFzdCIsImNvbnRhY3RfZWRpdCIsImNvbnRhY3RfbGlzdCIsImNvbnRhY3RfbWVudSIsImN1c3RvbWVyX2NyZWF0ZSIsImN1c3RvbWVyX2NyZWF0ZV9mYXN0IiwiY3VzdG9tZXJfZWRpdCIsImN1c3RvbWVyX2xpc3QiLCJjdXN0b21lcl9saXN0X2FsbCIsImN1c3RvbWVyX21lbnUiLCJleHBlbnNlX2NyZWF0ZV9hbGwiLCJleHBlbnNlX2RlbGV0ZV9hbGwiLCJleHBlbnNlX2R1cGxpY2F0ZSIsImV4cGVuc2VfZWRpdF9hbGwiLCJleHBlbnNlX2xpc3RfYWxsIiwiZXhwZW5zZV9tZW51IiwiZXhwZW5zZV9yZWplY3RfYWxsIiwiZmFiX3Nob3ciLCJmaWxlX21lbnUiLCJnZW9yZWZlcmVuY2VfY3JlYXRlIiwiZ2VvcmVmZXJlbmNlX2VkaXQiLCJnZW9yZWZlcmVuY2VfbWVudSIsImdvX3RvX2xlZ2FjeSIsImluZGljYXRvcnNfbWVudSIsImludm9pY2VfY3JlYXRlIiwiaW52b2ljZV9kZXRhaWxfbGlzdF9hbGwiLCJpbnZvaWNlX2ZpeF90aW1lc19jdXN0b21fdmFsdWUiLCJpbnZvaWNlX2xpc3RfYWxsIiwiaW52b2ljZWFkdmFuY2VfY3JlYXRlIiwiaW52b2ljZWFkdmFuY2VfbGlzdCIsImludm9pY2VhZHZhbmNlX3VwZGF0ZSIsImxvZ19saXN0X2FsbCIsImxvZ19saXN0X293biIsIm1pbGVzdG9uZV9jcmVhdGUiLCJtaWxlc3RvbmVfZGVsZXRlIiwibWlsZXN0b25lX2VkaXQiLCJtb250aGx5X2ZpeF9yYXRlX2dyb3VwX2NyZWF0ZSIsIm1vbnRobHlfZml4X3JhdGVfZ3JvdXBfZWRpdCIsIm1vbnRobHlfdXNlcl9jb3N0X2NyZWF0ZSIsIm1vbnRobHlfdXNlcl9jb3N0X2VkaXQiLCJwYXltZW50X2NyZWF0ZSIsInBheW1lbnRfZGVsZXRlIiwicGF5bWVudF9lZGl0IiwicGF5bWVudF9tZW51IiwicHJvY2VkdXJlX21lbnUiLCJwcm9jZWR1cmVfcmF0ZV9jcmVhdGUiLCJwcm9jZWR1cmVfcmF0ZV9kZXRhaWxfY3JlYXRlIiwicHJvY2VkdXJlX3JhdGVfZGV0YWlsX2VkaXQiLCJwcm9jZWR1cmVfcmF0ZV9kZXRhaWxfbGlzdCIsInByb2NlZHVyZV9yYXRlX2VkaXQiLCJwcm9jZWR1cmVfcmF0ZV9saXN0IiwicHJvY2VkdXJlX3JhdGVfbWVudSIsInByb2NlZHVyZV90cmFuc2FjdGlvbl9saXN0IiwicHJvamVjdF9hcmNoaXZlX2Nhc2NhZGVfYWxsIiwicHJvamVjdF9kZWxldGVfY2FzY2FkZV9hbGwiLCJwcm9qZWN0X3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInJhdGVfYnVzaW5lc3NfY2F0ZWdvcnlfY3JlYXRlIiwicmF0ZV9idXNpbmVzc19jYXRlZ29yeV9lZGl0IiwicmF0ZV9idXNpbmVzc191c2VyX2NyZWF0ZSIsInJhdGVfYnVzaW5lc3NfdXNlcl9lZGl0IiwicmF0ZV9leGNoYW5nZV9jcmVhdGUiLCJyYXRlX2V4Y2hhbmdlX2VkaXQiLCJyYXRlX2V4Y2hhbmdlX2xpc3QiLCJyYXRlX3VzZXJfY3JlYXRlIiwicmF0ZV91c2VyX2VkaXQiLCJyb2xlX2NyZWF0ZSIsInJvbGVfZWRpdF9hbGwiLCJyb2xlX2xpc3RfYWxsIiwic2VjdGlvbl9hcmNoaXZlX2Nhc2NhZGVfYWxsIiwic2VjdGlvbl9kZWxldGVfY2FzY2FkZV9hbGwiLCJzZWN0aW9uX3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInNlZV9tZW51X3JhdGVfZXhjaGFuZ2UiLCJzZXJpZV9jcmVhdGUiLCJzZXJpZV9lZGl0Iiwic2VyaWVfbWVudSIsInNldHRpbmdzX3ZpZXciLCJzdXBwbGllcl9jcmVhdGUiLCJ0YXNrX2FkZF90aW1lX2FsbCIsInRhc2tfYWRkX3RpbWVfb3duIiwidGFza19hc3NpZ25lZF91c2VyX2VtYWlsIiwidGFza19jbG9zZWRfZW1haWwiLCJ0YXNrX2NyZWF0ZV9hbGwiLCJ0YXNrX2NyZWF0ZV9jb21tZW50X2VtYWlsIiwidGFza19jcmVhdGVfc2VsZiIsInRhc2tfY3JlYXRlX3RlYW0iLCJ0YXNrX2RlbGV0ZV9hbGwiLCJ0YXNrX2RlbGV0ZV9vd24iLCJ0YXNrX2RlbGV0ZV90ZWFtIiwidGFza19lZGl0X2FsbCIsInRhc2tfZWRpdF9kdWVfZGF0ZSIsInRhc2tfZWRpdF9vd24iLCJ0YXNrX2VkaXRfdGVhbSIsInRhc2tfbGlzdF9hbGwiLCJ0YXNrX2xpc3Rfb3duIiwidGFza19saXN0X3RlYW0iLCJ0YXNrX21hc3NpdmVpbXBvcnQiLCJ0YXNrX21lbnUiLCJ0YXNrX21pZ3JhdGlvbiIsInRhc2tfc2V0X2FkZGl0aW9uYWxfYXNzaWduZWVzIiwidGFza19zZXRfZHVlX2RhdGUiLCJ0YXNrX3NldF9lc3RpbWF0ZWRfdGltZSIsInRhc2tfc2V0X3ByaW9yaXR5IiwidGFza19zZXRfcHJvZ3Jlc3MiLCJ0YXhfZWRpdF9hbGwiLCJ0YXhfbGlzdF9hbGwiLCJ0ZWFtX2FyY2hpdmVfY2FzY2FkZV9hbGwiLCJ0ZWFtX2NyZWF0ZV9hbGwiLCJ0ZWFtX2RlbGV0ZV9hbGwiLCJ0ZWFtX2VkaXRfYWxsIiwidGVhbV9saXN0X2FsbCIsInRlYW1fbGlzdF9vd24iLCJ0ZWFtX3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInRpbWVfYWNjZXB0X2FsbCIsInRpbWVfYWNjZXB0X293biIsInRpbWVfYXBwcm92ZV9hbGwiLCJ0aW1lX2FwcHJvdmVfb3duIiwidGltZV9jcmVhdGVfYWxsIiwidGltZV9jcmVhdGVfb3duIiwidGltZV9kZWxldGVfYWxsIiwidGltZV9kZWxldGVfb3duIiwidGltZV9kZW55X2FsbCIsInRpbWVfZGVueV9vd24iLCJ0aW1lX2Rvd25sb2FkZmlsZV9hbGwiLCJ0aW1lX2Rvd25sb2FkZmlsZV9vd24iLCJ0aW1lX2VkaXRfYWxsIiwidGltZV9lZGl0X2Nsb3NlX3BlcmlvZF9hbGwiLCJ0aW1lX2VkaXRfY2xvc2VfcGVyaW9kX293biIsInRpbWVfZWRpdF9vd24iLCJ0aW1lX2xpc3RfYWxsIiwidGltZV9saXN0X293biIsInRpbWVfbWVudSIsInRpbWVfbWludXRlc196ZXJvIiwidGltZV9yZWplY3RfYWxsIiwidGltZV9yZXN0cmljdGVkX3BlcmlvZF9jcmVhdGUiLCJ0aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX2VkaXQiLCJ0aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX21lbnUiLCJ0aW1lX3NoYXJlX2FsbCIsInRpbWVfc2hhcmVfb3duIiwidGltZV9zaG93X2NhbGVuZGFyX3ZpZXciLCJ0aW1lX3VwbG9hZGZpbGVfYWxsIiwidGltZV91cGxvYWRmaWxlX293biIsInRyYW5zYWN0aW9uX2FkYXB0ZXJfbGlzdCIsInRyYW5zYWN0aW9uX2xpc3QiLCJ1c2VyX2Fic2VuY2VzX3Nob3ciLCJ1c2VyX2Nvc3RfY3JlYXRlIiwidXNlcl9jb3N0X2VkaXQiLCJ1c2VyX2Nvc3RfbGlzdCIsInVzZXJfY29zdF9tZW51IiwidXNlcl9jb3N0X3JhdGVfY3JlYXRlIiwidXNlcl9jb3N0X3JhdGVfZWRpdCIsInVzZXJfY29zdF9yYXRlX2xpc3QiLCJ1c2VyX2NyZWF0ZSIsInVzZXJfZGlzYWJsZSIsInVzZXJfZWRpdCIsInVzZXJfZWRpdF9kYXlzX2FsbG93X29ubHkiLCJ1c2VyX2dyb3VwX3JvbGVfY3JlYXRlX2FsbCIsInVzZXJfZ3JvdXBfcm9sZV9kZWxldGVfYWxsIiwidXNlcl9ncm91cF9yb2xlX2VkaXRfYWxsIiwidXNlcl9ncm91cF9yb2xlc19saXN0X2FsbCIsInVzZXJfbGlzdCIsInVzZXJfbGlzdF9hbGwiLCJ1c2VyX21hc3NfYWN0aXZhdGlvbiIsInVzZXJfcHJvZHVjdGl2aXR5X2NyZWF0ZSIsInVzZXJfcHJvZHVjdGl2aXR5X2Rpc2FibGUiLCJ1c2VyX3Byb2R1Y3Rpdml0eV9lZGl0IiwidXNlcl9wcm9kdWN0aXZpdHlfZW5hYmxlIiwidXNlcl9wcm9kdWN0aXZpdHlfbWVudSIsInVzZXJfdGltZV9yZXN0cmljdGVkX3BlcmlvZF9jcmVhdGUiLCJ1c2VyX3RpbWVfcmVzdHJpY3RlZF9wZXJpb2RfZGVsZXRlIiwidXNlcl90aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX2VkaXQiLCJ1c2VyZ3JvdXBfY3JlYXRlX2FsbCIsInVzZXJncm91cF9kZWxldGVfYWxsIiwidXNlcmdyb3VwX2VkaXRfYWxsIiwidXNlcmdyb3VwX2xpc3RfYWxsIiwidXNlcmdyb3VwX21lbnUiLCJ1c2Vyc191c2VyX2dyb3VwX2NyZWF0ZV9hbGwiLCJ1c2Vyc191c2VyX2dyb3VwX2RlbGV0ZV9hbGwiLCJ1c2Vyc191c2VyX2dyb3VwX2VkaXRfYWxsIiwidXNlcnNfdXNlcl9ncm91cHNfbGlzdF9hbGwiXSwiaG9tZXBhZ2UiOm51bGx9.kShN7NXGoaz1oFro-yYNyIpIEcnNpo1GiB8SFGKFUJtDQoqyp1I1w-CMA8Kta3vWXnUZwx-y2z1yVSJaMpZbqQgKFlakpcf6351bZSL8IAUPExSfLz0HYYCWFx-Usx94BBTqosKsRhnT8PkPN3dGxs8-XTIEDi9gN-Pk9OSHmM5mPkTsaaxTY40M-F7Y0Up2y6s_lwFaX13CmstiYZSXzyKL9SUBBx-E6-8qQAfuKPIoZ_50jSGPW98-IkAcWwqO6yGf-M07dSfFZ2vLfwc3ulHm2p8jVSmRxJ_O43BEWQD5cvqGbVIvSMXkS4y98DL4Vencjjg27iu3CUJsDNBBTg] Content-Type:[application/json] Origin:[https://azure-function.timemanagerweb.com] Tenant-Name:[pruebas-dos] User-Agent:[Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36]]\nBody: map[query:query ($limit: Int, $orderBy: String, $orderDesc: Boolean, $page: Int) { BusinessMeta(limit: $limit, orderBy: $orderBy, orderDesc: $orderDesc, page: $page) { meta { hasNextPage hasPreviousPage limit next page pages previous total } rows { apply_procedures billable business_customer_code caseNumber closed_date confidential created_at discountAmount discountPercent displayName enableBusinessAllowedUsers expedient finishedDate fixRateValue fix_rate_value hourLimit hour_limit id internal_code isBillable limitAlert notes partialCharges partial_charges primary_external_code processing secondaryExternalCode secondary_external_code status statusMarking updated_at withIVA responsible { created_at daysAllow email enabled fullName id locale shortName superAdmin updated_at userType username } customer { id name primary_external_code company { id name } } practiceArea { id externalCode name } } } } variables:map[limit:100 orderBy:orderBy orderDesc:true page:9]]\n","time":"2025-07-30T10:50:43-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: POST https://apinewtm.com/graphql/ | Status: 200 | Duration: 1.338696s\nHeaders: map[Access-Control-Allow-Credentials:[true] Access-Control-Allow-Origin:[https://azure-function.timemanagerweb.com] Access-Control-Expose-Headers:[link, access-control-allow-credentials] Cache-Control:[no-cache, private] Content-Type:[application/json] Date:[Wed, 30 Jul 2025 14:50:44 GMT] Server:[] Vary:[Authorization]]\nBody: {\"errors\":[{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",11,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",11,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",11,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",11,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",11,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",11,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",11,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",11,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",11,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",11,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",11,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",36,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",36,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",36,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",36,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",36,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",36,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",36,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",36,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",36,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",36,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",36,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",37,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",37,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",37,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",37,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",37,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",37,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",37,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",37,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",37,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",37,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",37,\"responsible\",\"username\"]}],\"data\":{\"BusinessMeta\":{\"meta\":{\"hasNextPage\":true,\"hasPreviousPage\":true,\"limit\":100,\"next\":10,\"page\":9,\"pages\":16,\"previous\":8,\"total\":1573},\"rows\":[{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-10-25 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000327-SR-000753 - Take-Two Interactive Software, Inc. - Bolivia Advice\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000327-SR-000753\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"15\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Facturar hasta el 15 del mes siguiente\\nPlease remit Invoices for this matter to our central billing inbox,\\ninternational.invoices@ogletree.com, copy me at lina.fernandez@ogletreedeakins.com,\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000327-SR-000753\",\"processing\":false,\"secondaryExternalCode\":\"4559\",\"secondary_external_code\":\"4559\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"477\",\"name\":\"Ogletree, Deakins, Nash, Smoak \\u0026 Stewart, P.C.\",\"primary_external_code\":\"327\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"17\",\"externalCode\":\"AR08\",\"name\":\"Der. Laboral y Seg. Soc.\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-07-21 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000590-SR-000667 - Servicios Legales Mensuales\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000590-SR-000667\",\"finishedDate\":null,\"fixRateValue\":2000,\"fix_rate_value\":2000,\"hourLimit\":14,\"hour_limit\":14,\"id\":\"141\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"NOTA: Es un honorario fijo de USD. 2,000 hasta 14 horas mensuales. Las horas adicionales tendr\\u00e1n un honorario fijo de USD. 175, por cada hora.\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000590-SR-000667\",\"processing\":false,\"secondaryExternalCode\":\"4223\",\"secondary_external_code\":\"4223\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-08 19:17:02\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"nicoln042001@gmail.com\",\"enabled\":true,\"fullName\":\"Daniel Marcelo Arredondo Zelada\",\"id\":6,\"locale\":\"es\",\"shortName\":\"darredon\",\"superAdmin\":false,\"updated_at\":\"2024-09-03 11:43:07\",\"userType\":1,\"username\":\"darredondo@emba.com.bo\"},\"customer\":{\"id\":\"450\",\"name\":\"MINERA ALCIRA SOCIEDAD ANONIMA ALCIRA S.A.\",\"primary_external_code\":\"590\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"30\",\"externalCode\":\"AR33\",\"name\":\"Servicios Legales Mensuales\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2019-01-21 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000119-SR-000038 - Servicios Legales Mensuales(FM)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000119-SR-000038\",\"finishedDate\":null,\"fixRateValue\":1750,\"fix_rate_value\":1750,\"hourLimit\":25,\"hour_limit\":25,\"id\":\"142\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000119-SR-000038\",\"processing\":false,\"secondaryExternalCode\":\"1108\",\"secondary_external_code\":\"1108\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-14 17:12:28\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"480\",\"name\":\"OPERADORA CARIBE\\u00d1A SRL\",\"primary_external_code\":\"119\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-03 00:00:00\",\"confidential\":false,\"created_at\":\"2018-01-01 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000101-SR-000002 - Servicios legales mensuales (FM)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000101-SR-000002\",\"finishedDate\":null,\"fixRateValue\":1000,\"fix_rate_value\":1000,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"409\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000101-SR-000002\",\"processing\":false,\"secondaryExternalCode\":\"61\",\"secondary_external_code\":\"61\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2025-03-13 17:41:44\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"359\",\"name\":\"INMARCA S.A.\",\"primary_external_code\":\"101\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2025-03-13 00:00:00\",\"confidential\":false,\"created_at\":\"2021-12-15 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000101-SR-000440 - Servicio de Outsourcing contable (FM)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000101-SR-000440\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"410\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000101-SR-000440\",\"processing\":false,\"secondaryExternalCode\":\"3057\",\"secondary_external_code\":\"3057\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2025-03-13 10:19:31\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"cdelgado@emba.com\",\"enabled\":true,\"fullName\":\"Cristhian Delgado Ramirez\",\"id\":13,\"locale\":\"es\",\"shortName\":\"cdelgado\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"cdelgado@emba.com\"},\"customer\":{\"id\":\"359\",\"name\":\"INMARCA S.A.\",\"primary_external_code\":\"101\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"24\",\"externalCode\":\"AR05\",\"name\":\"Outsourcing\"}},{\"apply_procedures\":null,\"billable\":1,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-01-21 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000464-SR-000455 - Servicios legales\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000464-SR-000455\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"413\",\"internal_code\":null,\"isBillable\":false,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000464-SR-000455\",\"processing\":false,\"secondaryExternalCode\":\"3109\",\"secondary_external_code\":\"3109\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:17\",\"daysAllow\":302,\"email\":\"lchalco@emba.com\",\"enabled\":true,\"fullName\":\"Limbert Alfredo Chalco Herrera\",\"id\":68,\"locale\":\"es\",\"shortName\":\"lchalco\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":0,\"username\":\"lchalco@emba.com\"},\"customer\":{\"id\":\"366\",\"name\":\"INVERSIONES INMOBILIARIAS VERMIETUNG S.A.\",\"primary_external_code\":\"464\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2019-08-23 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000292-SR-000157 - Servicios Legales Mensuales\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000292-SR-000157\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"414\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000292-SR-000157\",\"processing\":false,\"secondaryExternalCode\":\"1601\",\"secondary_external_code\":\"1601\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-13 14:46:17\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"lmorenog@emba.com\",\"enabled\":true,\"fullName\":\"Luis Moreno Gutierrez\",\"id\":8,\"locale\":\"es\",\"shortName\":\"lmoreno\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"lmorenog@emba.com\"},\"customer\":{\"id\":\"367\",\"name\":\"INVITAR S.R.L.\",\"primary_external_code\":\"292\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2021-06-08 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000311-SR-000384 - Elaboracio de reglamento interno\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000311-SR-000384\",\"finishedDate\":null,\"fixRateValue\":1800,\"fix_rate_value\":1800,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"416\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"pago del 30% al inicio, 20% contra avance y 50% entrega final aprobado por el cliente.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000311-SR-000384\",\"processing\":false,\"secondaryExternalCode\":\"2741\",\"secondary_external_code\":\"2741\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"jpzegada@emba.com\",\"enabled\":true,\"fullName\":\"Juan Pablo Zegada\",\"id\":20,\"locale\":\"es\",\"shortName\":\"jzegada\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"jpzegada@emba.com\"},\"customer\":{\"id\":\"377\",\"name\":\"Jalasoft SRL\",\"primary_external_code\":\"311\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"17\",\"externalCode\":\"AR08\",\"name\":\"Der. Laboral y Seg. Soc.\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-19 00:00:00\",\"confidential\":false,\"created_at\":\"2023-03-20 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000563-SR-000607 - Promoci\\u00f3n Empresarial\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000563-SR-000607\",\"finishedDate\":null,\"fixRateValue\":1300,\"fix_rate_value\":1300,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"419\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000563-SR-000607\",\"processing\":false,\"secondaryExternalCode\":\"4023\",\"secondary_external_code\":\"4023\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-19 20:59:40\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"amorenog@emba.com\",\"enabled\":true,\"fullName\":\"Andres Moreno Gutierrez\",\"id\":5,\"locale\":\"es\",\"shortName\":\"amoreno\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"amorenog@emba.com\"},\"customer\":{\"id\":\"381\",\"name\":\"John Deere (MX)\",\"primary_external_code\":\"563\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"11\",\"externalCode\":\"AR21\",\"name\":\"Der. Administrativo\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-01 00:00:00\",\"confidential\":false,\"created_at\":\"2018-08-15 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000104-SR-000027 - Demanda laboral por cobro de beneficios sociales\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000104-SR-000027\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"420\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000104-SR-000027\",\"processing\":false,\"secondaryExternalCode\":\"66\",\"secondary_external_code\":\"66\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"382\",\"name\":\"JOHNNY ALDO ALIAGA TELLEZ\",\"primary_external_code\":\"104\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"19\",\"externalCode\":\"AR09\",\"name\":\"Der. Tributario\\u0026 Plan.Fiscal\"}},{\"apply_procedures\":null,\"billable\":1,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2018-02-01 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000106-SR-000011 - Arbitraje Urub\\u00f3 Golf\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000106-SR-000011\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"421\",\"internal_code\":null,\"isBillable\":false,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000106-SR-000011\",\"processing\":false,\"secondaryExternalCode\":\"68\",\"secondary_external_code\":\"68\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"amorenog@emba.com\",\"enabled\":true,\"fullName\":\"Andres Moreno Gutierrez\",\"id\":5,\"locale\":\"es\",\"shortName\":\"amoreno\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"amorenog@emba.com\"},\"customer\":{\"id\":\"384\",\"name\":\"JORGE BALDIVIESO\",\"primary_external_code\":\"106\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2020-07-15 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000319-SR-000264 - PERMANENCIA TEMPORAL DE 1 A\\u00d1O SIN CONTRATO- CLAUDIA MARCELA GOMEZ MORENO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000319-SR-000264\",\"finishedDate\":null,\"fixRateValue\":1228,\"fix_rate_value\":1228,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"424\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 1228.- DOLARES AMERICANOS INCLUYEN GASTOS E IMPUESTOS DE LEY.\\n\\nESTE CLIENTE ES DEL EXTRANJERO KPMG - NOKIA\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000319-SR-000264\",\"processing\":false,\"secondaryExternalCode\":\"2178\",\"secondary_external_code\":\"2178\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"398\",\"name\":\"KPMG - NOKIA\",\"primary_external_code\":\"319\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2020-12-23 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000319-SR-000313 - CEDULA DE EXTRANJERO - CLAUDIA MARCELA GOMEZ MORENO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000319-SR-000313\",\"finishedDate\":null,\"fixRateValue\":257.76,\"fix_rate_value\":257.76,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"425\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1.794,47.- INCLUYE GASTOS E IMPUESTOS DE LEY\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000319-SR-000313\",\"processing\":false,\"secondaryExternalCode\":\"2424\",\"secondary_external_code\":\"2424\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"398\",\"name\":\"KPMG - NOKIA\",\"primary_external_code\":\"319\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-03-07 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000319-SR-000597 - LEGALIZACI\\u00d3N DE TITULO PROFESIONAL - EDUARDO ECHEVERRIA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000319-SR-000597\",\"finishedDate\":null,\"fixRateValue\":800,\"fix_rate_value\":800,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"426\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 500 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000319-SR-000597\",\"processing\":false,\"secondaryExternalCode\":\"4003\",\"secondary_external_code\":\"4003\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"398\",\"name\":\"KPMG - NOKIA\",\"primary_external_code\":\"319\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2019-10-17 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000307-SR-000213 - Negociaci\\u00f3n, estructuraci\\u00f3n y constituci\\u00f3n sociedad aseguradora - Bco Sol S.A.\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000307-SR-000213\",\"finishedDate\":null,\"fixRateValue\":40000,\"fix_rate_value\":40000,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"427\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000307-SR-000213\",\"processing\":false,\"secondaryExternalCode\":\"1747\",\"secondary_external_code\":\"1747\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"amorenog@emba.com\",\"enabled\":true,\"fullName\":\"Andres Moreno Gutierrez\",\"id\":5,\"locale\":\"es\",\"shortName\":\"amoreno\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"amorenog@emba.com\"},\"customer\":{\"id\":\"400\",\"name\":\"LA BOLIVIANA CIACRUZ DE SEGUROS Y REASEGUROS S.A. (LBC)\",\"primary_external_code\":\"307\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-10-17 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000619-SR-000738 - Registro Corredor de Reaseguro Extranjero\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000619-SR-000738\",\"finishedDate\":null,\"fixRateValue\":3500,\"fix_rate_value\":3500,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"430\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000619-SR-000738\",\"processing\":false,\"secondaryExternalCode\":\"4521\",\"secondary_external_code\":\"4521\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"421\",\"name\":\"MALAKUT CORREDORES DE REASEGUROS, S.A.\",\"primary_external_code\":\"619\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"29\",\"externalCode\":\"AR32\",\"name\":\"Seguros y Reaseguros\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2019-10-15 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000276-SR-000212 - Inscripci\\u00f3n de Sucesi\\u00f3n y Fusi\\u00f3n de Terrenos\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000276-SR-000212\",\"finishedDate\":null,\"fixRateValue\":3450,\"fix_rate_value\":3450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"431\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000276-SR-000212\",\"processing\":false,\"secondaryExternalCode\":\"1746\",\"secondary_external_code\":\"1746\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"dcuellarf@emba.com\",\"enabled\":true,\"fullName\":\"Jhonny David Cuellar Franco\",\"id\":29,\"locale\":\"es\",\"shortName\":\"dcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"dcuellarf@emba.com\"},\"customer\":{\"id\":\"427\",\"name\":\"Maria Belen Arias Suarez\",\"primary_external_code\":\"276\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"16\",\"externalCode\":\"AR24\",\"name\":\"Der. Inmobiliario\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2022-10-31 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000523-SR-000551 - Aceptaci\\u00f3n de herencia\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000523-SR-000551\",\"finishedDate\":null,\"fixRateValue\":1005.75,\"fix_rate_value\":1005.75,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"432\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000523-SR-000551\",\"processing\":false,\"secondaryExternalCode\":\"3674\",\"secondary_external_code\":\"3674\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"428\",\"name\":\"MARIA CRISTINA CARDENAS PONCE\",\"primary_external_code\":\"523\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"5\",\"externalCode\":\"AR02\",\"name\":\"Der.Civil \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-01 00:00:00\",\"confidential\":false,\"created_at\":\"2022-02-14 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000473-SR-000468 - Registro Aceptaci\\u00f3n de Herencia\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000473-SR-000468\",\"finishedDate\":null,\"fixRateValue\":650,\"fix_rate_value\":650,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"433\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Revisada la documentaci\\u00f3n a getionar se elaborar\\u00e1 propuesta final de honorario\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000473-SR-000468\",\"processing\":false,\"secondaryExternalCode\":\"3168\",\"secondary_external_code\":\"3168\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-01 19:01:26\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"aaraoz@emba.com\",\"enabled\":true,\"fullName\":\"Alvaro Araoz Ardaya\",\"id\":17,\"locale\":\"es\",\"shortName\":\"aaraoz\",\"superAdmin\":false,\"updated_at\":\"2024-12-04 15:29:19\",\"userType\":1,\"username\":\"aaraoz@emba.com\"},\"customer\":{\"id\":\"430\",\"name\":\"Maria Elcy Elvira Pereira de Antelo - Paulo Savoca\",\"primary_external_code\":\"473\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"5\",\"externalCode\":\"AR02\",\"name\":\"Der.Civil \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-10-11 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000616-SR-000735 - Cambio de Nombre Departamento Baulera\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000616-SR-000735\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"434\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000616-SR-000735\",\"processing\":false,\"secondaryExternalCode\":\"4513\",\"secondary_external_code\":\"4513\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-13 17:03:10\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"aaraoz@emba.com\",\"enabled\":true,\"fullName\":\"Alvaro Araoz Ardaya\",\"id\":17,\"locale\":\"es\",\"shortName\":\"aaraoz\",\"superAdmin\":false,\"updated_at\":\"2024-12-04 15:29:19\",\"userType\":1,\"username\":\"aaraoz@emba.com\"},\"customer\":{\"id\":\"432\",\"name\":\"MARIA VIRGINIA FLORES CRONEMBOLD\",\"primary_external_code\":\"616\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"16\",\"externalCode\":\"AR24\",\"name\":\"Der. Inmobiliario\\n\"}},{\"apply_procedures\":null,\"billable\":1,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2018-01-01 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000113-SR-000003 - Gastos Administartivos (FM)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000113-SR-000003\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"436\",\"internal_code\":null,\"isBillable\":false,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000113-SR-000003\",\"processing\":false,\"secondaryExternalCode\":\"74\",\"secondary_external_code\":\"74\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:17\",\"daysAllow\":302,\"email\":\"lchalco@emba.com\",\"enabled\":true,\"fullName\":\"Limbert Alfredo Chalco Herrera\",\"id\":68,\"locale\":\"es\",\"shortName\":\"lchalco\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":0,\"username\":\"lchalco@emba.com\"},\"customer\":{\"id\":\"439\",\"name\":\"MB LITIGIOS SRL\",\"primary_external_code\":\"113\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2019-08-23 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000291-SR-000158 - Servicios Legales Mensuales\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000291-SR-000158\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"437\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000291-SR-000158\",\"processing\":false,\"secondaryExternalCode\":\"1600\",\"secondary_external_code\":\"1600\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"441\",\"name\":\"MBINMOBILIARIA S.A.\",\"primary_external_code\":\"291\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-03-17 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000114-SR-000604 - Servicios Legales Mensuales\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000114-SR-000604\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"438\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000114-SR-000604\",\"processing\":false,\"secondaryExternalCode\":\"4019\",\"secondary_external_code\":\"4019\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"442\",\"name\":\"MEDIAFILMS SRL\",\"primary_external_code\":\"114\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"30\",\"externalCode\":\"AR33\",\"name\":\"Servicios Legales Mensuales\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2021-10-11 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000440-BK-000345 - Outsourcing\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000440-BK-000345\",\"finishedDate\":null,\"fixRateValue\":400,\"fix_rate_value\":400,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"439\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000440-BK-000345\",\"processing\":false,\"secondaryExternalCode\":\"2959\",\"secondary_external_code\":\"2959\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 15:41:43\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"cdelgado@emba.com\",\"enabled\":true,\"fullName\":\"Cristhian Delgado Ramirez\",\"id\":13,\"locale\":\"es\",\"shortName\":\"cdelgado\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"cdelgado@emba.com\"},\"customer\":{\"id\":\"449\",\"name\":\"MHTNARQ SRL\",\"primary_external_code\":\"440\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"24\",\"externalCode\":\"AR05\",\"name\":\"Outsourcing\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2019-08-09 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000116-SR-000140 - Venta Aeronave\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000116-SR-000140\",\"finishedDate\":null,\"fixRateValue\":55000,\"fix_rate_value\":55000,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"440\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"50% despu\\u00e9s de cinco d\\u00edas de firmada la Iguala - Esperar comunicaci\\u00f3n para facturar\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000116-SR-000140\",\"processing\":false,\"secondaryExternalCode\":\"1546\",\"secondary_external_code\":\"1546\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"452\",\"name\":\"MINERA SAN CRISTOBAL SA\",\"primary_external_code\":\"116\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-03-17 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000561-SR-000605 - Servicios Legales Mensuales\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000561-SR-000605\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"441\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Empresa de Familia Moreno\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000561-SR-000605\",\"processing\":false,\"secondaryExternalCode\":\"4021\",\"secondary_external_code\":\"4021\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"462\",\"name\":\"MORENOBALDIVIESO INMOBILIARIA S.A.\",\"primary_external_code\":\"561\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"30\",\"externalCode\":\"AR33\",\"name\":\"Servicios Legales Mensuales\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-01 00:00:00\",\"confidential\":false,\"created_at\":\"2022-02-10 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000118-SR-000466 - Patrocinio Arbitraje - Cartellone - Servicio mensual\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000118-SR-000466\",\"finishedDate\":null,\"fixRateValue\":10500,\"fix_rate_value\":10500,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"444\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000118-SR-000466\",\"processing\":false,\"secondaryExternalCode\":\"3160\",\"secondary_external_code\":\"3160\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"465\",\"name\":\"NACIONAL SEGUROS PATRIMONIALES Y FIANZAS S.A.\",\"primary_external_code\":\"118\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"2\",\"externalCode\":\"AR04\",\"name\":\"Arbitraje\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-04 00:00:00\",\"confidential\":false,\"created_at\":\"2023-04-11 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000118-SR-000612 - Asesor\\u00eda especializada en seguros y arbitrajes U150K U$\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000118-SR-000612\",\"finishedDate\":null,\"fixRateValue\":1750,\"fix_rate_value\":1750,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"445\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Favor facturar el primer mes ahora y luego durante los siguientes diez d\\u00edas del mes\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000118-SR-000612\",\"processing\":false,\"secondaryExternalCode\":\"4045\",\"secondary_external_code\":\"4045\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-04 18:55:58\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"amorenog@emba.com\",\"enabled\":true,\"fullName\":\"Andres Moreno Gutierrez\",\"id\":5,\"locale\":\"es\",\"shortName\":\"amoreno\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"amorenog@emba.com\"},\"customer\":{\"id\":\"465\",\"name\":\"NACIONAL SEGUROS PATRIMONIALES Y FIANZAS S.A.\",\"primary_external_code\":\"118\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"29\",\"externalCode\":\"AR32\",\"name\":\"Seguros y Reaseguros\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-04-14 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000145-SR-000488 - Informes y reuniones: Reclamo Agramont\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000145-SR-000488\",\"finishedDate\":null,\"fixRateValue\":980,\"fix_rate_value\":980,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"447\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Favor enviar una proforma o prefactura o ND para aprobaci\\u00f3n, antes de enviar la factura - Remitirla a la Dra. Sonia Dips en La Paz\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000145-SR-000488\",\"processing\":false,\"secondaryExternalCode\":\"3299\",\"secondary_external_code\":\"3299\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"466\",\"name\":\"NACIONAL SEGUROS VIDA Y SALUD S.A. edit\",\"primary_external_code\":\"145\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"29\",\"externalCode\":\"AR32\",\"name\":\"Seguros y Reaseguros\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-04-11 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000145-SR-000613 - Asesor\\u00eda especializada en seguros retainer y Arbitrajes U 150K U$\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000145-SR-000613\",\"finishedDate\":null,\"fixRateValue\":2011.45,\"fix_rate_value\":2011.45,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"449\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Facturar el primer mes ahora y luego dentro de los primeros d\\u00edas de cada mes\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000145-SR-000613\",\"processing\":false,\"secondaryExternalCode\":\"4046\",\"secondary_external_code\":\"4046\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"amorenog@emba.com\",\"enabled\":true,\"fullName\":\"Andres Moreno Gutierrez\",\"id\":5,\"locale\":\"es\",\"shortName\":\"amoreno\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"amorenog@emba.com\"},\"customer\":{\"id\":\"466\",\"name\":\"NACIONAL SEGUROS VIDA Y SALUD S.A. edit\",\"primary_external_code\":\"145\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"29\",\"externalCode\":\"AR32\",\"name\":\"Seguros y Reaseguros\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-10-31 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000624-SR-000756 - Defensa Tributaria\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000624-SR-000756\",\"finishedDate\":null,\"fixRateValue\":1200,\"fix_rate_value\":1200,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"451\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000624-SR-000756\",\"processing\":false,\"secondaryExternalCode\":\"4573\",\"secondary_external_code\":\"4573\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"rburgos@emba.com\",\"enabled\":true,\"fullName\":\"Edwin Rodrigo Burgos Fernandez\",\"id\":16,\"locale\":\"es\",\"shortName\":\"rburgos\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rburgos@emba.com\"},\"customer\":{\"id\":\"479\",\"name\":\"ONG ASOCIACI\\u00d3N NUEVO CAMINO\",\"primary_external_code\":\"624\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"19\",\"externalCode\":\"AR09\",\"name\":\"Der. Tributario\\u0026 Plan.Fiscal\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2019-09-23 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000119-SR-000190 - PERMANENCIA POR UN A\\u00d1O SIN CONTRATO EXTRANJERO-GUILLERMO JESUS CASTRILLO VALLES\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000119-SR-000190\",\"finishedDate\":null,\"fixRateValue\":1360.06,\"fix_rate_value\":1360.06,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"452\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 9.466,65.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000119-SR-000190\",\"processing\":false,\"secondaryExternalCode\":\"1683\",\"secondary_external_code\":\"1683\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"480\",\"name\":\"OPERADORA CARIBE\\u00d1A SRL\",\"primary_external_code\":\"119\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-04-27 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000343-SR-000869 - Arbitraje IVSA c Multicanal\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000343-SR-000869\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1315\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000343-SR-000869\",\"processing\":false,\"secondaryExternalCode\":\"4073\",\"secondary_external_code\":\"4073\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"357\",\"name\":\"INDUSTRIAS VENADO S.A.\",\"primary_external_code\":\"343\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"2\",\"externalCode\":\"AR04\",\"name\":\"Arbitraje\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-04-25 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000572-SR-000868 - REgistro Hipoteca Naval\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000572-SR-000868\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1316\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Propuesta aceptado, y primer pago realizado. Cliente generado por contacto de In\\u00e9s Ayala\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000572-SR-000868\",\"processing\":false,\"secondaryExternalCode\":\"4069\",\"secondary_external_code\":\"4069\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"iayala@emba.com\",\"enabled\":true,\"fullName\":\"Ines Ayala\",\"id\":19,\"locale\":\"es\",\"shortName\":\"iayala\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"iayala@emba.com\"},\"customer\":{\"id\":\"363\",\"name\":\"Inttoff Estudio Legal - Laura Hern\\u00e1ndez\",\"primary_external_code\":\"572\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"5\",\"externalCode\":\"AR02\",\"name\":\"Der.Civil \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2020-02-20 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000330-SR-000804 - Proceso civil ordinario contra la empresa ENTEL S.A.\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000330-SR-000804\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1319\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"1.- 15% al momento de inicio de las acciones, sea prejudicial o la solicitud formal de conciliaci\\u00f3n.\\n2. 15% al momento de que se fije d\\u00eda y hora de Audiencia de Conciliaci\\u00f3n.\\n3. 15% al momento de la\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000330-SR-000804\",\"processing\":false,\"secondaryExternalCode\":\"1954\",\"secondary_external_code\":\"1954\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"445\",\"name\":\"MER TELECOM BOLIVIA S.R.L.\",\"primary_external_code\":\"330\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"5\",\"externalCode\":\"AR02\",\"name\":\"Der.Civil \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-11-27 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000590-SR-000891 - Asesoria Especializada en Procesos Penales\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000590-SR-000891\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1320\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000590-SR-000891\",\"processing\":false,\"secondaryExternalCode\":\"4615\",\"secondary_external_code\":\"4615\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-13 19:41:24\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"nicoln042001@gmail.com\",\"enabled\":true,\"fullName\":\"Daniel Marcelo Arredondo Zelada\",\"id\":6,\"locale\":\"es\",\"shortName\":\"darredon\",\"superAdmin\":false,\"updated_at\":\"2024-09-03 11:43:07\",\"userType\":1,\"username\":\"darredondo@emba.com.bo\"},\"customer\":{\"id\":\"450\",\"name\":\"MINERA ALCIRA SOCIEDAD ANONIMA ALCIRA S.A.\",\"primary_external_code\":\"590\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"34\",\"externalCode\":\"AR03\",\"name\":\"Der. Penal\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2020-10-05 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000369-SR-000808 - Proceso de cobro H N Plaza Hotel SRL\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000369-SR-000808\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1321\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000369-SR-000808\",\"processing\":false,\"secondaryExternalCode\":\"2300\",\"secondary_external_code\":\"2300\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":7,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"464\",\"name\":\"MUGEBUSCH\",\"primary_external_code\":\"369\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"34\",\"externalCode\":\"AR03\",\"name\":\"Der. Penal\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2021-07-21 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000369-SR-000817 - Proceso de cobro H N Plaza Hotel SRL caso 2\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000369-SR-000817\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1322\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000369-SR-000817\",\"processing\":false,\"secondaryExternalCode\":\"2853\",\"secondary_external_code\":\"2853\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":7,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"464\",\"name\":\"MUGEBUSCH\",\"primary_external_code\":\"369\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"34\",\"externalCode\":\"AR03\",\"name\":\"Der. Penal\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-01 00:00:00\",\"confidential\":false,\"created_at\":\"2022-07-19 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000118-SR-000838 - Acciones Legales Convisa - Repetici\\u00f3n P\\u00f3lizas de Seguro\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000118-SR-000838\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1324\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000118-SR-000838\",\"processing\":false,\"secondaryExternalCode\":\"3490\",\"secondary_external_code\":\"3490\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"465\",\"name\":\"NACIONAL SEGUROS PATRIMONIALES Y FIANZAS S.A.\",\"primary_external_code\":\"118\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"29\",\"externalCode\":\"AR32\",\"name\":\"Seguros y Reaseguros\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-06-29 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000145-SR-000837 - Caso Brianson\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000145-SR-000837\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1325\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000145-SR-000837\",\"processing\":false,\"secondaryExternalCode\":\"3443\",\"secondary_external_code\":\"3443\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"466\",\"name\":\"NACIONAL SEGUROS VIDA Y SALUD S.A. edit\",\"primary_external_code\":\"145\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"2\",\"externalCode\":\"AR04\",\"name\":\"Arbitraje\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-08-12 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000145-SR-000839 - Negociaci\\u00f3n y conciliaci\\u00f3n previa - Reclamo Agramont\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000145-SR-000839\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1326\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000145-SR-000839\",\"processing\":false,\"secondaryExternalCode\":\"3525\",\"secondary_external_code\":\"3525\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"466\",\"name\":\"NACIONAL SEGUROS VIDA Y SALUD S.A. edit\",\"primary_external_code\":\"145\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"2\",\"externalCode\":\"AR04\",\"name\":\"Arbitraje\"}},{\"apply_procedures\":null,\"billable\":1,\"business_customer_code\":\"\",\"caseNumber\":\"\",\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-01-12 17:08:18\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000375-SR-001067 - Reuniones de coordinaci\\u00f3n interna, revisi\\u00f3n de documentaci\\u00f3n de un proyecto\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000375-SR-001067\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1357\",\"internal_code\":\"\",\"isBillable\":false,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000375-SR-001067\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 14:31:51\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:17\",\"daysAllow\":302,\"email\":\"lchalco@emba.com\",\"enabled\":true,\"fullName\":\"Limbert Alfredo Chalco Herrera\",\"id\":68,\"locale\":\"es\",\"shortName\":\"lchalco\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":0,\"username\":\"lchalco@emba.com\"},\"customer\":{\"id\":\"461\",\"name\":\"MORENO BALDIVIESO SRL\",\"primary_external_code\":\"375\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"3\",\"externalCode\":null,\"name\":\"Back Office\"}},{\"apply_procedures\":null,\"billable\":1,\"business_customer_code\":\"\",\"caseNumber\":\"\",\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-01-12 17:09:33\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000375-SR-001069 - Generaci\\u00f3n documentaci\\u00f3n (fotocopias, escanear, etc.)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000375-SR-001069\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1359\",\"internal_code\":\"\",\"isBillable\":false,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000375-SR-001069\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 18:47:07\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:17\",\"daysAllow\":302,\"email\":\"lchalco@emba.com\",\"enabled\":true,\"fullName\":\"Limbert Alfredo Chalco Herrera\",\"id\":68,\"locale\":\"es\",\"shortName\":\"lchalco\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":0,\"username\":\"lchalco@emba.com\"},\"customer\":{\"id\":\"461\",\"name\":\"MORENO BALDIVIESO SRL\",\"primary_external_code\":\"375\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"3\",\"externalCode\":null,\"name\":\"Back Office\"}},{\"apply_procedures\":null,\"billable\":1,\"business_customer_code\":\"\",\"caseNumber\":\"\",\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-01-12 17:10:09\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000375-SR-001070 - Tareas comerciales de ventas (Networking, reuniones con clientes actuales o potenciales, presencia en eventos, viajes por trabajo, entre otros).\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000375-SR-001070\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1360\",\"internal_code\":\"\",\"isBillable\":false,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000375-SR-001070\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 14:32:52\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:17\",\"daysAllow\":302,\"email\":\"lchalco@emba.com\",\"enabled\":true,\"fullName\":\"Limbert Alfredo Chalco Herrera\",\"id\":68,\"locale\":\"es\",\"shortName\":\"lchalco\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":0,\"username\":\"lchalco@emba.com\"},\"customer\":{\"id\":\"461\",\"name\":\"MORENO BALDIVIESO SRL\",\"primary_external_code\":\"375\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"3\",\"externalCode\":null,\"name\":\"Back Office\"}},{\"apply_procedures\":null,\"billable\":1,\"business_customer_code\":\"\",\"caseNumber\":\"\",\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-01-12 17:10:40\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000375-SR-001071 - Tareas de posicionamiento. (Generaci\\u00f3n de contenido para redes, art\\u00edculos, revistas, rese\\u00f1as, testimonios u otros)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000375-SR-001071\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1361\",\"internal_code\":\"\",\"isBillable\":false,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000375-SR-001071\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 14:33:17\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:17\",\"daysAllow\":302,\"email\":\"lchalco@emba.com\",\"enabled\":true,\"fullName\":\"Limbert Alfredo Chalco Herrera\",\"id\":68,\"locale\":\"es\",\"shortName\":\"lchalco\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":0,\"username\":\"lchalco@emba.com\"},\"customer\":{\"id\":\"461\",\"name\":\"MORENO BALDIVIESO SRL\",\"primary_external_code\":\"375\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"3\",\"externalCode\":null,\"name\":\"Back Office\"}},{\"apply_procedures\":null,\"billable\":1,\"business_customer_code\":\"\",\"caseNumber\":\"\",\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-01-12 17:11:03\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000375-SR-001072 - Tareas administrativas (Revisi\\u00f3n de horas de los proyectos, rendici\\u00f3n de cuentas, evaluaciones de desempe\\u00f1o, revisi\\u00f3n de reportes, entre otros).\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000375-SR-001072\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1362\",\"internal_code\":\"\",\"isBillable\":false,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000375-SR-001072\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 14:32:19\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:17\",\"daysAllow\":302,\"email\":\"lchalco@emba.com\",\"enabled\":true,\"fullName\":\"Limbert Alfredo Chalco Herrera\",\"id\":68,\"locale\":\"es\",\"shortName\":\"lchalco\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":0,\"username\":\"lchalco@emba.com\"},\"customer\":{\"id\":\"461\",\"name\":\"MORENO BALDIVIESO SRL\",\"primary_external_code\":\"375\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"3\",\"externalCode\":null,\"name\":\"Back Office\"}},{\"apply_procedures\":null,\"billable\":1,\"business_customer_code\":\"\",\"caseNumber\":\"\",\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-01-12 17:11:40\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000375-SR-001073 - Reuniones de coordinaci\\u00f3n interna con el Back o Core.\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000375-SR-001073\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1363\",\"internal_code\":\"\",\"isBillable\":false,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000375-SR-001073\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 14:31:23\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:17\",\"daysAllow\":302,\"email\":\"lchalco@emba.com\",\"enabled\":true,\"fullName\":\"Limbert Alfredo Chalco Herrera\",\"id\":68,\"locale\":\"es\",\"shortName\":\"lchalco\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":0,\"username\":\"lchalco@emba.com\"},\"customer\":{\"id\":\"461\",\"name\":\"MORENO BALDIVIESO SRL\",\"primary_external_code\":\"375\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"3\",\"externalCode\":null,\"name\":\"Back Office\"}},{\"apply_procedures\":null,\"billable\":1,\"business_customer_code\":\"\",\"caseNumber\":\"\",\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-01-12 17:12:09\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000375-SR-001074 - Capacitaciones internas o externas.\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000375-SR-001074\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1364\",\"internal_code\":\"\",\"isBillable\":false,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000375-SR-001074\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 14:29:14\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:17\",\"daysAllow\":302,\"email\":\"lchalco@emba.com\",\"enabled\":true,\"fullName\":\"Limbert Alfredo Chalco Herrera\",\"id\":68,\"locale\":\"es\",\"shortName\":\"lchalco\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":0,\"username\":\"lchalco@emba.com\"},\"customer\":{\"id\":\"461\",\"name\":\"MORENO BALDIVIESO SRL\",\"primary_external_code\":\"375\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"3\",\"externalCode\":null,\"name\":\"Back Office\"}},{\"apply_procedures\":null,\"billable\":1,\"business_customer_code\":\"\",\"caseNumber\":\"\",\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-01-12 17:12:41\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000375-SR-001075 - Eventos internos de la firma (Festejos por d\\u00eda de la madre, del abogado, del padre, entre otros)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000375-SR-001075\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1365\",\"internal_code\":\"\",\"isBillable\":false,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000375-SR-001075\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 14:29:55\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:17\",\"daysAllow\":302,\"email\":\"lchalco@emba.com\",\"enabled\":true,\"fullName\":\"Limbert Alfredo Chalco Herrera\",\"id\":68,\"locale\":\"es\",\"shortName\":\"lchalco\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":0,\"username\":\"lchalco@emba.com\"},\"customer\":{\"id\":\"461\",\"name\":\"MORENO BALDIVIESO SRL\",\"primary_external_code\":\"375\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"3\",\"externalCode\":null,\"name\":\"Back Office\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-01-19 00:00:00\",\"confidential\":false,\"created_at\":\"2020-07-22 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000901-SR-000926 - Regularizaci\\u00f3n Certificado de Nacimiento\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000901-SR-000926\",\"finishedDate\":null,\"fixRateValue\":550,\"fix_rate_value\":550,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1419\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000901-SR-000926\",\"processing\":false,\"secondaryExternalCode\":\"2182\",\"secondary_external_code\":\"2182\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"446\",\"name\":\"Mercedes La zarte\",\"primary_external_code\":\"901\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"11\",\"externalCode\":\"AR21\",\"name\":\"Der. Administrativo\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-01-19 00:00:00\",\"confidential\":false,\"created_at\":\"2022-03-12 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000482-SR-000957 - Averiguaci\\u00f3n bienes La Paz\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000482-SR-000957\",\"finishedDate\":null,\"fixRateValue\":600,\"fix_rate_value\":600,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1441\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000482-SR-000957\",\"processing\":false,\"secondaryExternalCode\":\"3241\",\"secondary_external_code\":\"3241\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"423\",\"name\":\"Marcela Soligno\",\"primary_external_code\":\"482\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"5\",\"externalCode\":\"AR02\",\"name\":\"Der.Civil \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-12-20 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000118-SR-000901 - Arbitraje Fernando Walter Campbell\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000118-SR-000901\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1493\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"30% al inicio del servicio - ahora, 40% con la contestaci\\u00f3n a la demanda y 30% final antes de la Audiencia de Conclusiones\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000118-SR-000901\",\"processing\":false,\"secondaryExternalCode\":\"4666\",\"secondary_external_code\":\"4666\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"amorenog@emba.com\",\"enabled\":true,\"fullName\":\"Andres Moreno Gutierrez\",\"id\":5,\"locale\":\"es\",\"shortName\":\"amoreno\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"amorenog@emba.com\"},\"customer\":{\"id\":\"465\",\"name\":\"NACIONAL SEGUROS PATRIMONIALES Y FIANZAS S.A.\",\"primary_external_code\":\"118\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"2\",\"externalCode\":\"AR04\",\"name\":\"Arbitraje\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-27 00:00:00\",\"confidential\":false,\"created_at\":\"2023-12-13 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000440-SR-000950 - Estudio de Precios de Transferencia al 31 de diciembre de 2022\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000440-SR-000950\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1500\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000440-SR-000950\",\"processing\":false,\"secondaryExternalCode\":\"4651\",\"secondary_external_code\":\"4651\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 14:06:18\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"rburgos@emba.com\",\"enabled\":true,\"fullName\":\"Edwin Rodrigo Burgos Fernandez\",\"id\":16,\"locale\":\"es\",\"shortName\":\"rburgos\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rburgos@emba.com\"},\"customer\":{\"id\":\"449\",\"name\":\"MHTNARQ SRL\",\"primary_external_code\":\"440\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"19\",\"externalCode\":\"AR09\",\"name\":\"Der. Tributario\\u0026 Plan.Fiscal\"}},{\"apply_procedures\":null,\"billable\":1,\"business_customer_code\":\"\",\"caseNumber\":null,\"closed_date\":\"2024-01-24 00:00:00\",\"confidential\":false,\"created_at\":\"2024-01-24 13:15:55\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000375-SR-000981 - Casos y Proyectos Flia. Moreno\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000375-SR-000981\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1504\",\"internal_code\":\"\",\"isBillable\":false,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000375-SR-000981\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:17\",\"daysAllow\":302,\"email\":\"lchalco@emba.com\",\"enabled\":true,\"fullName\":\"Limbert Alfredo Chalco Herrera\",\"id\":68,\"locale\":\"es\",\"shortName\":\"lchalco\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":0,\"username\":\"lchalco@emba.com\"},\"customer\":{\"id\":\"461\",\"name\":\"MORENO BALDIVIESO SRL\",\"primary_external_code\":\"375\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"30\",\"externalCode\":\"AR33\",\"name\":\"Servicios Legales Mensuales\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":\"\",\"caseNumber\":null,\"closed_date\":\"2024-02-15 00:00:00\",\"confidential\":false,\"created_at\":\"2024-01-24 15:02:58\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000217-SR-000982 - Servicios legales mensuales (FM)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000217-SR-000982\",\"finishedDate\":null,\"fixRateValue\":900,\"fix_rate_value\":900,\"hourLimit\":11,\"hour_limit\":11,\"id\":\"1505\",\"internal_code\":\"\",\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Horas extras USD 90\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000217-SR-000982\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-22 15:41:36\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"469\",\"name\":\"NATIONAL OILWELL VARCO DE BOLIVIA S.R.L.\",\"primary_external_code\":\"217\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2024-01-29 21:23:47\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000524-SR-000989 - Outsourcing contable (FM)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000524-SR-000989\",\"finishedDate\":null,\"fixRateValue\":605,\"fix_rate_value\":605,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1513\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000524-SR-000989\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 13:49:37\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"cdelgado@emba.com\",\"enabled\":true,\"fullName\":\"Cristhian Delgado Ramirez\",\"id\":13,\"locale\":\"es\",\"shortName\":\"cdelgado\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"cdelgado@emba.com\"},\"customer\":{\"id\":\"414\",\"name\":\"Lilac Solutions Bolivia S.A.\",\"primary_external_code\":\"524\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"24\",\"externalCode\":\"AR05\",\"name\":\"Outsourcing\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-01 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-01 19:23:02\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000343-SR-000997 - Defensa Tributaria VC 292329000704 y 292329000697\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000343-SR-000997\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2295\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000343-SR-000997\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 14:06:05\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"rburgos@emba.com\",\"enabled\":true,\"fullName\":\"Edwin Rodrigo Burgos Fernandez\",\"id\":16,\"locale\":\"es\",\"shortName\":\"rburgos\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rburgos@emba.com\"},\"customer\":{\"id\":\"357\",\"name\":\"INDUSTRIAS VENADO S.A.\",\"primary_external_code\":\"343\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"19\",\"externalCode\":\"AR09\",\"name\":\"Der. Tributario\\u0026 Plan.Fiscal\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-05 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-05 14:37:59\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000118-SR-001005 - Servicios legales mensuales (FM)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000118-SR-001005\",\"finishedDate\":null,\"fixRateValue\":4350,\"fix_rate_value\":4350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2305\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000118-SR-001005\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"465\",\"name\":\"NACIONAL SEGUROS PATRIMONIALES Y FIANZAS S.A.\",\"primary_external_code\":\"118\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":1,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-07 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-07 16:15:53\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000235-SR-001017 - Servicios legales mensuales (FM)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000235-SR-001017\",\"finishedDate\":null,\"fixRateValue\":1,\"fix_rate_value\":1,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2322\",\"internal_code\":null,\"isBillable\":false,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000235-SR-001017\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-22 19:31:56\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:17\",\"daysAllow\":302,\"email\":\"lchalco@emba.com\",\"enabled\":true,\"fullName\":\"Limbert Alfredo Chalco Herrera\",\"id\":68,\"locale\":\"es\",\"shortName\":\"lchalco\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":0,\"username\":\"lchalco@emba.com\"},\"customer\":{\"id\":\"440\",\"name\":\"MB SERVICIOS REGULATORIOS SRL\",\"primary_external_code\":\"235\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"3\",\"externalCode\":null,\"name\":\"Back Office\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-14 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-14 22:34:44\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000343-SR-001017 - Proceso Civil Gabriel Vaca Aguilar Seguimiento\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000343-SR-001017\",\"finishedDate\":null,\"fixRateValue\":200,\"fix_rate_value\":200,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2329\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000343-SR-001017\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-18 19:17:39\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"357\",\"name\":\"INDUSTRIAS VENADO S.A.\",\"primary_external_code\":\"343\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-29 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-22 15:27:01\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000343-SR-001043 - PROCESO 1 FRANCO MAR\\u00cdN - SEGUIMIENTO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000343-SR-001043\",\"finishedDate\":null,\"fixRateValue\":200,\"fix_rate_value\":200,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2370\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000343-SR-001043\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"357\",\"name\":\"INDUSTRIAS VENADO S.A.\",\"primary_external_code\":\"343\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-22 19:33:33\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000343-SR-001044 - Proceso INTERFOOD ALIMENTOS Y BEBIDAS S.A. \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000343-SR-001044\",\"finishedDate\":null,\"fixRateValue\":129,\"fix_rate_value\":129,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2371\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"facturar 100% al ingreso de la demanda\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000343-SR-001044\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"357\",\"name\":\"INDUSTRIAS VENADO S.A.\",\"primary_external_code\":\"343\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-22 19:37:04\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000343-SR-001045 - PROCESO WALTER ALBERTO PLAZA NOGALES \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000343-SR-001045\",\"finishedDate\":null,\"fixRateValue\":450,\"fix_rate_value\":450,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2372\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"facturar 100% al ingreso de la demanda\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000343-SR-001045\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"357\",\"name\":\"INDUSTRIAS VENADO S.A.\",\"primary_external_code\":\"343\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-22 19:39:57\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000343-SR-001046 - PROCESO OLIMPIA RIOS MEJIA Y GARANTES\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000343-SR-001046\",\"finishedDate\":null,\"fixRateValue\":1707,\"fix_rate_value\":1707,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2373\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"facturar 100% ingreso de la demanda\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000343-SR-001046\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"357\",\"name\":\"INDUSTRIAS VENADO S.A.\",\"primary_external_code\":\"343\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-22 19:42:26\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000343-SR-001047 - PROCESO SHIRLEY MUJICA FLORES\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000343-SR-001047\",\"finishedDate\":null,\"fixRateValue\":70,\"fix_rate_value\":70,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2374\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"facturar 100% ingreso de la demanda\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000343-SR-001047\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"357\",\"name\":\"INDUSTRIAS VENADO S.A.\",\"primary_external_code\":\"343\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-22 19:49:07\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000343-SR-001048 - PROCESO REYNA SAIDA SILES DE CARRASCO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000343-SR-001048\",\"finishedDate\":null,\"fixRateValue\":152,\"fix_rate_value\":152,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2375\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"facturar 100% ingreso demanda\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000343-SR-001048\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"357\",\"name\":\"INDUSTRIAS VENADO S.A.\",\"primary_external_code\":\"343\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-22 19:53:30\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000343-SR-001049 - PROCESO ELIZABETH RUTH MORALES\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000343-SR-001049\",\"finishedDate\":null,\"fixRateValue\":80,\"fix_rate_value\":80,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2376\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"facturar 100% ingreso demanda\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000343-SR-001049\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"357\",\"name\":\"INDUSTRIAS VENADO S.A.\",\"primary_external_code\":\"343\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-22 19:55:34\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000343-SR-001050 - PROCESO JESSICA VERONICA RODRIGUEZ VARGAS\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000343-SR-001050\",\"finishedDate\":null,\"fixRateValue\":47,\"fix_rate_value\":47,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2377\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"facturar 100% ingreso demanda\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000343-SR-001050\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"357\",\"name\":\"INDUSTRIAS VENADO S.A.\",\"primary_external_code\":\"343\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-22 20:02:53\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000343-SR-001051 - PROCESO MILTON CARABALLO HUAILLA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000343-SR-001051\",\"finishedDate\":null,\"fixRateValue\":8550,\"fix_rate_value\":8550,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2378\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"facturar 100% ingreso demanda\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000343-SR-001051\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"357\",\"name\":\"INDUSTRIAS VENADO S.A.\",\"primary_external_code\":\"343\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-22 20:06:05\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000343-SR-001052 - PROCESO ELZY MARLENY ESTEPA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000343-SR-001052\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2379\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Tiene 2 hitos\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000343-SR-001052\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"357\",\"name\":\"INDUSTRIAS VENADO S.A.\",\"primary_external_code\":\"343\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-22 20:14:46\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000343-SR-001053 - PROCESO OLGA PARISACA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000343-SR-001053\",\"finishedDate\":null,\"fixRateValue\":82,\"fix_rate_value\":82,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2380\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"100% emisi\\u00f3n de sentencia\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000343-SR-001053\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"357\",\"name\":\"INDUSTRIAS VENADO S.A.\",\"primary_external_code\":\"343\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-22 20:18:52\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000343-SR-001054 - PROCESO FLORINDA CORONADO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000343-SR-001054\",\"finishedDate\":null,\"fixRateValue\":21,\"fix_rate_value\":21,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2381\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"facturar 100% ingreso de demanda\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000343-SR-001054\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"357\",\"name\":\"INDUSTRIAS VENADO S.A.\",\"primary_external_code\":\"343\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-22 20:22:20\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000343-SR-001055 - PROCESO RODRIGO ROBERTO VIDAL NEGRETE\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000343-SR-001055\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2382\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Tiene 2 hitos\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000343-SR-001055\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"357\",\"name\":\"INDUSTRIAS VENADO S.A.\",\"primary_external_code\":\"343\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-29 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-22 20:25:40\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000343-SR-001056 - PROCESO 1 - TOPDEALER SRL \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000343-SR-001056\",\"finishedDate\":null,\"fixRateValue\":224,\"fix_rate_value\":224,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2383\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Facturar 100% al ingreso de la demanda\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000343-SR-001056\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"357\",\"name\":\"INDUSTRIAS VENADO S.A.\",\"primary_external_code\":\"343\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-22 20:38:43\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000343-SR-001057 - PROCESO 2 FRANCO MAR\\u00cdN \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000343-SR-001057\",\"finishedDate\":null,\"fixRateValue\":1050,\"fix_rate_value\":1050,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2384\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Facturar 100% ingreso de demanda\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000343-SR-001057\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"357\",\"name\":\"INDUSTRIAS VENADO S.A.\",\"primary_external_code\":\"343\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-23 20:04:42\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000343-SR-001059 - PROCESO JESSICA VERONICA RODRIGUEZ VARGAS SEGUIMIENTO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000343-SR-001059\",\"finishedDate\":null,\"fixRateValue\":100,\"fix_rate_value\":100,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2386\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000343-SR-001059\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"357\",\"name\":\"INDUSTRIAS VENADO S.A.\",\"primary_external_code\":\"343\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-01 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-29 19:55:14\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000343-SR-001084 - PROCESO 2- TOPDEALER SRL SEGUIMIENTO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000343-SR-001084\",\"finishedDate\":null,\"fixRateValue\":100,\"fix_rate_value\":100,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2559\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"100% mensual\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000343-SR-001084\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:25:59\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"357\",\"name\":\"INDUSTRIAS VENADO S.A.\",\"primary_external_code\":\"343\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-01 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-01 16:26:28\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000343-SR-001093 - PROCESO RODRIGO ROBERTO VIDAL NEGRETE - SEGUIMIENTO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000343-SR-001093\",\"finishedDate\":null,\"fixRateValue\":100,\"fix_rate_value\":100,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2599\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000343-SR-001093\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:25:59\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"357\",\"name\":\"INDUSTRIAS VENADO S.A.\",\"primary_external_code\":\"343\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-01 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-01 16:30:20\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000343-SR-001094 - PROCESO FLORINDA CORONADO - SEGUIMIENTO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000343-SR-001094\",\"finishedDate\":null,\"fixRateValue\":100,\"fix_rate_value\":100,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2603\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000343-SR-001094\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:25:59\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"357\",\"name\":\"INDUSTRIAS VENADO S.A.\",\"primary_external_code\":\"343\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-01 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-01 16:32:20\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000343-SR-001095 - PROCESO OLGA PARISACA - SEGUIMIENTO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000343-SR-001095\",\"finishedDate\":null,\"fixRateValue\":100,\"fix_rate_value\":100,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2606\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000343-SR-001095\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:25:59\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"357\",\"name\":\"INDUSTRIAS VENADO S.A.\",\"primary_external_code\":\"343\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-01 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-01 16:35:50\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000343-SR-001096 - PROCESO ELZY MARLENY ESTEPA - SEGUIMIENTO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000343-SR-001096\",\"finishedDate\":null,\"fixRateValue\":100,\"fix_rate_value\":100,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2612\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000343-SR-001096\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:25:59\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"357\",\"name\":\"INDUSTRIAS VENADO S.A.\",\"primary_external_code\":\"343\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-04 19:12:15\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000343-SR-001097 - PROCESO MILTON CARABALLO HUAILLA - SEGUIMIENTO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000343-SR-001097\",\"finishedDate\":null,\"fixRateValue\":300,\"fix_rate_value\":300,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2622\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"300 $us mensual\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000343-SR-001097\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:25:59\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"357\",\"name\":\"INDUSTRIAS VENADO S.A.\",\"primary_external_code\":\"343\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-05 14:40:02\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000343-SR-001103 - WALTER PLAZA NOGALES - SEGUIMIENTO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000343-SR-001103\",\"finishedDate\":null,\"fixRateValue\":100,\"fix_rate_value\":100,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2636\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"100 $US mensual\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000343-SR-001103\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:25:59\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"357\",\"name\":\"INDUSTRIAS VENADO S.A.\",\"primary_external_code\":\"343\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"19\",\"externalCode\":\"AR09\",\"name\":\"Der. Tributario\\u0026 Plan.Fiscal\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-05 14:59:35\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000343-SR-001104 - REYNA SAIDA SILES DE CARRASCO - SEGUIMIENTO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000343-SR-001104\",\"finishedDate\":null,\"fixRateValue\":100,\"fix_rate_value\":100,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2637\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"$us 100 mensual\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000343-SR-001104\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:25:59\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"357\",\"name\":\"INDUSTRIAS VENADO S.A.\",\"primary_external_code\":\"343\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-05 15:01:42\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000343-SR-001105 - SHIRLEY MUJICA FLORES -SEGUIMIENTO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000343-SR-001105\",\"finishedDate\":null,\"fixRateValue\":100,\"fix_rate_value\":100,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2638\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"$us 100 mensual\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000343-SR-001105\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:25:59\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"357\",\"name\":\"INDUSTRIAS VENADO S.A.\",\"primary_external_code\":\"343\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-05 15:03:37\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000343-SR-001106 - OLIMPIA RIOS MEJIA Y GARANTES-SEGUIMIENTO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000343-SR-001106\",\"finishedDate\":null,\"fixRateValue\":300,\"fix_rate_value\":300,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2639\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"$us 300 mensual\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000343-SR-001106\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:25:59\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"357\",\"name\":\"INDUSTRIAS VENADO S.A.\",\"primary_external_code\":\"343\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-05 15:05:14\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000343-SR-001107 - ELIZABETH RUTH MORALES -SEGUIMIENTO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000343-SR-001107\",\"finishedDate\":null,\"fixRateValue\":100,\"fix_rate_value\":100,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2640\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"$us 100 mensual\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000343-SR-001107\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:25:59\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"357\",\"name\":\"INDUSTRIAS VENADO S.A.\",\"primary_external_code\":\"343\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-08 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-08 15:09:25\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000343-SR-001112 - Proceso Ejecutivo AGN ALIMENTOS Y BEBIDAS LTDA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000343-SR-001112\",\"finishedDate\":null,\"fixRateValue\":114,\"fix_rate_value\":114,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2646\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Ingreso de demanda\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000343-SR-001112\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-08 10:09:26\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"357\",\"name\":\"INDUSTRIAS VENADO S.A.\",\"primary_external_code\":\"343\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-11 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-11 22:57:01\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000543-SR-001117 - Consultas sobre facturaci\\u00f3n- cargado de combustible a veh\\u00edculos\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000543-SR-001117\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2660\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Me pidieron que se facture urgente. Por favor crear urgente el asunto en TM\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000543-SR-001117\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 19:37:27\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"411\",\"name\":\"LG Electronics Per\\u00fa\",\"primary_external_code\":\"543\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"19\",\"externalCode\":\"AR09\",\"name\":\"Der. Tributario\\u0026 Plan.Fiscal\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-12 18:10:53\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000375-SR-001118 - Servicios a clientes potenciales - trabajo operativo\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000375-SR-001118\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2691\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000375-SR-001118\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 13:10:54\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:17\",\"daysAllow\":302,\"email\":\"lchalco@emba.com\",\"enabled\":true,\"fullName\":\"Limbert Alfredo Chalco Herrera\",\"id\":68,\"locale\":\"es\",\"shortName\":\"lchalco\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":0,\"username\":\"lchalco@emba.com\"},\"customer\":{\"id\":\"461\",\"name\":\"MORENO BALDIVIESO SRL\",\"primary_external_code\":\"375\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"3\",\"externalCode\":null,\"name\":\"Back Office\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-14 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-14 22:48:45\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000534-SR-001122 - Insumos Agr\\u00edcolas\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000534-SR-001122\",\"finishedDate\":null,\"fixRateValue\":3500,\"fix_rate_value\":3500,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2698\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"50% Inicio\\/50% Final - nota: El 50% inicial debi\\u00f3 haberse pagado en 2023\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000534-SR-001122\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-14 17:48:51\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"nicoln042001@gmail.com\",\"enabled\":true,\"fullName\":\"Daniel Marcelo Arredondo Zelada\",\"id\":6,\"locale\":\"es\",\"shortName\":\"darredon\",\"superAdmin\":false,\"updated_at\":\"2024-09-03 11:43:07\",\"userType\":1,\"username\":\"darredondo@emba.com.bo\"},\"customer\":{\"id\":\"371\",\"name\":\"ITACAMBA CEMENTO SA\",\"primary_external_code\":\"534\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"11\",\"externalCode\":\"AR21\",\"name\":\"Der. Administrativo\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-02 00:00:00\",\"confidential\":false,\"created_at\":\"2024-04-02 15:21:23\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000440-SR-001158 - Cierre Corporativo 2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000440-SR-001158\",\"finishedDate\":null,\"fixRateValue\":650,\"fix_rate_value\":650,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2787\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"El monto ser\\u00e1 pagado en Bolivianos, no en D\\u00f3lares\\/100% Final\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000440-SR-001158\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-02 10:21:24\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"449\",\"name\":\"MHTNARQ SRL\",\"primary_external_code\":\"440\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-08-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-08-12 16:44:20\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000671-BK-000369 - prueba redondeo monto fijo por asunto\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000671-BK-000369\",\"finishedDate\":null,\"fixRateValue\":550,\"fix_rate_value\":550,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2857\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":null,\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"billed\",\"updated_at\":\"2024-08-12 17:05:25\",\"withIVA\":true,\"responsible\":null,\"customer\":{\"id\":\"379\",\"name\":\"JHONSON \\u0026 JHONSON DEL PARAGUAY S.A.\",\"primary_external_code\":\"671\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-08-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-08-12 16:50:07\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000671-BK-000370 - redondeo horas\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000671-BK-000370\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2858\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":null,\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-08-12 16:54:30\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2021-05-11 23:40:08\",\"daysAllow\":70,\"email\":\"nicoln042001@gmail.com\",\"enabled\":true,\"fullName\":\"Soporte QA timekeeper\",\"id\":87,\"locale\":\"es\",\"shortName\":\"QA\",\"superAdmin\":false,\"updated_at\":\"2025-04-07 12:03:19\",\"userType\":1,\"username\":\"nicoln042001@gmail.com\"},\"customer\":{\"id\":\"379\",\"name\":\"JHONSON \\u0026 JHONSON DEL PARAGUAY S.A.\",\"primary_external_code\":\"671\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":null},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-08-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-08-12 17:07:16\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000671-RE-000693 - redondeo monto fijo mensual\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000671-RE-000693\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2859\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":null,\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-08-12 17:26:37\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2021-05-11 23:40:08\",\"daysAllow\":70,\"email\":\"nicoln042001@gmail.com\",\"enabled\":true,\"fullName\":\"Soporte QA timekeeper\",\"id\":87,\"locale\":\"es\",\"shortName\":\"QA\",\"superAdmin\":false,\"updated_at\":\"2025-04-07 12:03:19\",\"userType\":1,\"username\":\"nicoln042001@gmail.com\"},\"customer\":{\"id\":\"379\",\"name\":\"JHONSON \\u0026 JHONSON DEL PARAGUAY S.A.\",\"primary_external_code\":\"671\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-08-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-08-12 17:41:06\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000671-BK-000371 - redondeo por hitos\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000671-BK-000371\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2860\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":null,\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"approved\",\"updated_at\":\"2024-08-12 19:39:16\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2021-05-11 23:40:08\",\"daysAllow\":70,\"email\":\"nicoln042001@gmail.com\",\"enabled\":true,\"fullName\":\"Soporte QA timekeeper\",\"id\":87,\"locale\":\"es\",\"shortName\":\"QA\",\"superAdmin\":false,\"updated_at\":\"2025-04-07 12:03:19\",\"userType\":1,\"username\":\"nicoln042001@gmail.com\"},\"customer\":{\"id\":\"379\",\"name\":\"JHONSON \\u0026 JHONSON DEL PARAGUAY S.A.\",\"primary_external_code\":\"671\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-08-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-08-12 19:42:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000671-RE-000694 - redondeo por tramites\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000671-RE-000694\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2861\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":null,\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-08-12 19:42:19\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2021-05-11 23:40:08\",\"daysAllow\":70,\"email\":\"nicoln042001@gmail.com\",\"enabled\":true,\"fullName\":\"Soporte QA timekeeper\",\"id\":87,\"locale\":\"es\",\"shortName\":\"QA\",\"superAdmin\":false,\"updated_at\":\"2025-04-07 12:03:19\",\"userType\":1,\"username\":\"nicoln042001@gmail.com\"},\"customer\":{\"id\":\"379\",\"name\":\"JHONSON \\u0026 JHONSON DEL PARAGUAY S.A.\",\"primary_external_code\":\"671\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-08-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-08-12 20:47:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000671-BK-000372 - redondeo horas cap\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000671-BK-000372\",\"finishedDate\":null,\"fixRateValue\":55,\"fix_rate_value\":55,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2862\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":null,\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"billed\",\"updated_at\":\"2024-08-12 21:58:47\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2021-05-11 23:40:08\",\"daysAllow\":70,\"email\":\"nicoln042001@gmail.com\",\"enabled\":true,\"fullName\":\"Soporte QA timekeeper\",\"id\":87,\"locale\":\"es\",\"shortName\":\"QA\",\"superAdmin\":false,\"updated_at\":\"2025-04-07 12:03:19\",\"userType\":1,\"username\":\"nicoln042001@gmail.com\"},\"customer\":{\"id\":\"379\",\"name\":\"JHONSON \\u0026 JHONSON DEL PARAGUAY S.A.\",\"primary_external_code\":\"671\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-08-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-08-12 22:13:16\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000671-BK-000373 - redondeo horas cap mensual\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000671-BK-000373\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2863\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":null,\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-08-12 23:20:38\",\"withIVA\":true,\"responsible\":null,\"customer\":{\"id\":\"379\",\"name\":\"JHONSON \\u0026 JHONSON DEL PARAGUAY S.A.\",\"primary_external_code\":\"671\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-08-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-08-12 23:26:36\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000671-RE-000695 - redondeo monto editable\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000671-RE-000695\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2864\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":null,\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-08-12 23:30:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2021-05-11 23:40:08\",\"daysAllow\":70,\"email\":\"nicoln042001@gmail.com\",\"enabled\":true,\"fullName\":\"Soporte QA timekeeper\",\"id\":87,\"locale\":\"es\",\"shortName\":\"QA\",\"superAdmin\":false,\"updated_at\":\"2025-04-07 12:03:19\",\"userType\":1,\"username\":\"nicoln042001@gmail.com\"},\"customer\":{\"id\":\"379\",\"name\":\"JHONSON \\u0026 JHONSON DEL PARAGUAY S.A.\",\"primary_external_code\":\"671\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}}]}}}\n","time":"2025-07-30T10:50:45-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: POST https://apinewtm.com/graphql/\nHeaders: map[Accept:[application/json] Authorization:[Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJpYXQiOjE3NTM4ODY1MjIsImV4cCI6MTc1Mzk2NjUyMiwiaWQiOjEwNSwidXNlcm5hbWUiOiJpbnRlZ3JhY2lvbmVzQGVtYmEuYm8iLCJhcGlrZXkiOiI5Yzg0ZjYzZTRlMzk2ZGZmOWU5ZjU3NDI5OGRmZWUzOSIsImFwaWtleUNyZWF0ZWRBdCI6eyJkYXRlIjoiMjAyNS0wNy0xNyAxMDo0MToyNS4wMDAwMDAiLCJ0aW1lem9uZV90eXBlIjozLCJ0aW1lem9uZSI6IkFtZXJpY2EvQm9nb3RhIn0sImZ1bGxOYW1lIjoiSW50ZWdyYWNpw7NuIEVNQkEiLCJlbWFpbCI6ImludGVncmFjaW9uZXNAZW1iYS5ibyIsImxvY2FsZSI6ImVzIiwiZGF5c0FsbG93ZWQiOjMwLCJpc0Nvb3JkaW5hdG9yIjpmYWxzZSwidHlwZVRhc2tWaWV3IjoibGlzdHMiLCJkYXlzYWxsb3ciOjMwLCJyb2xlcyI6e30sInNob3J0X25hbWUiOiJJTi5FTUJBIiwicGVybWlzc2lvbnMiOlsic3luY19leHRlcm5hbF9idXNpbmVzcyIsInN5bmNfZXh0ZXJuYWxfY3VzdG9tZXIiLCJzeW5jX2V4dGVybmFsX21pbGVzdG9uZSIsImFic2VuY2VfYXBwcm92ZSIsImFic2VuY2VfY3JlYXRlX2FsbCIsImFic2VuY2VfY3JlYXRlX293biIsImFic2VuY2VfbWVudSIsImFjY291bnRpbmdfYnVzaW5lc3NfbGlzdCIsImFjY291bnRpbmdfY3VzdG9tZXJfbGlzdCIsImJpbGxpbmdfcGVyaW9kX2RlbGV0ZV9hbGwiLCJiaWxsaW5nX3BlcmlvZF9lZGl0X2FsbCIsImJpbGxpbmdfcGVyaW9kX2xpc3QiLCJiaWxsaW5nX3BlcmlvZF9yZWFjdGl2YXRlIiwiYm9hcmRfcmF0ZV91c2VyX2NyZWF0ZSIsImJvYXJkX3JhdGVfdXNlcl9lZGl0IiwiYnVzaW5lc3NfY3JlYXRlIiwiYnVzaW5lc3NfZGVzY3JpcHRpb25fc2F2ZSIsImJ1c2luZXNzX2VkaXQiLCJidXNpbmVzc19saXN0X2FsbCIsImJ1c2luZXNzX21lbnUiLCJidXNpbmVzc19yZXNwb25zaWJsZV9saXN0X2FsbCIsImJ1c2luZXNzX3NlZV9iaWxsaW5nX2luZm8iLCJidXNpbmVzc2VzX2FsbG93ZWRfdXNlcl9jcmVhdGUiLCJidXNpbmVzc2VzX2FsbG93ZWRfdXNlcl9kZWxldGUiLCJjb21wYW55X2Rpc2FibGUiLCJjb21wYW55X2VkaXQiLCJjb21wYW55X2xpc3QiLCJjb25jZXB0X2NyZWF0ZSIsImNvbmNlcHRfZWRpdCIsImNvbmNlcHRfbWVudSIsImNvbnRhY3RfY3JlYXRlIiwiY29udGFjdF9jcmVhdGVfZmFzdCIsImNvbnRhY3RfZWRpdCIsImNvbnRhY3RfbGlzdCIsImNvbnRhY3RfbWVudSIsImN1c3RvbWVyX2NyZWF0ZSIsImN1c3RvbWVyX2NyZWF0ZV9mYXN0IiwiY3VzdG9tZXJfZWRpdCIsImN1c3RvbWVyX2xpc3QiLCJjdXN0b21lcl9saXN0X2FsbCIsImN1c3RvbWVyX21lbnUiLCJleHBlbnNlX2NyZWF0ZV9hbGwiLCJleHBlbnNlX2RlbGV0ZV9hbGwiLCJleHBlbnNlX2R1cGxpY2F0ZSIsImV4cGVuc2VfZWRpdF9hbGwiLCJleHBlbnNlX2xpc3RfYWxsIiwiZXhwZW5zZV9tZW51IiwiZXhwZW5zZV9yZWplY3RfYWxsIiwiZmFiX3Nob3ciLCJmaWxlX21lbnUiLCJnZW9yZWZlcmVuY2VfY3JlYXRlIiwiZ2VvcmVmZXJlbmNlX2VkaXQiLCJnZW9yZWZlcmVuY2VfbWVudSIsImdvX3RvX2xlZ2FjeSIsImluZGljYXRvcnNfbWVudSIsImludm9pY2VfY3JlYXRlIiwiaW52b2ljZV9kZXRhaWxfbGlzdF9hbGwiLCJpbnZvaWNlX2ZpeF90aW1lc19jdXN0b21fdmFsdWUiLCJpbnZvaWNlX2xpc3RfYWxsIiwiaW52b2ljZWFkdmFuY2VfY3JlYXRlIiwiaW52b2ljZWFkdmFuY2VfbGlzdCIsImludm9pY2VhZHZhbmNlX3VwZGF0ZSIsImxvZ19saXN0X2FsbCIsImxvZ19saXN0X293biIsIm1pbGVzdG9uZV9jcmVhdGUiLCJtaWxlc3RvbmVfZGVsZXRlIiwibWlsZXN0b25lX2VkaXQiLCJtb250aGx5X2ZpeF9yYXRlX2dyb3VwX2NyZWF0ZSIsIm1vbnRobHlfZml4X3JhdGVfZ3JvdXBfZWRpdCIsIm1vbnRobHlfdXNlcl9jb3N0X2NyZWF0ZSIsIm1vbnRobHlfdXNlcl9jb3N0X2VkaXQiLCJwYXltZW50X2NyZWF0ZSIsInBheW1lbnRfZGVsZXRlIiwicGF5bWVudF9lZGl0IiwicGF5bWVudF9tZW51IiwicHJvY2VkdXJlX21lbnUiLCJwcm9jZWR1cmVfcmF0ZV9jcmVhdGUiLCJwcm9jZWR1cmVfcmF0ZV9kZXRhaWxfY3JlYXRlIiwicHJvY2VkdXJlX3JhdGVfZGV0YWlsX2VkaXQiLCJwcm9jZWR1cmVfcmF0ZV9kZXRhaWxfbGlzdCIsInByb2NlZHVyZV9yYXRlX2VkaXQiLCJwcm9jZWR1cmVfcmF0ZV9saXN0IiwicHJvY2VkdXJlX3JhdGVfbWVudSIsInByb2NlZHVyZV90cmFuc2FjdGlvbl9saXN0IiwicHJvamVjdF9hcmNoaXZlX2Nhc2NhZGVfYWxsIiwicHJvamVjdF9kZWxldGVfY2FzY2FkZV9hbGwiLCJwcm9qZWN0X3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInJhdGVfYnVzaW5lc3NfY2F0ZWdvcnlfY3JlYXRlIiwicmF0ZV9idXNpbmVzc19jYXRlZ29yeV9lZGl0IiwicmF0ZV9idXNpbmVzc191c2VyX2NyZWF0ZSIsInJhdGVfYnVzaW5lc3NfdXNlcl9lZGl0IiwicmF0ZV9leGNoYW5nZV9jcmVhdGUiLCJyYXRlX2V4Y2hhbmdlX2VkaXQiLCJyYXRlX2V4Y2hhbmdlX2xpc3QiLCJyYXRlX3VzZXJfY3JlYXRlIiwicmF0ZV91c2VyX2VkaXQiLCJyb2xlX2NyZWF0ZSIsInJvbGVfZWRpdF9hbGwiLCJyb2xlX2xpc3RfYWxsIiwic2VjdGlvbl9hcmNoaXZlX2Nhc2NhZGVfYWxsIiwic2VjdGlvbl9kZWxldGVfY2FzY2FkZV9hbGwiLCJzZWN0aW9uX3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInNlZV9tZW51X3JhdGVfZXhjaGFuZ2UiLCJzZXJpZV9jcmVhdGUiLCJzZXJpZV9lZGl0Iiwic2VyaWVfbWVudSIsInNldHRpbmdzX3ZpZXciLCJzdXBwbGllcl9jcmVhdGUiLCJ0YXNrX2FkZF90aW1lX2FsbCIsInRhc2tfYWRkX3RpbWVfb3duIiwidGFza19hc3NpZ25lZF91c2VyX2VtYWlsIiwidGFza19jbG9zZWRfZW1haWwiLCJ0YXNrX2NyZWF0ZV9hbGwiLCJ0YXNrX2NyZWF0ZV9jb21tZW50X2VtYWlsIiwidGFza19jcmVhdGVfc2VsZiIsInRhc2tfY3JlYXRlX3RlYW0iLCJ0YXNrX2RlbGV0ZV9hbGwiLCJ0YXNrX2RlbGV0ZV9vd24iLCJ0YXNrX2RlbGV0ZV90ZWFtIiwidGFza19lZGl0X2FsbCIsInRhc2tfZWRpdF9kdWVfZGF0ZSIsInRhc2tfZWRpdF9vd24iLCJ0YXNrX2VkaXRfdGVhbSIsInRhc2tfbGlzdF9hbGwiLCJ0YXNrX2xpc3Rfb3duIiwidGFza19saXN0X3RlYW0iLCJ0YXNrX21hc3NpdmVpbXBvcnQiLCJ0YXNrX21lbnUiLCJ0YXNrX21pZ3JhdGlvbiIsInRhc2tfc2V0X2FkZGl0aW9uYWxfYXNzaWduZWVzIiwidGFza19zZXRfZHVlX2RhdGUiLCJ0YXNrX3NldF9lc3RpbWF0ZWRfdGltZSIsInRhc2tfc2V0X3ByaW9yaXR5IiwidGFza19zZXRfcHJvZ3Jlc3MiLCJ0YXhfZWRpdF9hbGwiLCJ0YXhfbGlzdF9hbGwiLCJ0ZWFtX2FyY2hpdmVfY2FzY2FkZV9hbGwiLCJ0ZWFtX2NyZWF0ZV9hbGwiLCJ0ZWFtX2RlbGV0ZV9hbGwiLCJ0ZWFtX2VkaXRfYWxsIiwidGVhbV9saXN0X2FsbCIsInRlYW1fbGlzdF9vd24iLCJ0ZWFtX3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInRpbWVfYWNjZXB0X2FsbCIsInRpbWVfYWNjZXB0X293biIsInRpbWVfYXBwcm92ZV9hbGwiLCJ0aW1lX2FwcHJvdmVfb3duIiwidGltZV9jcmVhdGVfYWxsIiwidGltZV9jcmVhdGVfb3duIiwidGltZV9kZWxldGVfYWxsIiwidGltZV9kZWxldGVfb3duIiwidGltZV9kZW55X2FsbCIsInRpbWVfZGVueV9vd24iLCJ0aW1lX2Rvd25sb2FkZmlsZV9hbGwiLCJ0aW1lX2Rvd25sb2FkZmlsZV9vd24iLCJ0aW1lX2VkaXRfYWxsIiwidGltZV9lZGl0X2Nsb3NlX3BlcmlvZF9hbGwiLCJ0aW1lX2VkaXRfY2xvc2VfcGVyaW9kX293biIsInRpbWVfZWRpdF9vd24iLCJ0aW1lX2xpc3RfYWxsIiwidGltZV9saXN0X293biIsInRpbWVfbWVudSIsInRpbWVfbWludXRlc196ZXJvIiwidGltZV9yZWplY3RfYWxsIiwidGltZV9yZXN0cmljdGVkX3BlcmlvZF9jcmVhdGUiLCJ0aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX2VkaXQiLCJ0aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX21lbnUiLCJ0aW1lX3NoYXJlX2FsbCIsInRpbWVfc2hhcmVfb3duIiwidGltZV9zaG93X2NhbGVuZGFyX3ZpZXciLCJ0aW1lX3VwbG9hZGZpbGVfYWxsIiwidGltZV91cGxvYWRmaWxlX293biIsInRyYW5zYWN0aW9uX2FkYXB0ZXJfbGlzdCIsInRyYW5zYWN0aW9uX2xpc3QiLCJ1c2VyX2Fic2VuY2VzX3Nob3ciLCJ1c2VyX2Nvc3RfY3JlYXRlIiwidXNlcl9jb3N0X2VkaXQiLCJ1c2VyX2Nvc3RfbGlzdCIsInVzZXJfY29zdF9tZW51IiwidXNlcl9jb3N0X3JhdGVfY3JlYXRlIiwidXNlcl9jb3N0X3JhdGVfZWRpdCIsInVzZXJfY29zdF9yYXRlX2xpc3QiLCJ1c2VyX2NyZWF0ZSIsInVzZXJfZGlzYWJsZSIsInVzZXJfZWRpdCIsInVzZXJfZWRpdF9kYXlzX2FsbG93X29ubHkiLCJ1c2VyX2dyb3VwX3JvbGVfY3JlYXRlX2FsbCIsInVzZXJfZ3JvdXBfcm9sZV9kZWxldGVfYWxsIiwidXNlcl9ncm91cF9yb2xlX2VkaXRfYWxsIiwidXNlcl9ncm91cF9yb2xlc19saXN0X2FsbCIsInVzZXJfbGlzdCIsInVzZXJfbGlzdF9hbGwiLCJ1c2VyX21hc3NfYWN0aXZhdGlvbiIsInVzZXJfcHJvZHVjdGl2aXR5X2NyZWF0ZSIsInVzZXJfcHJvZHVjdGl2aXR5X2Rpc2FibGUiLCJ1c2VyX3Byb2R1Y3Rpdml0eV9lZGl0IiwidXNlcl9wcm9kdWN0aXZpdHlfZW5hYmxlIiwidXNlcl9wcm9kdWN0aXZpdHlfbWVudSIsInVzZXJfdGltZV9yZXN0cmljdGVkX3BlcmlvZF9jcmVhdGUiLCJ1c2VyX3RpbWVfcmVzdHJpY3RlZF9wZXJpb2RfZGVsZXRlIiwidXNlcl90aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX2VkaXQiLCJ1c2VyZ3JvdXBfY3JlYXRlX2FsbCIsInVzZXJncm91cF9kZWxldGVfYWxsIiwidXNlcmdyb3VwX2VkaXRfYWxsIiwidXNlcmdyb3VwX2xpc3RfYWxsIiwidXNlcmdyb3VwX21lbnUiLCJ1c2Vyc191c2VyX2dyb3VwX2NyZWF0ZV9hbGwiLCJ1c2Vyc191c2VyX2dyb3VwX2RlbGV0ZV9hbGwiLCJ1c2Vyc191c2VyX2dyb3VwX2VkaXRfYWxsIiwidXNlcnNfdXNlcl9ncm91cHNfbGlzdF9hbGwiXSwiaG9tZXBhZ2UiOm51bGx9.kShN7NXGoaz1oFro-yYNyIpIEcnNpo1GiB8SFGKFUJtDQoqyp1I1w-CMA8Kta3vWXnUZwx-y2z1yVSJaMpZbqQgKFlakpcf6351bZSL8IAUPExSfLz0HYYCWFx-Usx94BBTqosKsRhnT8PkPN3dGxs8-XTIEDi9gN-Pk9OSHmM5mPkTsaaxTY40M-F7Y0Up2y6s_lwFaX13CmstiYZSXzyKL9SUBBx-E6-8qQAfuKPIoZ_50jSGPW98-IkAcWwqO6yGf-M07dSfFZ2vLfwc3ulHm2p8jVSmRxJ_O43BEWQD5cvqGbVIvSMXkS4y98DL4Vencjjg27iu3CUJsDNBBTg] Content-Type:[application/json] Origin:[https://azure-function.timemanagerweb.com] Tenant-Name:[pruebas-dos] User-Agent:[Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36]]\nBody: map[query:query ($limit: Int, $orderBy: String, $orderDesc: Boolean, $page: Int) { BusinessMeta(limit: $limit, orderBy: $orderBy, orderDesc: $orderDesc, page: $page) { meta { hasNextPage hasPreviousPage limit next page pages previous total } rows { apply_procedures billable business_customer_code caseNumber closed_date confidential created_at discountAmount discountPercent displayName enableBusinessAllowedUsers expedient finishedDate fixRateValue fix_rate_value hourLimit hour_limit id internal_code isBillable limitAlert notes partialCharges partial_charges primary_external_code processing secondaryExternalCode secondary_external_code status statusMarking updated_at withIVA responsible { created_at daysAllow email enabled fullName id locale shortName superAdmin updated_at userType username } customer { id name primary_external_code company { id name } } practiceArea { id externalCode name } } } } variables:map[limit:100 orderBy:orderBy orderDesc:true page:10]]\n","time":"2025-07-30T10:50:45-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: POST https://apinewtm.com/graphql/ | Status: 200 | Duration: 3.0813641s\nHeaders: map[Access-Control-Allow-Credentials:[true] Access-Control-Allow-Origin:[https://azure-function.timemanagerweb.com] Access-Control-Expose-Headers:[link, access-control-allow-credentials] Cache-Control:[no-cache, private] Content-Type:[application/json] Date:[Wed, 30 Jul 2025 14:50:47 GMT] Server:[] Vary:[Authorization]]\nBody: {\"errors\":[{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",9,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",9,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",9,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",9,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",9,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",9,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",9,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",9,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",9,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",9,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",9,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",10,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",10,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",10,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",10,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",10,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",10,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",10,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",10,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",10,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",10,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",10,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",11,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",11,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",11,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",11,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",11,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",11,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",11,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",11,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",11,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",11,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",11,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",16,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",16,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",16,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",16,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",16,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",16,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",16,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",16,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",16,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",16,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",16,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",18,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",18,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",18,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",18,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",18,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",18,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",18,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",18,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",18,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",18,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",18,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",29,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",29,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",29,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",29,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",29,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",29,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",29,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",29,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",29,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",29,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",29,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",50,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",50,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",50,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",50,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",50,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",50,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",50,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",50,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",50,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",50,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",50,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",51,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",51,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",51,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",51,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",51,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",51,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",51,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",51,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",51,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",51,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",51,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",52,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",52,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",52,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",52,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",52,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",52,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",52,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",52,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",52,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",52,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",52,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",53,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",53,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",53,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",53,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",53,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",53,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",53,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",53,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",53,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",53,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",53,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",54,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",54,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",54,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",54,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",54,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",54,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",54,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",54,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",54,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",54,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",54,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",55,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",55,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",55,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",55,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",55,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",55,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",55,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",55,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",55,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",55,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",55,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",57,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",57,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",57,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",57,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",57,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",57,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",57,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",57,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",57,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",57,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",57,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",58,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",58,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",58,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",58,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",58,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",58,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",58,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",58,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",58,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",58,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",58,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",59,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",59,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",59,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",59,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",59,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",59,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",59,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",59,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",59,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",59,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",59,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",60,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",60,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",60,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",60,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",60,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",60,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",60,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",60,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",60,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",60,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",60,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",61,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",61,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",61,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",61,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",61,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",61,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",61,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",61,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",61,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",61,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",61,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",62,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",62,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",62,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",62,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",62,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",62,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",62,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",62,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",62,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",62,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",62,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",63,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",63,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",63,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",63,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",63,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",63,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",63,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",63,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",63,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",63,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",63,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",64,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",64,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",64,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",64,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",64,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",64,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",64,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",64,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",64,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",64,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",64,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",65,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",65,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",65,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",65,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",65,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",65,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",65,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",65,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",65,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",65,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",65,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",66,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",66,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",66,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",66,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",66,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",66,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",66,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",66,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",66,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",66,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",66,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",67,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",67,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",67,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",67,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",67,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",67,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",67,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",67,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",67,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",67,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",67,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",72,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",72,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",72,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",72,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",72,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",72,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",72,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",72,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",72,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",72,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",72,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",73,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",73,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",73,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",73,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",73,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",73,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",73,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",73,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",73,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",73,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",73,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",74,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",74,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",74,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",74,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",74,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",74,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",74,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",74,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",74,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",74,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",74,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",75,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",75,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",75,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",75,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",75,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",75,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",75,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",75,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",75,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",75,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",75,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",86,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",86,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",86,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",86,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",86,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",86,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",86,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",86,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",86,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",86,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",86,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",90,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",90,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",90,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",90,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",90,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",90,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",90,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",90,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",90,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",90,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",90,\"responsible\",\"username\"]}],\"data\":{\"BusinessMeta\":{\"meta\":{\"hasNextPage\":true,\"hasPreviousPage\":true,\"limit\":100,\"next\":11,\"page\":10,\"pages\":16,\"previous\":9,\"total\":1573},\"rows\":[{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-05-08 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000525-SR-000626 - Servicios Legales Tributarios y Regulatorios (Por Hora)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000525-SR-000626\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"18\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Socio USD. 230\\nAsociado Senior USD. 180\\nAsociado USD. 150\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000525-SR-000626\",\"processing\":false,\"secondaryExternalCode\":\"4109\",\"secondary_external_code\":\"4109\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"tmercado@emba.com\",\"enabled\":true,\"fullName\":\"Teddy Alberto Mercado Carrion\",\"id\":12,\"locale\":\"es\",\"shortName\":\"tmercado\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"tmercado@emba.com\"},\"customer\":{\"id\":\"530\",\"name\":\"RIDETECH BOL S.R.L.\",\"primary_external_code\":\"525\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"19\",\"externalCode\":\"AR09\",\"name\":\"Der. Tributario\\u0026 Plan.Fiscal\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-21 00:00:00\",\"confidential\":false,\"created_at\":\"2023-06-01 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000525-SR-000648 - Servicios Legales Corporativos (por hora)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000525-SR-000648\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"19\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000525-SR-000648\",\"processing\":false,\"secondaryExternalCode\":\"4164\",\"secondary_external_code\":\"4164\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-21 15:26:37\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"flanda@emba.com\",\"enabled\":true,\"fullName\":\"Carlos Fernando Landa Alejandro\",\"id\":18,\"locale\":\"es\",\"shortName\":\"flanda\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"flanda@emba.com\"},\"customer\":{\"id\":\"530\",\"name\":\"RIDETECH BOL S.R.L.\",\"primary_external_code\":\"525\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-10-18 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000904-SR-000742 - Servicios legales por hora\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000904-SR-000742\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"20\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000904-SR-000742\",\"processing\":false,\"secondaryExternalCode\":\"4525\",\"secondary_external_code\":\"4525\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"tmercado@emba.com\",\"enabled\":true,\"fullName\":\"Teddy Alberto Mercado Carrion\",\"id\":12,\"locale\":\"es\",\"shortName\":\"tmercado\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"tmercado@emba.com\"},\"customer\":{\"id\":\"549\",\"name\":\"SCALAOPM BOLIVIA S.R.L.\",\"primary_external_code\":\"904\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2020-04-29 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000344-SR-000254 - Servicio Legal Menssual (FM)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000344-SR-000254\",\"finishedDate\":null,\"fixRateValue\":800,\"fix_rate_value\":800,\"hourLimit\":0,\"hour_limit\":0,\"id\":\"143\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000344-SR-000254\",\"processing\":false,\"secondaryExternalCode\":\"2037\",\"secondary_external_code\":\"2037\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"485\",\"name\":\"PAGOS SRL\",\"primary_external_code\":\"344\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"30\",\"externalCode\":\"AR33\",\"name\":\"Servicios Legales Mensuales\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":\"\",\"caseNumber\":null,\"closed_date\":\"2024-03-28 00:00:00\",\"confidential\":false,\"created_at\":\"2020-12-30 05:00:00\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000135-SR-000319 - Servicios Legales Mensuales Retainer (FM)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000135-SR-000319\",\"finishedDate\":\"2024-02-29 00:00:00\",\"fixRateValue\":900,\"fix_rate_value\":900,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"144\",\"internal_code\":\"\",\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Las horas no utilizadaas en el mes seran acumulables solo al mes siguiente,\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000135-SR-000319\",\"processing\":false,\"secondaryExternalCode\":\"2432\",\"secondary_external_code\":\"2432\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-28 20:12:41\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"nicoln042001@gmail.com\",\"enabled\":true,\"fullName\":\"Daniel Marcelo Arredondo Zelada\",\"id\":6,\"locale\":\"es\",\"shortName\":\"darredon\",\"superAdmin\":false,\"updated_at\":\"2024-09-03 11:43:07\",\"userType\":1,\"username\":\"darredondo@emba.com.bo\"},\"customer\":{\"id\":\"487\",\"name\":\"PAN AMERICAN SILVER BOLIVIA S.A.\",\"primary_external_code\":\"135\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-15 00:00:00\",\"confidential\":false,\"created_at\":\"2018-02-20 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000120-SR-000012 - Servicios legales mensuales (FM)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000120-SR-000012\",\"finishedDate\":null,\"fixRateValue\":1000,\"fix_rate_value\":1000,\"hourLimit\":10,\"hour_limit\":10,\"id\":\"145\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000120-SR-000012\",\"processing\":false,\"secondaryExternalCode\":\"82\",\"secondary_external_code\":\"82\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-14 18:48:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"493\",\"name\":\"PEDIDOSYA SERVICIOS S.A.\",\"primary_external_code\":\"120\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2020-03-06 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000337-SR-000246 - Asesoramiento Legal Laboral (FM)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000337-SR-000246\",\"finishedDate\":null,\"fixRateValue\":1000,\"fix_rate_value\":1000,\"hourLimit\":0,\"hour_limit\":0,\"id\":\"146\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Confirmar con AMG la fecha de inicio del servicio\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000337-SR-000246\",\"processing\":false,\"secondaryExternalCode\":\"1991\",\"secondary_external_code\":\"1991\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"cmerino@emba.com\",\"enabled\":true,\"fullName\":\"Carlos Merino Troche\",\"id\":14,\"locale\":\"es\",\"shortName\":\"cmerino\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"cmerino@emba.com\"},\"customer\":{\"id\":\"524\",\"name\":\"RADIODIFUSORAS POPULARES S.A.\",\"primary_external_code\":\"337\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"17\",\"externalCode\":\"AR08\",\"name\":\"Der. Laboral y Seg. Soc.\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2019-10-07 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000245-SR-000200 - Servicios Legales Mensuales para etapa de inactividad\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000245-SR-000200\",\"finishedDate\":null,\"fixRateValue\":1500,\"fix_rate_value\":1500,\"hourLimit\":11,\"hour_limit\":11,\"id\":\"147\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"ESTE HONORARIO CORRE DESDE EL 01 DE NOVIEMBRE 20019\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000245-SR-000200\",\"processing\":false,\"secondaryExternalCode\":\"1715\",\"secondary_external_code\":\"1715\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-20 21:47:10\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"542\",\"name\":\"SAMSUNG ENGINEERING BOLIVIA S.A.\",\"primary_external_code\":\"245\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2019-07-08 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000894-SR-000126 - Servicios Legales Mensuales\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000894-SR-000126\",\"finishedDate\":null,\"fixRateValue\":1584,\"fix_rate_value\":1584,\"hourLimit\":0,\"hour_limit\":0,\"id\":\"148\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"PUSE TF02 PORQUE NO HAY EL MONTO REQUERIDO. TOMAR EN CUENTA QUE LA HORA ADICIONAL ES USD. 125.- SE REDUJO EL HONORARIO UN 12%, EL NUEVO HONORARIO QUE QUEDA EN $US 1584.- ES DESDE EL 01 DE JUNIO DE 20\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000894-SR-000126\",\"processing\":false,\"secondaryExternalCode\":\"1482\",\"secondary_external_code\":\"1482\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"554\",\"name\":\"SERVICIOS DE ALQUILERES PHOENIXTOWER S.A.\",\"primary_external_code\":\"894\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2020-01-27 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000119-SR-000228 - PERMANENCIA TEMPORAL POR UN A\\u00d1O POR TRABAJO- FRANKLIN GIOVANNY DIAZ DURAN\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000119-SR-000228\",\"finishedDate\":null,\"fixRateValue\":1360.06,\"fix_rate_value\":1360.06,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"453\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 9.466,65.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000119-SR-000228\",\"processing\":false,\"secondaryExternalCode\":\"1890\",\"secondary_external_code\":\"1890\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"480\",\"name\":\"OPERADORA CARIBE\\u00d1A SRL\",\"primary_external_code\":\"119\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2020-01-27 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000119-SR-000229 - C\\u00c9DULA DE EXTRANJERO- GUILLERMO JESUS CASTRILLO VALLES\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000119-SR-000229\",\"finishedDate\":null,\"fixRateValue\":257.76,\"fix_rate_value\":257.76,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"454\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1.794,47.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000119-SR-000229\",\"processing\":false,\"secondaryExternalCode\":\"1893\",\"secondary_external_code\":\"1893\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"480\",\"name\":\"OPERADORA CARIBE\\u00d1A SRL\",\"primary_external_code\":\"119\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2020-02-18 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000119-SR-000237 - C\\u00c9DULA DE EXTRANJERO- FRANKLIN GIOVANNY DIAZ DURAN\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000119-SR-000237\",\"finishedDate\":null,\"fixRateValue\":257.76,\"fix_rate_value\":257.76,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"455\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS.1.794,47.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000119-SR-000237\",\"processing\":false,\"secondaryExternalCode\":\"1951\",\"secondary_external_code\":\"1951\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"480\",\"name\":\"OPERADORA CARIBE\\u00d1A SRL\",\"primary_external_code\":\"119\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2020-07-22 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000119-SR-000265 - RESIDENCIA MERCOSUR PERMANENTE- DARWIN OMAR CARDENAS PORTILLO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000119-SR-000265\",\"finishedDate\":null,\"fixRateValue\":1020.83,\"fix_rate_value\":1020.83,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"456\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 7.105,93.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000119-SR-000265\",\"processing\":false,\"secondaryExternalCode\":\"2183\",\"secondary_external_code\":\"2183\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"480\",\"name\":\"OPERADORA CARIBE\\u00d1A SRL\",\"primary_external_code\":\"119\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2020-12-10 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000119-SR-000308 - RENOVACI\\u00d3N PERMANENCIA POR UN A\\u00d1O SIN CONTRATO EXTRANJERO- GUILLERMO JESUS CASTRILLO VALLES\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000119-SR-000308\",\"finishedDate\":null,\"fixRateValue\":1360.06,\"fix_rate_value\":1360.06,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"457\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 9.466.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000119-SR-000308\",\"processing\":false,\"secondaryExternalCode\":\"2405\",\"secondary_external_code\":\"2405\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"480\",\"name\":\"OPERADORA CARIBE\\u00d1A SRL\",\"primary_external_code\":\"119\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2020-12-10 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000119-SR-000309 - RENOVACI\\u00d3N PERMANENCIA POR UN A\\u00d1O SIN CONTRATO EXTRANJERO- RAFAEL RENE RAMIREZ HERNANDEZ\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000119-SR-000309\",\"finishedDate\":null,\"fixRateValue\":1370.06,\"fix_rate_value\":1370.06,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"458\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE 9.466,65.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000119-SR-000309\",\"processing\":false,\"secondaryExternalCode\":\"2406\",\"secondary_external_code\":\"2406\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"480\",\"name\":\"OPERADORA CARIBE\\u00d1A SRL\",\"primary_external_code\":\"119\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2020-12-23 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000119-SR-000314 - RENOVACI\\u00d3N C\\u00c9DULA DE EXTRANJERO- GUILLERMO JESUS CASTRILLO VALLES\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000119-SR-000314\",\"finishedDate\":null,\"fixRateValue\":257.76,\"fix_rate_value\":257.76,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"459\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE bS, 1,794,47.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000119-SR-000314\",\"processing\":false,\"secondaryExternalCode\":\"2417\",\"secondary_external_code\":\"2417\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"480\",\"name\":\"OPERADORA CARIBE\\u00d1A SRL\",\"primary_external_code\":\"119\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2020-12-31 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000119-SR-000320 - RENOVACI\\u00d3N C\\u00c9DULA DE EXTRANJERO- RAFAEL RENE RAMIREZ HERNANDEZ\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000119-SR-000320\",\"finishedDate\":null,\"fixRateValue\":257.76,\"fix_rate_value\":257.76,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"460\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1.794,47.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000119-SR-000320\",\"processing\":false,\"secondaryExternalCode\":\"2434\",\"secondary_external_code\":\"2434\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"480\",\"name\":\"OPERADORA CARIBE\\u00d1A SRL\",\"primary_external_code\":\"119\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2021-01-28 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000119-SR-000328 - RENOVACI\\u00d3N PERMANENCIA TEMPORAL POR UN A\\u00d1O POR TRABAJO- FRANKLIN GIOVANNY DIAZ DURAN\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000119-SR-000328\",\"finishedDate\":null,\"fixRateValue\":1357.89,\"fix_rate_value\":1357.89,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"461\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 9.444,65.- INCLUYEN GASTOS E IMPUESTOS DE LEY\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000119-SR-000328\",\"processing\":false,\"secondaryExternalCode\":\"2493\",\"secondary_external_code\":\"2493\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"480\",\"name\":\"OPERADORA CARIBE\\u00d1A SRL\",\"primary_external_code\":\"119\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2022-01-18 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000119-SR-000453 - RENOVACION 3 CEDULA EXTRANJERA - RAFAEL RENE RAMIREZ HERNADEZ\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000119-SR-000453\",\"finishedDate\":null,\"fixRateValue\":257.76,\"fix_rate_value\":257.76,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"463\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1794.47 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000119-SR-000453\",\"processing\":false,\"secondaryExternalCode\":\"3107\",\"secondary_external_code\":\"3107\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"480\",\"name\":\"OPERADORA CARIBE\\u00d1A SRL\",\"primary_external_code\":\"119\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2022-02-10 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000119-SR-000467 - SEGUNDA RENOVACI\\u00d3N PERMANENCIA TEMPORAL POR UN A\\u00d1O POR TRABAJO- FRANKLIN GIOVANNY DIAZ DURAN\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000119-SR-000467\",\"finishedDate\":null,\"fixRateValue\":1356.89,\"fix_rate_value\":1356.89,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"464\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 9444.15 INCLUYEN GASTOS E IMPUESTO DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000119-SR-000467\",\"processing\":false,\"secondaryExternalCode\":\"3161\",\"secondary_external_code\":\"3161\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"480\",\"name\":\"OPERADORA CARIBE\\u00d1A SRL\",\"primary_external_code\":\"119\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2022-02-16 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000119-SR-000476 - RENOVACI\\u00d3N SEGUNDA C\\u00c9DULA DE EXTRANJERO- FRANKLIN GIOVANNY DIAZ DURAN\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000119-SR-000476\",\"finishedDate\":null,\"fixRateValue\":257.76,\"fix_rate_value\":257.76,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"465\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LO HONORARIOS DE BS. 1974.47 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000119-SR-000476\",\"processing\":false,\"secondaryExternalCode\":\"3180\",\"secondary_external_code\":\"3180\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"480\",\"name\":\"OPERADORA CARIBE\\u00d1A SRL\",\"primary_external_code\":\"119\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2022-05-05 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000119-SR-000494 - OBTENCION DE VISA MERCOSUR POR 2 A\\u00d1OS - EDGARDO NICANOR JESUS CHUFANDAMA RUMUACCA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000119-SR-000494\",\"finishedDate\":null,\"fixRateValue\":840.37,\"fix_rate_value\":840.37,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"466\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 5849.10 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000119-SR-000494\",\"processing\":false,\"secondaryExternalCode\":\"3373\",\"secondary_external_code\":\"3373\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"480\",\"name\":\"OPERADORA CARIBE\\u00d1A SRL\",\"primary_external_code\":\"119\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2022-12-19 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000119-SR-000562 - PERMANENCIA INDEFINIDA - GUILLERMO JESUS CASTRILLO VALLES\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000119-SR-000562\",\"finishedDate\":null,\"fixRateValue\":2306.18,\"fix_rate_value\":2306.18,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"467\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 16051.19 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000119-SR-000562\",\"processing\":false,\"secondaryExternalCode\":\"3778\",\"secondary_external_code\":\"3778\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"480\",\"name\":\"OPERADORA CARIBE\\u00d1A SRL\",\"primary_external_code\":\"119\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-14 00:00:00\",\"confidential\":false,\"created_at\":\"2018-09-01 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000120-SR-000029 - Honorarios Sindico (FM)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000120-SR-000029\",\"finishedDate\":null,\"fixRateValue\":200,\"fix_rate_value\":200,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"468\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000120-SR-000029\",\"processing\":false,\"secondaryExternalCode\":\"83\",\"secondary_external_code\":\"83\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"493\",\"name\":\"PEDIDOSYA SERVICIOS S.A.\",\"primary_external_code\":\"120\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-09-11 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000300-SR-000707 - Elaboraci\\u00f3n de Informe Legal - Posibles Reclamos Fedeple\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000300-SR-000707\",\"finishedDate\":null,\"fixRateValue\":1700,\"fix_rate_value\":1700,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"475\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000300-SR-000707\",\"processing\":false,\"secondaryExternalCode\":\"4338\",\"secondary_external_code\":\"4338\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"amorenog@emba.com\",\"enabled\":true,\"fullName\":\"Andres Moreno Gutierrez\",\"id\":5,\"locale\":\"es\",\"shortName\":\"amoreno\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"amorenog@emba.com\"},\"customer\":{\"id\":\"501\",\"name\":\"PIL ANDINA S.A.\",\"primary_external_code\":\"300\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"6\",\"externalCode\":\"AR17\",\"name\":\"Der.Comercial \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-09-12 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000300-SR-000708 - Elaboraci\\u00f3n informe legal - Posibles medidas legales planta de leche\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000300-SR-000708\",\"finishedDate\":null,\"fixRateValue\":1700,\"fix_rate_value\":1700,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"476\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000300-SR-000708\",\"processing\":false,\"secondaryExternalCode\":\"4339\",\"secondary_external_code\":\"4339\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"amorenog@emba.com\",\"enabled\":true,\"fullName\":\"Andres Moreno Gutierrez\",\"id\":5,\"locale\":\"es\",\"shortName\":\"amoreno\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"amorenog@emba.com\"},\"customer\":{\"id\":\"501\",\"name\":\"PIL ANDINA S.A.\",\"primary_external_code\":\"300\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"6\",\"externalCode\":\"AR17\",\"name\":\"Der.Comercial \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2023-04-24 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000571-SR-000619 - Recuperaci\\u00f3n Deuda Surenergy SRL\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000571-SR-000619\",\"finishedDate\":null,\"fixRateValue\":8620.69,\"fix_rate_value\":8620.69,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"479\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Honorario variable y sujeto a recuperaci\\u00f3n de deuda de Bs.2000010. El honorario solamente ser\\u00e1 exigible en caso de recuperar la deuda.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000571-SR-000619\",\"processing\":false,\"secondaryExternalCode\":\"4067\",\"secondary_external_code\":\"4067\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"aaraoz@emba.com\",\"enabled\":true,\"fullName\":\"Alvaro Araoz Ardaya\",\"id\":17,\"locale\":\"es\",\"shortName\":\"aaraoz\",\"superAdmin\":false,\"updated_at\":\"2024-12-04 15:29:19\",\"userType\":1,\"username\":\"aaraoz@emba.com\"},\"customer\":{\"id\":\"504\",\"name\":\"PLASTIFORTE SRL\",\"primary_external_code\":\"571\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"5\",\"externalCode\":\"AR02\",\"name\":\"Der.Civil \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-20 00:00:00\",\"confidential\":false,\"created_at\":\"2023-04-24 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000571-SR-000620 - Servicios Legales Mensuales\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000571-SR-000620\",\"finishedDate\":null,\"fixRateValue\":1289.94,\"fix_rate_value\":1289.94,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"480\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000571-SR-000620\",\"processing\":false,\"secondaryExternalCode\":\"4066\",\"secondary_external_code\":\"4066\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-20 18:13:01\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"aaraoz@emba.com\",\"enabled\":true,\"fullName\":\"Alvaro Araoz Ardaya\",\"id\":17,\"locale\":\"es\",\"shortName\":\"aaraoz\",\"superAdmin\":false,\"updated_at\":\"2024-12-04 15:29:19\",\"userType\":1,\"username\":\"aaraoz@emba.com\"},\"customer\":{\"id\":\"504\",\"name\":\"PLASTIFORTE SRL\",\"primary_external_code\":\"571\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"6\",\"externalCode\":\"AR17\",\"name\":\"Der.Comercial \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-02-23 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000536-SR-000588 - RESIDENCIA MERCOSUR DE 2 A\\u00d1OS - LUIGI MICHEL MEZA HERRERA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000536-SR-000588\",\"finishedDate\":null,\"fixRateValue\":600,\"fix_rate_value\":600,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"481\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 600 INCLUYE GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000536-SR-000588\",\"processing\":false,\"secondaryExternalCode\":\"3926\",\"secondary_external_code\":\"3926\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"509\",\"name\":\"PRECISION SPA\",\"primary_external_code\":\"536\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-02-23 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000536-SR-000589 - RESIDENCIA MERCOSUR DE 2 A\\u00d1OS - LIDIA MARINA ZAVALA ACU\\u00d1A\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000536-SR-000589\",\"finishedDate\":null,\"fixRateValue\":600,\"fix_rate_value\":600,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"482\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000536-SR-000589\",\"processing\":false,\"secondaryExternalCode\":\"3927\",\"secondary_external_code\":\"3927\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"509\",\"name\":\"PRECISION SPA\",\"primary_external_code\":\"536\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-02-23 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000536-SR-000590 - RESIDENCIA MERCOSUR DE 2 A\\u00d1OS - SEBASTIAN MATEO MEZA ZAVALA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000536-SR-000590\",\"finishedDate\":null,\"fixRateValue\":600,\"fix_rate_value\":600,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"483\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 600 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000536-SR-000590\",\"processing\":false,\"secondaryExternalCode\":\"3928\",\"secondary_external_code\":\"3928\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"509\",\"name\":\"PRECISION SPA\",\"primary_external_code\":\"536\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-06-29 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000388-SR-000656 - Defensa Tributaria - Vista de Cargo\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000388-SR-000656\",\"finishedDate\":null,\"fixRateValue\":5500,\"fix_rate_value\":5500,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"484\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"El Honorario es 605 al inicio del trabajo 28\\/06\\/2023 y 40% al final. El honorario solo incluye hasta la vista de cargo. Tiene un honorario de \\u00e9xito del 2%\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000388-SR-000656\",\"processing\":false,\"secondaryExternalCode\":\"4205\",\"secondary_external_code\":\"4205\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 14:06:30\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"rburgos@emba.com\",\"enabled\":true,\"fullName\":\"Edwin Rodrigo Burgos Fernandez\",\"id\":16,\"locale\":\"es\",\"shortName\":\"rburgos\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rburgos@emba.com\"},\"customer\":{\"id\":\"512\",\"name\":\"PREMONOR BOLIVIA S.R.L\",\"primary_external_code\":\"388\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"19\",\"externalCode\":\"AR09\",\"name\":\"Der. Tributario\\u0026 Plan.Fiscal\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2023-12-12 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000911-SR-000894 - Asesoramiento Legal\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000911-SR-000894\",\"finishedDate\":null,\"fixRateValue\":1000,\"fix_rate_value\":1000,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"490\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000911-SR-000894\",\"processing\":false,\"secondaryExternalCode\":\"4650\",\"secondary_external_code\":\"4650\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"cmerino@emba.com\",\"enabled\":true,\"fullName\":\"Carlos Merino Troche\",\"id\":14,\"locale\":\"es\",\"shortName\":\"cmerino\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"cmerino@emba.com\"},\"customer\":{\"id\":\"522\",\"name\":\"RADIO FIDES SANTA CRUZ SRL\",\"primary_external_code\":\"911\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-21 00:00:00\",\"confidential\":false,\"created_at\":\"2023-10-09 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000525-SR-000731 - Ampliaci\\u00f3n de Objeto Social\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000525-SR-000731\",\"finishedDate\":null,\"fixRateValue\":2200,\"fix_rate_value\":2200,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"491\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Cambio de l\\u00edder de Luis a Fernando\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000525-SR-000731\",\"processing\":false,\"secondaryExternalCode\":\"4501\",\"secondary_external_code\":\"4501\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-21 15:15:08\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"flanda@emba.com\",\"enabled\":true,\"fullName\":\"Carlos Fernando Landa Alejandro\",\"id\":18,\"locale\":\"es\",\"shortName\":\"flanda\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"flanda@emba.com\"},\"customer\":{\"id\":\"530\",\"name\":\"RIDETECH BOL S.R.L.\",\"primary_external_code\":\"525\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-21 00:00:00\",\"confidential\":false,\"created_at\":\"2023-10-09 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000525-SR-000732 - Transferencia de cuotas de capital\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000525-SR-000732\",\"finishedDate\":null,\"fixRateValue\":1500,\"fix_rate_value\":1500,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"492\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Se cambio de l\\u00edder de Luis a Fernando.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000525-SR-000732\",\"processing\":false,\"secondaryExternalCode\":\"4502\",\"secondary_external_code\":\"4502\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 14:22:56\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"flanda@emba.com\",\"enabled\":true,\"fullName\":\"Carlos Fernando Landa Alejandro\",\"id\":18,\"locale\":\"es\",\"shortName\":\"flanda\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"flanda@emba.com\"},\"customer\":{\"id\":\"530\",\"name\":\"RIDETECH BOL S.R.L.\",\"primary_external_code\":\"525\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-21 00:00:00\",\"confidential\":false,\"created_at\":\"2023-10-25 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000525-SR-000754 - Domicilio Legal Sucursal Cochabamba (oficinas MB)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000525-SR-000754\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"493\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000525-SR-000754\",\"processing\":false,\"secondaryExternalCode\":\"4560\",\"secondary_external_code\":\"4560\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-21 15:24:02\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"flanda@emba.com\",\"enabled\":true,\"fullName\":\"Carlos Fernando Landa Alejandro\",\"id\":18,\"locale\":\"es\",\"shortName\":\"flanda\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"flanda@emba.com\"},\"customer\":{\"id\":\"530\",\"name\":\"RIDETECH BOL S.R.L.\",\"primary_external_code\":\"525\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-02-27 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000550-SR-000592 - Informe Legal - an\\u00e1lisis regulatorio\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000550-SR-000592\",\"finishedDate\":null,\"fixRateValue\":1423.5,\"fix_rate_value\":1423.5,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"495\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000550-SR-000592\",\"processing\":false,\"secondaryExternalCode\":\"3938\",\"secondary_external_code\":\"3938\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"531\",\"name\":\"RIPIO HOLDING INC\",\"primary_external_code\":\"550\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"4\",\"externalCode\":\"AR16\",\"name\":\"Der.Mercantil-Banca\\u0026Finanzas\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-08-24 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000195-SR-000696 - AEMP\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000195-SR-000696\",\"finishedDate\":null,\"fixRateValue\":350,\"fix_rate_value\":350,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"497\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000195-SR-000696\",\"processing\":false,\"secondaryExternalCode\":\"4271\",\"secondary_external_code\":\"4271\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"rburgos@emba.com\",\"enabled\":true,\"fullName\":\"Edwin Rodrigo Burgos Fernandez\",\"id\":16,\"locale\":\"es\",\"shortName\":\"rburgos\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rburgos@emba.com\"},\"customer\":{\"id\":\"540\",\"name\":\"SABORES BOLIVIANOS ALEMANES S.R.L.\",\"primary_external_code\":\"195\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"19\",\"externalCode\":\"AR09\",\"name\":\"Der. Tributario\\u0026 Plan.Fiscal\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":\"\",\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2019-10-07 05:00:00\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000245-SR-000201 - S\\u00cdNDICO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000245-SR-000201\",\"finishedDate\":null,\"fixRateValue\":750,\"fix_rate_value\":750,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"503\",\"internal_code\":\"\",\"isBillable\":true,\"limitAlert\":null,\"notes\":\"EL HONORARIO CORRE DESDE EL 01 DE NOVIEMBRE\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000245-SR-000201\",\"processing\":false,\"secondaryExternalCode\":\"1717\",\"secondary_external_code\":\"1717\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"542\",\"name\":\"SAMSUNG ENGINEERING BOLIVIA S.A.\",\"primary_external_code\":\"245\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-20 00:00:00\",\"confidential\":false,\"created_at\":\"2023-11-30 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000627-SR-000782 - Test Any prueba\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000627-SR-000782\",\"finishedDate\":null,\"fixRateValue\":600,\"fix_rate_value\":600,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"507\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000627-SR-000782\",\"processing\":false,\"secondaryExternalCode\":\"4621\",\"secondary_external_code\":\"4621\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-20 19:26:52\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"aaraoz@emba.com\",\"enabled\":true,\"fullName\":\"Alvaro Araoz Ardaya\",\"id\":17,\"locale\":\"es\",\"shortName\":\"aaraoz\",\"superAdmin\":false,\"updated_at\":\"2024-12-04 15:29:19\",\"userType\":1,\"username\":\"aaraoz@emba.com\"},\"customer\":{\"id\":\"553\",\"name\":\"SERVECO\",\"primary_external_code\":\"627\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"6\",\"externalCode\":\"AR17\",\"name\":\"Der.Comercial \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-01 00:00:00\",\"confidential\":false,\"created_at\":\"2019-12-03 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000894-SR-000219 - Representante Legal (FM)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000894-SR-000219\",\"finishedDate\":null,\"fixRateValue\":2000,\"fix_rate_value\":2000,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"508\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"2000 m\\u00e1s IVA cobrar desde el 01 de diciembre\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000894-SR-000219\",\"processing\":false,\"secondaryExternalCode\":\"1811\",\"secondary_external_code\":\"1811\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-01 14:30:05\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"554\",\"name\":\"SERVICIOS DE ALQUILERES PHOENIXTOWER S.A.\",\"primary_external_code\":\"894\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-11-23 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000894-SR-000777 - Outsourcing para llevar libros contables locales\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000894-SR-000777\",\"finishedDate\":null,\"fixRateValue\":900,\"fix_rate_value\":900,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"515\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"El honorario incluye un take over de USD 10,000 a ser cancelado 50% a la emisi\\u00f3n del contrato, 40% en diciembre 2023 y 10% a la entrega de la informaci\\u00f3n inicial a la compa\\u00f1\\u00eda y USD 900 por mes a part\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000894-SR-000777\",\"processing\":false,\"secondaryExternalCode\":\"4613\",\"secondary_external_code\":\"4613\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 13:53:51\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"cdelgado@emba.com\",\"enabled\":true,\"fullName\":\"Cristhian Delgado Ramirez\",\"id\":13,\"locale\":\"es\",\"shortName\":\"cdelgado\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"cdelgado@emba.com\"},\"customer\":{\"id\":\"554\",\"name\":\"SERVICIOS DE ALQUILERES PHOENIXTOWER S.A.\",\"primary_external_code\":\"894\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"24\",\"externalCode\":\"AR05\",\"name\":\"Outsourcing\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2019-02-12 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000188-SR-000039 - Servicios legales mensuales (FM)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000188-SR-000039\",\"finishedDate\":null,\"fixRateValue\":1331.1,\"fix_rate_value\":1331.1,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"521\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Se debe adjuntar Reporte de horas\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000188-SR-000039\",\"processing\":false,\"secondaryExternalCode\":\"1143\",\"secondary_external_code\":\"1143\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:25:59\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"paramayo@emba.com\",\"enabled\":true,\"fullName\":\"Paul Aramayo Salinas\",\"id\":9,\"locale\":\"es\",\"shortName\":\"paramayo\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"paramayo@emba.com\"},\"customer\":{\"id\":\"557\",\"name\":\"SIEMENS ENERGY S.A.\",\"primary_external_code\":\"188\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2019-02-22 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000188-SR-000041 - PERMANENCIA TEMPORAL POR TRABAJO DE UN A\\u00d1O - JOSE LUIS LOPEZ MEDINA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000188-SR-000041\",\"finishedDate\":null,\"fixRateValue\":1306.75,\"fix_rate_value\":1306.75,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"522\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 9.905,49.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000188-SR-000041\",\"processing\":false,\"secondaryExternalCode\":\"1149\",\"secondary_external_code\":\"1149\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"557\",\"name\":\"SIEMENS ENERGY S.A.\",\"primary_external_code\":\"188\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2019-08-09 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000188-SR-000141 - AUTORIZACI\\u00d3N DE CARTA DE INVITACI\\u00d3N - ALI MAGHSOUDI\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000188-SR-000141\",\"finishedDate\":null,\"fixRateValue\":330.17,\"fix_rate_value\":330.17,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"523\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 2.298,39.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000188-SR-000141\",\"processing\":false,\"secondaryExternalCode\":\"1556\",\"secondary_external_code\":\"1556\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"557\",\"name\":\"SIEMENS ENERGY S.A.\",\"primary_external_code\":\"188\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2019-09-13 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000188-SR-000186 - AUTORIZACI\\u00d3N DE CARTA DE INVITACI\\u00d3N - KJELL IVAR OTTOSSON\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000188-SR-000186\",\"finishedDate\":null,\"fixRateValue\":330.17,\"fix_rate_value\":330.17,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"524\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 2.298,39.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000188-SR-000186\",\"processing\":false,\"secondaryExternalCode\":\"1667\",\"secondary_external_code\":\"1667\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"557\",\"name\":\"SIEMENS ENERGY S.A.\",\"primary_external_code\":\"188\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2019-11-18 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000188-SR-000216 - RENOVACION PERMANENCIA TEMPORAL DE 1 A\\u00d1O SIN CONTRATO - GENEBRALDO ANTONIO URDANETA MONROY\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000188-SR-000216\",\"finishedDate\":null,\"fixRateValue\":1356.89,\"fix_rate_value\":1356.89,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"525\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"MONTO BS . 9444,15 - INCLUYE HONORARIOS MAS IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000188-SR-000216\",\"processing\":false,\"secondaryExternalCode\":\"1784\",\"secondary_external_code\":\"1784\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"557\",\"name\":\"SIEMENS ENERGY S.A.\",\"primary_external_code\":\"188\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2019-12-20 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000188-SR-000222 - CEDULA DE EXTRANJERO- GENEBRALDO ANTONIO URDANETA MONROY\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000188-SR-000222\",\"finishedDate\":null,\"fixRateValue\":257.76,\"fix_rate_value\":257.76,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"526\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"MONTO FACTURADO BS. 1794.47, HONORARIOS MAS IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000188-SR-000222\",\"processing\":false,\"secondaryExternalCode\":\"1849\",\"secondary_external_code\":\"1849\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"557\",\"name\":\"SIEMENS ENERGY S.A.\",\"primary_external_code\":\"188\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2021-08-10 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000188-SR-000408 - PERMANENCIA TRANSITORIA POR TRABAJO DE 30 DIAS - OLEGARIO AGUILAR ARMENTA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000188-SR-000408\",\"finishedDate\":null,\"fixRateValue\":330.17,\"fix_rate_value\":330.17,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"527\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS BS. 2298.39 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000188-SR-000408\",\"processing\":false,\"secondaryExternalCode\":\"2873\",\"secondary_external_code\":\"2873\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"557\",\"name\":\"SIEMENS ENERGY S.A.\",\"primary_external_code\":\"188\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2022-08-18 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000188-SR-000518 - VISA DE OBJETO DETERMINADO 30 DIAS AEROPUERTO - DIEGO HECTOR VAZQUEZ\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000188-SR-000518\",\"finishedDate\":null,\"fixRateValue\":330.17,\"fix_rate_value\":330.17,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"528\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS.2298.39 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000188-SR-000518\",\"processing\":false,\"secondaryExternalCode\":\"3541\",\"secondary_external_code\":\"3541\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"557\",\"name\":\"SIEMENS ENERGY S.A.\",\"primary_external_code\":\"188\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2023-10-19 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000188-SR-000747 - OBTENCI\\u00d3N DE 13 ANTECEDENTES REJAP PARA LA ADUANA NACIONAL - PERSONAL SIEMENS ENERGY\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000188-SR-000747\",\"finishedDate\":null,\"fixRateValue\":222.7,\"fix_rate_value\":222.7,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"529\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"GASTOS DE IMPUESTOS Y HONORARIOS POR DEFINIR.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000188-SR-000747\",\"processing\":false,\"secondaryExternalCode\":\"4531\",\"secondary_external_code\":\"4531\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"557\",\"name\":\"SIEMENS ENERGY S.A.\",\"primary_external_code\":\"188\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2019-02-15 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000040 - PERMANENCIA TEMPORAL DE UN A\\u00d1O - SINAN OZCAN\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000040\",\"finishedDate\":null,\"fixRateValue\":1306.75,\"fix_rate_value\":1306.75,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"530\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000040\",\"processing\":false,\"secondaryExternalCode\":\"1146\",\"secondary_external_code\":\"1146\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2019-02-27 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000042 - PERMANENCIA TEMPORAL DE UN A\\u00d1O CON CARTA DE INVITACION DE TRABAJO MARIO FERMIZA PIDO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000042\",\"finishedDate\":null,\"fixRateValue\":1306.82,\"fix_rate_value\":1306.82,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"531\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 9.095,49.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000042\",\"processing\":false,\"secondaryExternalCode\":\"1168\",\"secondary_external_code\":\"1168\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2019-02-27 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000043 - PERMANENCIA TEMPORAL DE 1 A\\u00d1O - ERIC MAXIMILIAN SVEDIN BAROUTSIS\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000043\",\"finishedDate\":null,\"fixRateValue\":1306.82,\"fix_rate_value\":1306.82,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"532\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 9095, 49.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000043\",\"processing\":false,\"secondaryExternalCode\":\"1169\",\"secondary_external_code\":\"1169\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2019-02-27 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000044 - VISA DE OBJETO DETERMINADO 90 - D\\u00cdAS AZAD KABODI\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000044\",\"finishedDate\":null,\"fixRateValue\":728.53,\"fix_rate_value\":728.53,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"533\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 5.070,58.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000044\",\"processing\":false,\"secondaryExternalCode\":\"1170\",\"secondary_external_code\":\"1170\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2019-02-27 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000045 - VISA DE OBJETO DETERMINADO 90 - D\\u00cdAS FABIAN KLUESENER\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000045\",\"finishedDate\":null,\"fixRateValue\":728.53,\"fix_rate_value\":728.53,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"534\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 5.070,58.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000045\",\"processing\":false,\"secondaryExternalCode\":\"1171\",\"secondary_external_code\":\"1171\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2019-03-13 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000047 - VISA DE OBJETO DETERMINADO 90 D\\u00cdAS - SAM ELIAS AXELSSON\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000047\",\"finishedDate\":null,\"fixRateValue\":771.3,\"fix_rate_value\":771.3,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"535\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 5.368,22.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000047\",\"processing\":false,\"secondaryExternalCode\":\"1202\",\"secondary_external_code\":\"1202\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2019-03-13 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000048 - PERMANENCIA TEMPORAL DE 1 A\\u00d1O SIN CONTRATO EXTRANJERO- JONAS KREYER\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000048\",\"finishedDate\":null,\"fixRateValue\":1356.89,\"fix_rate_value\":1356.89,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"536\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 9.444,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000048\",\"processing\":false,\"secondaryExternalCode\":\"1204\",\"secondary_external_code\":\"1204\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2019-03-13 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000049 - AMPLIACI\\u00d3N DE VISA D OBJETO DETERMINADO 30 D\\u00cdAS -SWARAJ ANAND\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000049\",\"finishedDate\":null,\"fixRateValue\":633.76,\"fix_rate_value\":633.76,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"537\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 4.411,62.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000049\",\"processing\":false,\"secondaryExternalCode\":\"1205\",\"secondary_external_code\":\"1205\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2019-03-13 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000050 - VISA DE OBJETO DETERMINADO 90 D\\u00cdAS - CARSTEN NICK NEU\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000050\",\"finishedDate\":null,\"fixRateValue\":771.26,\"fix_rate_value\":771.26,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"538\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 5.368,22.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000050\",\"processing\":false,\"secondaryExternalCode\":\"1206\",\"secondary_external_code\":\"1206\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2019-03-13 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000051 - VISA DE OBJETO DETERMINADO 90 D\\u00cdAS - MICHAL MAKSYMILIAN LIS\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000051\",\"finishedDate\":null,\"fixRateValue\":771.26,\"fix_rate_value\":771.26,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"539\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 5.368,22.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000051\",\"processing\":false,\"secondaryExternalCode\":\"1203\",\"secondary_external_code\":\"1203\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2019-03-21 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000054 - PERMANENCIA POR UN A\\u00d1O SIN CONTRATO EXTRANJERO- SWARAJ ANAND\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000054\",\"finishedDate\":null,\"fixRateValue\":1356.89,\"fix_rate_value\":1356.89,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"540\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 9.444,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000054\",\"processing\":false,\"secondaryExternalCode\":\"1239\",\"secondary_external_code\":\"1239\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2019-03-21 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000055 - AMPLIACION VISA DE TURISMO- GUNCHA AFSARI\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000055\",\"finishedDate\":null,\"fixRateValue\":446.84,\"fix_rate_value\":446.84,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"541\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 3.110,12.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000055\",\"processing\":false,\"secondaryExternalCode\":\"1240\",\"secondary_external_code\":\"1240\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2019-03-21 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000056 - AUTORIZACI\\u00d3N DE CARTA DE INVITACI\\u00d3N - EMIL ERIK MELIN\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000056\",\"finishedDate\":null,\"fixRateValue\":330.17,\"fix_rate_value\":330.17,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"542\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 2.298,39.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000056\",\"processing\":false,\"secondaryExternalCode\":\"1241\",\"secondary_external_code\":\"1241\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2019-03-21 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000057 - AUTORIZACI\\u00d3N DE CARTA DE INVITACI\\u00d3N - COLM CHRISTOPHER KEANE\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000057\",\"finishedDate\":null,\"fixRateValue\":330.16,\"fix_rate_value\":330.16,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"543\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 2.298,39.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000057\",\"processing\":false,\"secondaryExternalCode\":\"1242\",\"secondary_external_code\":\"1242\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2019-03-21 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000058 - AUTORIZACI\\u00d3N DE CARTA DE INVITACI\\u00d3N - DAN OLOF BERTIL SANDHOLM\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000058\",\"finishedDate\":null,\"fixRateValue\":330.17,\"fix_rate_value\":330.17,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"544\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 2.298,39.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000058\",\"processing\":false,\"secondaryExternalCode\":\"1243\",\"secondary_external_code\":\"1243\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2019-03-21 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000059 - VISA DE OBJETO DETERMINADO 30 D\\u00cdAS - LAMPPELA SEPPO JUHANI\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000059\",\"finishedDate\":null,\"fixRateValue\":581.03,\"fix_rate_value\":581.03,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"545\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 4.044,61.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000059\",\"processing\":false,\"secondaryExternalCode\":\"1244\",\"secondary_external_code\":\"1244\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2019-03-21 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000060 - VISA OBJETO DETERMINADO 30 D\\u00cdAS - MICHAEL SZOBOTKA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000060\",\"finishedDate\":null,\"fixRateValue\":581.03,\"fix_rate_value\":581.03,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"546\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 4.044,61.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000060\",\"processing\":false,\"secondaryExternalCode\":\"1245\",\"secondary_external_code\":\"1245\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2019-03-21 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000061 - RESIDENCIA MERCOSUR POR 2 A\\u00d1OS - ALEXANDRE DOS SANTOS\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000061\",\"finishedDate\":null,\"fixRateValue\":840.37,\"fix_rate_value\":840.37,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"547\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 5.849,10.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000061\",\"processing\":false,\"secondaryExternalCode\":\"1247\",\"secondary_external_code\":\"1247\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2019-03-21 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000062 - RENOVACION CEDULA DE EXTRANJERO- MARIO FERMIZA PIDO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000062\",\"finishedDate\":null,\"fixRateValue\":257.76,\"fix_rate_value\":257.76,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"548\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1.794,47.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000062\",\"processing\":false,\"secondaryExternalCode\":\"1249\",\"secondary_external_code\":\"1249\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2019-03-21 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000063 - RENOVACION CEDULA DE EXTRANJERO- JOSE LUIS LOPEZ MEDINA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000063\",\"finishedDate\":null,\"fixRateValue\":257.76,\"fix_rate_value\":257.76,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"549\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1.794,47.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000063\",\"processing\":false,\"secondaryExternalCode\":\"1250\",\"secondary_external_code\":\"1250\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2019-03-21 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000064 - RENOVACION CEDULA DE EXTRANJERO- RICARDO ALVES SANTANA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000064\",\"finishedDate\":null,\"fixRateValue\":257.76,\"fix_rate_value\":257.76,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"550\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1.794,47.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000064\",\"processing\":false,\"secondaryExternalCode\":\"1251\",\"secondary_external_code\":\"1251\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2019-03-22 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000066 - CEDULA DE EXTRANJERO -ERIC MAXIMILIAN SVEDIN BAROUTSIS\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000066\",\"finishedDate\":null,\"fixRateValue\":257.76,\"fix_rate_value\":257.76,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"551\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1.794,47.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000066\",\"processing\":false,\"secondaryExternalCode\":\"1255\",\"secondary_external_code\":\"1255\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2019-03-22 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000067 - CEDULA DE EXTRANJERO- SINAN OZCAN\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000067\",\"finishedDate\":null,\"fixRateValue\":257.76,\"fix_rate_value\":257.76,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"552\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1.794,47.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000067\",\"processing\":false,\"secondaryExternalCode\":\"1256\",\"secondary_external_code\":\"1256\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2019-03-22 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000068 - PERMANENCIA POR UN A\\u00d1O SIN CONTRATO EXTRANJERO- GUNNAR FRANS EMIL JANSSON\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000068\",\"finishedDate\":null,\"fixRateValue\":1356.89,\"fix_rate_value\":1356.89,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"553\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARISO DE BS. 9.444,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000068\",\"processing\":false,\"secondaryExternalCode\":\"1257\",\"secondary_external_code\":\"1257\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2019-03-26 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000069 - PERMANENCIA POR UN A\\u00d1O SIN CONTRATO EXTRANJERO- PAUL PHILIP WILLMANN\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000069\",\"finishedDate\":null,\"fixRateValue\":1356.89,\"fix_rate_value\":1356.89,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"554\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 9.444,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000069\",\"processing\":false,\"secondaryExternalCode\":\"1261\",\"secondary_external_code\":\"1261\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2023-02-16 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000344-SR-000859 - Proceso Penal Diego Su\\u00e1rez\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000344-SR-000859\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1327\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"En relaci\\u00f3n al horario de \\u00e9xito, el mismo se cobrar\\u00e1 en caso que Pagos recupere el da\\u00f1o econ\\u00f3mico en m\\u00e1s del 50%, sea mediante Acuerdo Transaccional con la contraparte, cobertura del seguro y\\/o en cum\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000344-SR-000859\",\"processing\":false,\"secondaryExternalCode\":\"3845\",\"secondary_external_code\":\"3845\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 20:50:17\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"485\",\"name\":\"PAGOS SRL\",\"primary_external_code\":\"344\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"34\",\"externalCode\":\"AR03\",\"name\":\"Der. Penal\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2023-02-16 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000344-SR-000860 - Proceso Penal Roly Mercado\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000344-SR-000860\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1328\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"En relaci\\u00f3n al horario de \\u00e9xito, el mismo se cobrar\\u00e1 en caso que Pagos recupere el da\\u00f1o econ\\u00f3mico en m\\u00e1s del 50%, sea mediante Acuerdo Transaccional con la contraparte, cobertura del seguro y\\/o en cum\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000344-SR-000860\",\"processing\":false,\"secondaryExternalCode\":\"3846\",\"secondary_external_code\":\"3846\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 20:55:37\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"485\",\"name\":\"PAGOS SRL\",\"primary_external_code\":\"344\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"34\",\"externalCode\":\"AR03\",\"name\":\"Der. Penal\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2023-06-05 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000344-SR-000872 - Proceso c\\/Grover Aguilar y Pamela Rada (LPZ)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000344-SR-000872\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1329\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"La propuesta incluye un Honorario ijo de Bs. 7000 que debe ser pagados por hitos. Idependientemente de esto, hay un Honorario de \\u00c9xito de Bs. 3000 si recupera en m\\u00e1s del 50% del monto demandado.\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000344-SR-000872\",\"processing\":false,\"secondaryExternalCode\":\"4172\",\"secondary_external_code\":\"4172\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 20:59:25\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"iayala@emba.com\",\"enabled\":true,\"fullName\":\"Ines Ayala\",\"id\":19,\"locale\":\"es\",\"shortName\":\"iayala\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"iayala@emba.com\"},\"customer\":{\"id\":\"485\",\"name\":\"PAGOS SRL\",\"primary_external_code\":\"344\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"34\",\"externalCode\":\"AR03\",\"name\":\"Der. Penal\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-05-24 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000577-SR-000871 - Estructuraci\\u00f3n de proceso de venta empresarial\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000577-SR-000871\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1330\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"El tercer hito corresponde a un honorario de \\u00e9xito, que es del 1,25% del precio total de la venta de la Sociedad\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000577-SR-000871\",\"processing\":false,\"secondaryExternalCode\":\"4148\",\"secondary_external_code\":\"4148\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"488\",\"name\":\"Panader\\u00eda Victoria\",\"primary_external_code\":\"577\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-12-21 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000538-SR-000855 - Regularizacion t\\u00edtulos y transferencia inmueble\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000538-SR-000855\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1331\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000538-SR-000855\",\"processing\":false,\"secondaryExternalCode\":\"3781\",\"secondary_external_code\":\"3781\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"490\",\"name\":\"Patricia Miranda\",\"primary_external_code\":\"538\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"5\",\"externalCode\":\"AR02\",\"name\":\"Der.Civil \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2021-11-03 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000120-SR-000825 - Proceso Laboral por beneficios sociales interpuesto por 8 Riders\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000120-SR-000825\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1333\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000120-SR-000825\",\"processing\":false,\"secondaryExternalCode\":\"2984\",\"secondary_external_code\":\"2984\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 21:01:29\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"paramayo@emba.com\",\"enabled\":true,\"fullName\":\"Paul Aramayo Salinas\",\"id\":9,\"locale\":\"es\",\"shortName\":\"paramayo\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"paramayo@emba.com\"},\"customer\":{\"id\":\"493\",\"name\":\"PEDIDOSYA SERVICIOS S.A.\",\"primary_external_code\":\"120\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"17\",\"externalCode\":\"AR08\",\"name\":\"Der. Laboral y Seg. Soc.\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-06-30 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000588-SR-000873 - Tramitaci\\u00f3n documentaci\\u00f3n de nacimiento\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000588-SR-000873\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1334\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000588-SR-000873\",\"processing\":false,\"secondaryExternalCode\":\"4207\",\"secondary_external_code\":\"4207\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"aaraoz@emba.com\",\"enabled\":true,\"fullName\":\"Alvaro Araoz Ardaya\",\"id\":17,\"locale\":\"es\",\"shortName\":\"aaraoz\",\"superAdmin\":false,\"updated_at\":\"2024-12-04 15:29:19\",\"userType\":1,\"username\":\"aaraoz@emba.com\"},\"customer\":{\"id\":\"507\",\"name\":\"PORZIO, R\\u00cdOS, GARC\\u00cdA \\u0026 ASOCIADOS. LTDA.\",\"primary_external_code\":\"588\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"5\",\"externalCode\":\"AR02\",\"name\":\"Der.Civil \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-09-18 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000894-SR-000844 - Proceso Judicial de Cobranza contra PUNTONET BOLIVIA S.R.L.\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000894-SR-000844\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1337\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Adicionalmente a los honorarios fijos, un honorario variable (success fee) equivalente al 5% del monto total efectivamente recuperado,\\nindependientemente que la recuperaci\\u00f3n sea en dinero o bienes, a\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000894-SR-000844\",\"processing\":false,\"secondaryExternalCode\":\"3583\",\"secondary_external_code\":\"3583\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"554\",\"name\":\"SERVICIOS DE ALQUILERES PHOENIXTOWER S.A.\",\"primary_external_code\":\"894\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-12-09 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000894-SR-000853 - Cancelaci\\u00f3n de Registros de Prendas en Derechos Reales\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000894-SR-000853\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1338\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000894-SR-000853\",\"processing\":false,\"secondaryExternalCode\":\"3769\",\"secondary_external_code\":\"3769\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"554\",\"name\":\"SERVICIOS DE ALQUILERES PHOENIXTOWER S.A.\",\"primary_external_code\":\"894\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"16\",\"externalCode\":\"AR24\",\"name\":\"Der. Inmobiliario\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-18 00:00:00\",\"confidential\":false,\"created_at\":\"2023-10-10 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000904-SR-000934 - Representacion legal\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000904-SR-000934\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1394\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000904-SR-000934\",\"processing\":false,\"secondaryExternalCode\":\"2672\",\"secondary_external_code\":\"2672\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-18 20:47:50\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"tmercado@emba.com\",\"enabled\":true,\"fullName\":\"Teddy Alberto Mercado Carrion\",\"id\":12,\"locale\":\"es\",\"shortName\":\"tmercado\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"tmercado@emba.com\"},\"customer\":{\"id\":\"549\",\"name\":\"SCALAOPM BOLIVIA S.R.L.\",\"primary_external_code\":\"904\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2022-12-19 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000119-SR-000898 - TRAMITES MIGRATORIOS\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000119-SR-000898\",\"finishedDate\":null,\"fixRateValue\":1000,\"fix_rate_value\":1000,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1396\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000119-SR-000898\",\"processing\":false,\"secondaryExternalCode\":\"\",\"secondary_external_code\":\"\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 16:01:27\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"480\",\"name\":\"OPERADORA CARIBE\\u00d1A SRL\",\"primary_external_code\":\"119\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-01-19 00:00:00\",\"confidential\":false,\"created_at\":\"2022-11-28 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000526-SR-000960 - VISA DE 30 DIAS POR TRABAJO EN AEROPUERTO - MIKE ALBERTO MONTERO SUAREZ\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000526-SR-000960\",\"finishedDate\":null,\"fixRateValue\":330,\"fix_rate_value\":330,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1444\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 330 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000526-SR-000960\",\"processing\":false,\"secondaryExternalCode\":\"3728\",\"secondary_external_code\":\"3728\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"cdelgado@emba.com\",\"enabled\":true,\"fullName\":\"Cristhian Delgado Ramirez\",\"id\":13,\"locale\":\"es\",\"shortName\":\"cdelgado\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"cdelgado@emba.com\"},\"customer\":{\"id\":\"552\",\"name\":\"SERPROYTEC S.A.C.\",\"primary_external_code\":\"526\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-01-19 00:00:00\",\"confidential\":false,\"created_at\":\"2022-11-29 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000526-SR-000961 - VISA DE 30 DIAS POR TRABAJO EN AEROPUERTO - VICTOR RICARDO GUTIERREZ REYES\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000526-SR-000961\",\"finishedDate\":null,\"fixRateValue\":330,\"fix_rate_value\":330,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1445\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 330 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000526-SR-000961\",\"processing\":false,\"secondaryExternalCode\":\"3737\",\"secondary_external_code\":\"3737\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"cdelgado@emba.com\",\"enabled\":true,\"fullName\":\"Cristhian Delgado Ramirez\",\"id\":13,\"locale\":\"es\",\"shortName\":\"cdelgado\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"cdelgado@emba.com\"},\"customer\":{\"id\":\"552\",\"name\":\"SERPROYTEC S.A.C.\",\"primary_external_code\":\"526\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-11-15 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000525-SR-000965 - Servicios de Outsourcing\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000525-SR-000965\",\"finishedDate\":null,\"fixRateValue\":3435,\"fix_rate_value\":3435,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1448\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"El honorario se determina en funci\\u00f3n al n\\u00famero de registros contables y personal.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000525-SR-000965\",\"processing\":false,\"secondaryExternalCode\":\"\",\"secondary_external_code\":\"\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 14:32:31\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"cdelgado@emba.com\",\"enabled\":true,\"fullName\":\"Cristhian Delgado Ramirez\",\"id\":13,\"locale\":\"es\",\"shortName\":\"cdelgado\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"cdelgado@emba.com\"},\"customer\":{\"id\":\"530\",\"name\":\"RIDETECH BOL S.R.L.\",\"primary_external_code\":\"525\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"24\",\"externalCode\":\"AR05\",\"name\":\"Outsourcing\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-01-19 00:00:00\",\"confidential\":false,\"created_at\":\"2023-03-21 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000531-SR-000966 - VISA DE 30 DIAS POR TRABAJO EN AEROPUERTO - GUIDO LEONEL ROUMEC\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000531-SR-000966\",\"finishedDate\":null,\"fixRateValue\":300,\"fix_rate_value\":300,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1449\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 300 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000531-SR-000966\",\"processing\":false,\"secondaryExternalCode\":\"4025\",\"secondary_external_code\":\"4025\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"555\",\"name\":\"SGS Argentina S.A.\",\"primary_external_code\":\"531\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-01-19 00:00:00\",\"confidential\":false,\"created_at\":\"2023-02-01 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000195-SR-000932 - Servicios Legales Mensuales\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000195-SR-000932\",\"finishedDate\":null,\"fixRateValue\":574.71,\"fix_rate_value\":574.71,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1463\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000195-SR-000932\",\"processing\":false,\"secondaryExternalCode\":\"\",\"secondary_external_code\":\"\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"540\",\"name\":\"SABORES BOLIVIANOS ALEMANES S.R.L.\",\"primary_external_code\":\"195\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2018-10-31 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000245-SC-000130 - Proceso Laboral Ivert Arrueta y otros c\\/ Samsung\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000245-SC-000130\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1931\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000245-SC-000130\",\"processing\":false,\"secondaryExternalCode\":\"260\",\"secondary_external_code\":\"260\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"542\",\"name\":\"SAMSUNG ENGINEERING BOLIVIA S.A.\",\"primary_external_code\":\"245\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"17\",\"externalCode\":\"AR08\",\"name\":\"Der. Laboral y Seg. Soc.\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2018-10-31 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000245-SC-000170 - Proceso Laboral seguido por le Sr. Guido Cuellar Cabera\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000245-SC-000170\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1933\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000245-SC-000170\",\"processing\":false,\"secondaryExternalCode\":\"258\",\"secondary_external_code\":\"258\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"paramayo@emba.com\",\"enabled\":true,\"fullName\":\"Paul Aramayo Salinas\",\"id\":9,\"locale\":\"es\",\"shortName\":\"paramayo\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"paramayo@emba.com\"},\"customer\":{\"id\":\"542\",\"name\":\"SAMSUNG ENGINEERING BOLIVIA S.A.\",\"primary_external_code\":\"245\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"17\",\"externalCode\":\"AR08\",\"name\":\"Der. Laboral y Seg. Soc.\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2018-10-31 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000245-SC-000171 - Proceso laboral seguido por Sr.Jorge R.Jimenez Guardia\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000245-SC-000171\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1934\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000245-SC-000171\",\"processing\":false,\"secondaryExternalCode\":\"259\",\"secondary_external_code\":\"259\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"paramayo@emba.com\",\"enabled\":true,\"fullName\":\"Paul Aramayo Salinas\",\"id\":9,\"locale\":\"es\",\"shortName\":\"paramayo\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"paramayo@emba.com\"},\"customer\":{\"id\":\"542\",\"name\":\"SAMSUNG ENGINEERING BOLIVIA S.A.\",\"primary_external_code\":\"245\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"17\",\"externalCode\":\"AR08\",\"name\":\"Der. Laboral y Seg. Soc.\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2018-10-31 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000245-SC-000172 - Proceso Laboral seguido por Oscar Ra\\u00fal Alfaro Garc\\u00eda\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000245-SC-000172\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1935\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000245-SC-000172\",\"processing\":false,\"secondaryExternalCode\":\"268\",\"secondary_external_code\":\"268\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"paramayo@emba.com\",\"enabled\":true,\"fullName\":\"Paul Aramayo Salinas\",\"id\":9,\"locale\":\"es\",\"shortName\":\"paramayo\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"paramayo@emba.com\"},\"customer\":{\"id\":\"542\",\"name\":\"SAMSUNG ENGINEERING BOLIVIA S.A.\",\"primary_external_code\":\"245\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"17\",\"externalCode\":\"AR08\",\"name\":\"Der. Laboral y Seg. Soc.\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-01-30 00:00:00\",\"confidential\":false,\"created_at\":\"2024-01-30 15:58:24\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000388-SR-000990 - Proyecto de Disoluci\\u00f3n y Liquidaci\\u00f3n\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000388-SR-000990\",\"finishedDate\":null,\"fixRateValue\":4500,\"fix_rate_value\":4500,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2285\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":50,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000388-SR-000990\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"512\",\"name\":\"PREMONOR BOLIVIA S.R.L\",\"primary_external_code\":\"388\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-13 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-13 21:03:06\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000486-SR-001121 - Transferencias de cuotas de capital, cambio de representante, poder\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000486-SR-001121\",\"finishedDate\":null,\"fixRateValue\":850,\"fix_rate_value\":850,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2694\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":50,\"notes\":\"50% Inicio\\/50% Final\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000486-SR-001121\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-13 16:03:06\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"aaraoz@emba.com\",\"enabled\":true,\"fullName\":\"Alvaro Araoz Ardaya\",\"id\":17,\"locale\":\"es\",\"shortName\":\"aaraoz\",\"superAdmin\":false,\"updated_at\":\"2024-12-04 15:29:19\",\"userType\":1,\"username\":\"aaraoz@emba.com\"},\"customer\":{\"id\":\"547\",\"name\":\"SAWALIFE SRL\",\"primary_external_code\":\"486\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-01 00:00:00\",\"confidential\":false,\"created_at\":\"2024-04-01 21:00:15\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000385-SR-001153 - Transferencia bien inmueble Zona Achumani\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000385-SR-001153\",\"finishedDate\":null,\"fixRateValue\":718,\"fix_rate_value\":718,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2776\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":50,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000385-SR-001153\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-01 16:00:19\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"cmerino@emba.com\",\"enabled\":true,\"fullName\":\"Carlos Merino Troche\",\"id\":14,\"locale\":\"es\",\"shortName\":\"cmerino\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"cmerino@emba.com\"},\"customer\":{\"id\":\"520\",\"name\":\"RADIO FIDES ACTIVOS SRL\",\"primary_external_code\":\"385\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"5\",\"externalCode\":\"AR02\",\"name\":\"Der.Civil \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-01 00:00:00\",\"confidential\":false,\"created_at\":\"2024-04-01 21:03:25\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000385-SR-001154 - Regularizacion de inmueble El Alto (Cl\\u00ednica Fides)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000385-SR-001154\",\"finishedDate\":null,\"fixRateValue\":1000,\"fix_rate_value\":1000,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2777\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":50,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000385-SR-001154\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-01 16:03:25\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"cmerino@emba.com\",\"enabled\":true,\"fullName\":\"Carlos Merino Troche\",\"id\":14,\"locale\":\"es\",\"shortName\":\"cmerino\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"cmerino@emba.com\"},\"customer\":{\"id\":\"520\",\"name\":\"RADIO FIDES ACTIVOS SRL\",\"primary_external_code\":\"385\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"5\",\"externalCode\":\"AR02\",\"name\":\"Der.Civil \\n\"}}]}}}\n","time":"2025-07-30T10:50:48-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: POST https://apinewtm.com/graphql/\nHeaders: map[Accept:[application/json] Authorization:[Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJpYXQiOjE3NTM4ODY1MjIsImV4cCI6MTc1Mzk2NjUyMiwiaWQiOjEwNSwidXNlcm5hbWUiOiJpbnRlZ3JhY2lvbmVzQGVtYmEuYm8iLCJhcGlrZXkiOiI5Yzg0ZjYzZTRlMzk2ZGZmOWU5ZjU3NDI5OGRmZWUzOSIsImFwaWtleUNyZWF0ZWRBdCI6eyJkYXRlIjoiMjAyNS0wNy0xNyAxMDo0MToyNS4wMDAwMDAiLCJ0aW1lem9uZV90eXBlIjozLCJ0aW1lem9uZSI6IkFtZXJpY2EvQm9nb3RhIn0sImZ1bGxOYW1lIjoiSW50ZWdyYWNpw7NuIEVNQkEiLCJlbWFpbCI6ImludGVncmFjaW9uZXNAZW1iYS5ibyIsImxvY2FsZSI6ImVzIiwiZGF5c0FsbG93ZWQiOjMwLCJpc0Nvb3JkaW5hdG9yIjpmYWxzZSwidHlwZVRhc2tWaWV3IjoibGlzdHMiLCJkYXlzYWxsb3ciOjMwLCJyb2xlcyI6e30sInNob3J0X25hbWUiOiJJTi5FTUJBIiwicGVybWlzc2lvbnMiOlsic3luY19leHRlcm5hbF9idXNpbmVzcyIsInN5bmNfZXh0ZXJuYWxfY3VzdG9tZXIiLCJzeW5jX2V4dGVybmFsX21pbGVzdG9uZSIsImFic2VuY2VfYXBwcm92ZSIsImFic2VuY2VfY3JlYXRlX2FsbCIsImFic2VuY2VfY3JlYXRlX293biIsImFic2VuY2VfbWVudSIsImFjY291bnRpbmdfYnVzaW5lc3NfbGlzdCIsImFjY291bnRpbmdfY3VzdG9tZXJfbGlzdCIsImJpbGxpbmdfcGVyaW9kX2RlbGV0ZV9hbGwiLCJiaWxsaW5nX3BlcmlvZF9lZGl0X2FsbCIsImJpbGxpbmdfcGVyaW9kX2xpc3QiLCJiaWxsaW5nX3BlcmlvZF9yZWFjdGl2YXRlIiwiYm9hcmRfcmF0ZV91c2VyX2NyZWF0ZSIsImJvYXJkX3JhdGVfdXNlcl9lZGl0IiwiYnVzaW5lc3NfY3JlYXRlIiwiYnVzaW5lc3NfZGVzY3JpcHRpb25fc2F2ZSIsImJ1c2luZXNzX2VkaXQiLCJidXNpbmVzc19saXN0X2FsbCIsImJ1c2luZXNzX21lbnUiLCJidXNpbmVzc19yZXNwb25zaWJsZV9saXN0X2FsbCIsImJ1c2luZXNzX3NlZV9iaWxsaW5nX2luZm8iLCJidXNpbmVzc2VzX2FsbG93ZWRfdXNlcl9jcmVhdGUiLCJidXNpbmVzc2VzX2FsbG93ZWRfdXNlcl9kZWxldGUiLCJjb21wYW55X2Rpc2FibGUiLCJjb21wYW55X2VkaXQiLCJjb21wYW55X2xpc3QiLCJjb25jZXB0X2NyZWF0ZSIsImNvbmNlcHRfZWRpdCIsImNvbmNlcHRfbWVudSIsImNvbnRhY3RfY3JlYXRlIiwiY29udGFjdF9jcmVhdGVfZmFzdCIsImNvbnRhY3RfZWRpdCIsImNvbnRhY3RfbGlzdCIsImNvbnRhY3RfbWVudSIsImN1c3RvbWVyX2NyZWF0ZSIsImN1c3RvbWVyX2NyZWF0ZV9mYXN0IiwiY3VzdG9tZXJfZWRpdCIsImN1c3RvbWVyX2xpc3QiLCJjdXN0b21lcl9saXN0X2FsbCIsImN1c3RvbWVyX21lbnUiLCJleHBlbnNlX2NyZWF0ZV9hbGwiLCJleHBlbnNlX2RlbGV0ZV9hbGwiLCJleHBlbnNlX2R1cGxpY2F0ZSIsImV4cGVuc2VfZWRpdF9hbGwiLCJleHBlbnNlX2xpc3RfYWxsIiwiZXhwZW5zZV9tZW51IiwiZXhwZW5zZV9yZWplY3RfYWxsIiwiZmFiX3Nob3ciLCJmaWxlX21lbnUiLCJnZW9yZWZlcmVuY2VfY3JlYXRlIiwiZ2VvcmVmZXJlbmNlX2VkaXQiLCJnZW9yZWZlcmVuY2VfbWVudSIsImdvX3RvX2xlZ2FjeSIsImluZGljYXRvcnNfbWVudSIsImludm9pY2VfY3JlYXRlIiwiaW52b2ljZV9kZXRhaWxfbGlzdF9hbGwiLCJpbnZvaWNlX2ZpeF90aW1lc19jdXN0b21fdmFsdWUiLCJpbnZvaWNlX2xpc3RfYWxsIiwiaW52b2ljZWFkdmFuY2VfY3JlYXRlIiwiaW52b2ljZWFkdmFuY2VfbGlzdCIsImludm9pY2VhZHZhbmNlX3VwZGF0ZSIsImxvZ19saXN0X2FsbCIsImxvZ19saXN0X293biIsIm1pbGVzdG9uZV9jcmVhdGUiLCJtaWxlc3RvbmVfZGVsZXRlIiwibWlsZXN0b25lX2VkaXQiLCJtb250aGx5X2ZpeF9yYXRlX2dyb3VwX2NyZWF0ZSIsIm1vbnRobHlfZml4X3JhdGVfZ3JvdXBfZWRpdCIsIm1vbnRobHlfdXNlcl9jb3N0X2NyZWF0ZSIsIm1vbnRobHlfdXNlcl9jb3N0X2VkaXQiLCJwYXltZW50X2NyZWF0ZSIsInBheW1lbnRfZGVsZXRlIiwicGF5bWVudF9lZGl0IiwicGF5bWVudF9tZW51IiwicHJvY2VkdXJlX21lbnUiLCJwcm9jZWR1cmVfcmF0ZV9jcmVhdGUiLCJwcm9jZWR1cmVfcmF0ZV9kZXRhaWxfY3JlYXRlIiwicHJvY2VkdXJlX3JhdGVfZGV0YWlsX2VkaXQiLCJwcm9jZWR1cmVfcmF0ZV9kZXRhaWxfbGlzdCIsInByb2NlZHVyZV9yYXRlX2VkaXQiLCJwcm9jZWR1cmVfcmF0ZV9saXN0IiwicHJvY2VkdXJlX3JhdGVfbWVudSIsInByb2NlZHVyZV90cmFuc2FjdGlvbl9saXN0IiwicHJvamVjdF9hcmNoaXZlX2Nhc2NhZGVfYWxsIiwicHJvamVjdF9kZWxldGVfY2FzY2FkZV9hbGwiLCJwcm9qZWN0X3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInJhdGVfYnVzaW5lc3NfY2F0ZWdvcnlfY3JlYXRlIiwicmF0ZV9idXNpbmVzc19jYXRlZ29yeV9lZGl0IiwicmF0ZV9idXNpbmVzc191c2VyX2NyZWF0ZSIsInJhdGVfYnVzaW5lc3NfdXNlcl9lZGl0IiwicmF0ZV9leGNoYW5nZV9jcmVhdGUiLCJyYXRlX2V4Y2hhbmdlX2VkaXQiLCJyYXRlX2V4Y2hhbmdlX2xpc3QiLCJyYXRlX3VzZXJfY3JlYXRlIiwicmF0ZV91c2VyX2VkaXQiLCJyb2xlX2NyZWF0ZSIsInJvbGVfZWRpdF9hbGwiLCJyb2xlX2xpc3RfYWxsIiwic2VjdGlvbl9hcmNoaXZlX2Nhc2NhZGVfYWxsIiwic2VjdGlvbl9kZWxldGVfY2FzY2FkZV9hbGwiLCJzZWN0aW9uX3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInNlZV9tZW51X3JhdGVfZXhjaGFuZ2UiLCJzZXJpZV9jcmVhdGUiLCJzZXJpZV9lZGl0Iiwic2VyaWVfbWVudSIsInNldHRpbmdzX3ZpZXciLCJzdXBwbGllcl9jcmVhdGUiLCJ0YXNrX2FkZF90aW1lX2FsbCIsInRhc2tfYWRkX3RpbWVfb3duIiwidGFza19hc3NpZ25lZF91c2VyX2VtYWlsIiwidGFza19jbG9zZWRfZW1haWwiLCJ0YXNrX2NyZWF0ZV9hbGwiLCJ0YXNrX2NyZWF0ZV9jb21tZW50X2VtYWlsIiwidGFza19jcmVhdGVfc2VsZiIsInRhc2tfY3JlYXRlX3RlYW0iLCJ0YXNrX2RlbGV0ZV9hbGwiLCJ0YXNrX2RlbGV0ZV9vd24iLCJ0YXNrX2RlbGV0ZV90ZWFtIiwidGFza19lZGl0X2FsbCIsInRhc2tfZWRpdF9kdWVfZGF0ZSIsInRhc2tfZWRpdF9vd24iLCJ0YXNrX2VkaXRfdGVhbSIsInRhc2tfbGlzdF9hbGwiLCJ0YXNrX2xpc3Rfb3duIiwidGFza19saXN0X3RlYW0iLCJ0YXNrX21hc3NpdmVpbXBvcnQiLCJ0YXNrX21lbnUiLCJ0YXNrX21pZ3JhdGlvbiIsInRhc2tfc2V0X2FkZGl0aW9uYWxfYXNzaWduZWVzIiwidGFza19zZXRfZHVlX2RhdGUiLCJ0YXNrX3NldF9lc3RpbWF0ZWRfdGltZSIsInRhc2tfc2V0X3ByaW9yaXR5IiwidGFza19zZXRfcHJvZ3Jlc3MiLCJ0YXhfZWRpdF9hbGwiLCJ0YXhfbGlzdF9hbGwiLCJ0ZWFtX2FyY2hpdmVfY2FzY2FkZV9hbGwiLCJ0ZWFtX2NyZWF0ZV9hbGwiLCJ0ZWFtX2RlbGV0ZV9hbGwiLCJ0ZWFtX2VkaXRfYWxsIiwidGVhbV9saXN0X2FsbCIsInRlYW1fbGlzdF9vd24iLCJ0ZWFtX3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInRpbWVfYWNjZXB0X2FsbCIsInRpbWVfYWNjZXB0X293biIsInRpbWVfYXBwcm92ZV9hbGwiLCJ0aW1lX2FwcHJvdmVfb3duIiwidGltZV9jcmVhdGVfYWxsIiwidGltZV9jcmVhdGVfb3duIiwidGltZV9kZWxldGVfYWxsIiwidGltZV9kZWxldGVfb3duIiwidGltZV9kZW55X2FsbCIsInRpbWVfZGVueV9vd24iLCJ0aW1lX2Rvd25sb2FkZmlsZV9hbGwiLCJ0aW1lX2Rvd25sb2FkZmlsZV9vd24iLCJ0aW1lX2VkaXRfYWxsIiwidGltZV9lZGl0X2Nsb3NlX3BlcmlvZF9hbGwiLCJ0aW1lX2VkaXRfY2xvc2VfcGVyaW9kX293biIsInRpbWVfZWRpdF9vd24iLCJ0aW1lX2xpc3RfYWxsIiwidGltZV9saXN0X293biIsInRpbWVfbWVudSIsInRpbWVfbWludXRlc196ZXJvIiwidGltZV9yZWplY3RfYWxsIiwidGltZV9yZXN0cmljdGVkX3BlcmlvZF9jcmVhdGUiLCJ0aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX2VkaXQiLCJ0aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX21lbnUiLCJ0aW1lX3NoYXJlX2FsbCIsInRpbWVfc2hhcmVfb3duIiwidGltZV9zaG93X2NhbGVuZGFyX3ZpZXciLCJ0aW1lX3VwbG9hZGZpbGVfYWxsIiwidGltZV91cGxvYWRmaWxlX293biIsInRyYW5zYWN0aW9uX2FkYXB0ZXJfbGlzdCIsInRyYW5zYWN0aW9uX2xpc3QiLCJ1c2VyX2Fic2VuY2VzX3Nob3ciLCJ1c2VyX2Nvc3RfY3JlYXRlIiwidXNlcl9jb3N0X2VkaXQiLCJ1c2VyX2Nvc3RfbGlzdCIsInVzZXJfY29zdF9tZW51IiwidXNlcl9jb3N0X3JhdGVfY3JlYXRlIiwidXNlcl9jb3N0X3JhdGVfZWRpdCIsInVzZXJfY29zdF9yYXRlX2xpc3QiLCJ1c2VyX2NyZWF0ZSIsInVzZXJfZGlzYWJsZSIsInVzZXJfZWRpdCIsInVzZXJfZWRpdF9kYXlzX2FsbG93X29ubHkiLCJ1c2VyX2dyb3VwX3JvbGVfY3JlYXRlX2FsbCIsInVzZXJfZ3JvdXBfcm9sZV9kZWxldGVfYWxsIiwidXNlcl9ncm91cF9yb2xlX2VkaXRfYWxsIiwidXNlcl9ncm91cF9yb2xlc19saXN0X2FsbCIsInVzZXJfbGlzdCIsInVzZXJfbGlzdF9hbGwiLCJ1c2VyX21hc3NfYWN0aXZhdGlvbiIsInVzZXJfcHJvZHVjdGl2aXR5X2NyZWF0ZSIsInVzZXJfcHJvZHVjdGl2aXR5X2Rpc2FibGUiLCJ1c2VyX3Byb2R1Y3Rpdml0eV9lZGl0IiwidXNlcl9wcm9kdWN0aXZpdHlfZW5hYmxlIiwidXNlcl9wcm9kdWN0aXZpdHlfbWVudSIsInVzZXJfdGltZV9yZXN0cmljdGVkX3BlcmlvZF9jcmVhdGUiLCJ1c2VyX3RpbWVfcmVzdHJpY3RlZF9wZXJpb2RfZGVsZXRlIiwidXNlcl90aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX2VkaXQiLCJ1c2VyZ3JvdXBfY3JlYXRlX2FsbCIsInVzZXJncm91cF9kZWxldGVfYWxsIiwidXNlcmdyb3VwX2VkaXRfYWxsIiwidXNlcmdyb3VwX2xpc3RfYWxsIiwidXNlcmdyb3VwX21lbnUiLCJ1c2Vyc191c2VyX2dyb3VwX2NyZWF0ZV9hbGwiLCJ1c2Vyc191c2VyX2dyb3VwX2RlbGV0ZV9hbGwiLCJ1c2Vyc191c2VyX2dyb3VwX2VkaXRfYWxsIiwidXNlcnNfdXNlcl9ncm91cHNfbGlzdF9hbGwiXSwiaG9tZXBhZ2UiOm51bGx9.kShN7NXGoaz1oFro-yYNyIpIEcnNpo1GiB8SFGKFUJtDQoqyp1I1w-CMA8Kta3vWXnUZwx-y2z1yVSJaMpZbqQgKFlakpcf6351bZSL8IAUPExSfLz0HYYCWFx-Usx94BBTqosKsRhnT8PkPN3dGxs8-XTIEDi9gN-Pk9OSHmM5mPkTsaaxTY40M-F7Y0Up2y6s_lwFaX13CmstiYZSXzyKL9SUBBx-E6-8qQAfuKPIoZ_50jSGPW98-IkAcWwqO6yGf-M07dSfFZ2vLfwc3ulHm2p8jVSmRxJ_O43BEWQD5cvqGbVIvSMXkS4y98DL4Vencjjg27iu3CUJsDNBBTg] Content-Type:[application/json] Origin:[https://azure-function.timemanagerweb.com] Tenant-Name:[pruebas-dos] User-Agent:[Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36]]\nBody: map[query:query ($limit: Int, $orderBy: String, $orderDesc: Boolean, $page: Int) { BusinessMeta(limit: $limit, orderBy: $orderBy, orderDesc: $orderDesc, page: $page) { meta { hasNextPage hasPreviousPage limit next page pages previous total } rows { apply_procedures billable business_customer_code caseNumber closed_date confidential created_at discountAmount discountPercent displayName enableBusinessAllowedUsers expedient finishedDate fixRateValue fix_rate_value hourLimit hour_limit id internal_code isBillable limitAlert notes partialCharges partial_charges primary_external_code processing secondaryExternalCode secondary_external_code status statusMarking updated_at withIVA responsible { created_at daysAllow email enabled fullName id locale shortName superAdmin updated_at userType username } customer { id name primary_external_code company { id name } } practiceArea { id externalCode name } } } } variables:map[limit:100 orderBy:orderBy orderDesc:true page:11]]\n","time":"2025-07-30T10:50:48-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: POST https://apinewtm.com/graphql/ | Status: 200 | Duration: 4.9580259s\nHeaders: map[Access-Control-Allow-Credentials:[true] Access-Control-Allow-Origin:[https://azure-function.timemanagerweb.com] Access-Control-Expose-Headers:[link, access-control-allow-credentials] Cache-Control:[no-cache, private] Content-Type:[application/json] Date:[Wed, 30 Jul 2025 14:50:52 GMT] Server:[] Vary:[Authorization]]\nBody: {\"errors\":[{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",0,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",0,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",0,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",0,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",0,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",0,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",0,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",0,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",0,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",0,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",0,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",1,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",1,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",1,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",1,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",1,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",1,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",1,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",1,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",1,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",1,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",1,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",2,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",2,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",2,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",2,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",2,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",2,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",2,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",2,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",2,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",2,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",2,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",3,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",3,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",3,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",3,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",3,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",3,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",3,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",3,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",3,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",3,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",3,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",4,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",4,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",4,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",4,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",4,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",4,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",4,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",4,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",4,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",4,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",4,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",5,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",5,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",5,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",5,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",5,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",5,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",5,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",5,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",5,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",5,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",5,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",6,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",6,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",6,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",6,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",6,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",6,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",6,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",6,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",6,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",6,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",6,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",7,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",7,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",7,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",7,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",7,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",7,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",7,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",7,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",7,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",7,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",7,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",8,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",8,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",8,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",8,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",8,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",8,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",8,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",8,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",8,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",8,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",8,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",9,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",9,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",9,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",9,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",9,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",9,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",9,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",9,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",9,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",9,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",9,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",10,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",10,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",10,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",10,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",10,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",10,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",10,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",10,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",10,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",10,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",10,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",11,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",11,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",11,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",11,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",11,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",11,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",11,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",11,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",11,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",11,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",11,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",16,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",16,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",16,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",16,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",16,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",16,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",16,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",16,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",16,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",16,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",16,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",18,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",18,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",18,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",18,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",18,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",18,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",18,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",18,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",18,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",18,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",18,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",23,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",23,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",23,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",23,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",23,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",23,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",23,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",23,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",23,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",23,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",23,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",24,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",24,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",24,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",24,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",24,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",24,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",24,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",24,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",24,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",24,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",24,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",25,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",25,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",25,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",25,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",25,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",25,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",25,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",25,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",25,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",25,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",25,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",26,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",26,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",26,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",26,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",26,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",26,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",26,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",26,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",26,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",26,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",26,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",27,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",27,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",27,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",27,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",27,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",27,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",27,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",27,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",27,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",27,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",27,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",29,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",29,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",29,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",29,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",29,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",29,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",29,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",29,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",29,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",29,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",29,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",32,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",32,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",32,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",32,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",32,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",32,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",32,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",32,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",32,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",32,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",32,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",33,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",33,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",33,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",33,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",33,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",33,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",33,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",33,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",33,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",33,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",33,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",34,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",34,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",34,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",34,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",34,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",34,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",34,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",34,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",34,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",34,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",34,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",35,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",35,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",35,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",35,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",35,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",35,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",35,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",35,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",35,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",35,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",35,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",36,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",36,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",36,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",36,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",36,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",36,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",36,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",36,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",36,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",36,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",36,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",37,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",37,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",37,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",37,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",37,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",37,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",37,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",37,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",37,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",37,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",37,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",38,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",38,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",38,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",38,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",38,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",38,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",38,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",38,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",38,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",38,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",38,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",39,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",39,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",39,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",39,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",39,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",39,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",39,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",39,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",39,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",39,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",39,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",50,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",50,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",50,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",50,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",50,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",50,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",50,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",50,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",50,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",50,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",50,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",51,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",51,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",51,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",51,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",51,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",51,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",51,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",51,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",51,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",51,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",51,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",52,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",52,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",52,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",52,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",52,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",52,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",52,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",52,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",52,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",52,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",52,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",53,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",53,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",53,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",53,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",53,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",53,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",53,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",53,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",53,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",53,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",53,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",54,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",54,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",54,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",54,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",54,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",54,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",54,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",54,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",54,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",54,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",54,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",55,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",55,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",55,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",55,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",55,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",55,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",55,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",55,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",55,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",55,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",55,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",57,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",57,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",57,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",57,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",57,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",57,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",57,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",57,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",57,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",57,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",57,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",58,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",58,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",58,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",58,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",58,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",58,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",58,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",58,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",58,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",58,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",58,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",59,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",59,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",59,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",59,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",59,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",59,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",59,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",59,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",59,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",59,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",59,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",60,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",60,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",60,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",60,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",60,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",60,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",60,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",60,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",60,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",60,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",60,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",61,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",61,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",61,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",61,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",61,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",61,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",61,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",61,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",61,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",61,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",61,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",62,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",62,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",62,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",62,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",62,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",62,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",62,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",62,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",62,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",62,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",62,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",63,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",63,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",63,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",63,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",63,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",63,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",63,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",63,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",63,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",63,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",63,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",64,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",64,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",64,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",64,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",64,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",64,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",64,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",64,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",64,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",64,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",64,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",65,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",65,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",65,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",65,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",65,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",65,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",65,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",65,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",65,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",65,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",65,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",66,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",66,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",66,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",66,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",66,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",66,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",66,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",66,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",66,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",66,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",66,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",67,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",67,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",67,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",67,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",67,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",67,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",67,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",67,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",67,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",67,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",67,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",72,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",72,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",72,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",72,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",72,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",72,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",72,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",72,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",72,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",72,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",72,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",73,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",73,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",73,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",73,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",73,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",73,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",73,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",73,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",73,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",73,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",73,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",74,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",74,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",74,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",74,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",74,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",74,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",74,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",74,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",74,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",74,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",74,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",75,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",75,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",75,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",75,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",75,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",75,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",75,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",75,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",75,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",75,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",75,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",76,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",76,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",76,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",76,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",76,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",76,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",76,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",76,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",76,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",76,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",76,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",77,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",77,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",77,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",77,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",77,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",77,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",77,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",77,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",77,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",77,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",77,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",78,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",78,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",78,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",78,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",78,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",78,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",78,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",78,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",78,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",78,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",78,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",79,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",79,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",79,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",79,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",79,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",79,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",79,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",79,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",79,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",79,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",79,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",80,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",80,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",80,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",80,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",80,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",80,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",80,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",80,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",80,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",80,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",80,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",81,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",81,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",81,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",81,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",81,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",81,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",81,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",81,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",81,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",81,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",81,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",82,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",82,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",82,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",82,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",82,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",82,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",82,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",82,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",82,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",82,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",82,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",83,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",83,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",83,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",83,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",83,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",83,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",83,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",83,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",83,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",83,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",83,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",84,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",84,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",84,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",84,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",84,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",84,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",84,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",84,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",84,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",84,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",84,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",85,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",85,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",85,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",85,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",85,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",85,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",85,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",85,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",85,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",85,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",85,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",86,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",86,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",86,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",86,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",86,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",86,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",86,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",86,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",86,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",86,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",86,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",87,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",87,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",87,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",87,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",87,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",87,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",87,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",87,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",87,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",87,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",87,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",88,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",88,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",88,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",88,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",88,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",88,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",88,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",88,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",88,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",88,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",88,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",89,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",89,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",89,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",89,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",89,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",89,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",89,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",89,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",89,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",89,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",89,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",90,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",90,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",90,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",90,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",90,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",90,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",90,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",90,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",90,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",90,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",90,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",91,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",91,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",91,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",91,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",91,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",91,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",91,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",91,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",91,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",91,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",91,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",92,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",92,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",92,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",92,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",92,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",92,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",92,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",92,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",92,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",92,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",92,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",93,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",93,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",93,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",93,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",93,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",93,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",93,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",93,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",93,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",93,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",93,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",94,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",94,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",94,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",94,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",94,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",94,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",94,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",94,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",94,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",94,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",94,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",95,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",95,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",95,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",95,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",95,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",95,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",95,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",95,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",95,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",95,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",95,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",96,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",96,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",96,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",96,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",96,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",96,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",96,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",96,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",96,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",96,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",96,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",97,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",97,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",97,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",97,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",97,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",97,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",97,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",97,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",97,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",97,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",97,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",98,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",98,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",98,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",98,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",98,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",98,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",98,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",98,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",98,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",98,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",98,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",99,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",99,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",99,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",99,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",99,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",99,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",99,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",99,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",99,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",99,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",99,\"responsible\",\"username\"]}],\"data\":{\"BusinessMeta\":{\"meta\":{\"hasNextPage\":true,\"hasPreviousPage\":true,\"limit\":100,\"next\":12,\"page\":11,\"pages\":16,\"previous\":10,\"total\":1573},\"rows\":[{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2019-03-26 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000070 - CEDULA DE EXTRANJERO- VAN VINH NGUYEN\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000070\",\"finishedDate\":null,\"fixRateValue\":257.76,\"fix_rate_value\":257.76,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"555\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1.794,47.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000070\",\"processing\":false,\"secondaryExternalCode\":\"1265\",\"secondary_external_code\":\"1265\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2019-03-26 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000071 - CEDULA DE EXTRANJERO- JONAS KREYER\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000071\",\"finishedDate\":null,\"fixRateValue\":257.76,\"fix_rate_value\":257.76,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"556\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1.794,47.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000071\",\"processing\":false,\"secondaryExternalCode\":\"1266\",\"secondary_external_code\":\"1266\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2019-04-04 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000075 - AUTORIZACI\\u00d3N DE CARTA DE INVITACI\\u00d3N - ABDUL IMAMNAZAR\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000075\",\"finishedDate\":null,\"fixRateValue\":330.17,\"fix_rate_value\":330.17,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"557\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 2,298,39.- INCLUYEN GASTOS E IMPUESTOS DE LEY\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000075\",\"processing\":false,\"secondaryExternalCode\":\"1281\",\"secondary_external_code\":\"1281\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2019-04-04 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000076 - VISA OBJETO DETERMINADO 30 D\\u00cdAS - DARREN ROBERT HUNT\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000076\",\"finishedDate\":null,\"fixRateValue\":581.03,\"fix_rate_value\":581.03,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"558\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE 4.044,61.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000076\",\"processing\":false,\"secondaryExternalCode\":\"1283\",\"secondary_external_code\":\"1283\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2019-04-04 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000077 - VISA OBJETO DETERMINADO 30 D\\u00cdAS - UNGAR TAMAS\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000077\",\"finishedDate\":null,\"fixRateValue\":581.06,\"fix_rate_value\":581.06,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"559\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 4.044,61.- INCLUYEN GASTOS E IMPUESTOS DE LEY\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000077\",\"processing\":false,\"secondaryExternalCode\":\"1284\",\"secondary_external_code\":\"1284\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2019-04-04 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000078 - AUTORIZACI\\u00d3N DE CARTA DE INVITACI\\u00d3N - NILS JOHAN ULRIKOLSSON\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000078\",\"finishedDate\":null,\"fixRateValue\":330.17,\"fix_rate_value\":330.17,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"560\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 2.298,39.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000078\",\"processing\":false,\"secondaryExternalCode\":\"1285\",\"secondary_external_code\":\"1285\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2019-04-04 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000079 - AUTORIZACI\\u00d3N DE CARTA DE INVITACI\\u00d3N - ARIEL FAUSTINO DE GUZMAN\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000079\",\"finishedDate\":null,\"fixRateValue\":330.17,\"fix_rate_value\":330.17,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"561\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 2.298,39.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000079\",\"processing\":false,\"secondaryExternalCode\":\"1286\",\"secondary_external_code\":\"1286\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2019-04-12 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000083 - AUTORIZACI\\u00d3N DE CARTA DE INVITACI\\u00d3N - KENT JOAKIM ANDERSSON\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000083\",\"finishedDate\":null,\"fixRateValue\":330.17,\"fix_rate_value\":330.17,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"562\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 2.298,30 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000083\",\"processing\":false,\"secondaryExternalCode\":\"1300\",\"secondary_external_code\":\"1300\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2019-04-12 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000084 - VISA DE OBJETO DETERMINADO 90 D\\u00cdAS - KENT JOAKIM ANDERSSON\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000084\",\"finishedDate\":null,\"fixRateValue\":771.26,\"fix_rate_value\":771.26,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"563\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 5.368,22.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000084\",\"processing\":false,\"secondaryExternalCode\":\"1301\",\"secondary_external_code\":\"1301\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2019-04-15 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000085 - VISA DE OBJETO DETERMINADO 90 D\\u00cdAS - DAN OLOF BERTIL SANDHOLM\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000085\",\"finishedDate\":null,\"fixRateValue\":771.26,\"fix_rate_value\":771.26,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"564\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 5.368,22.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000085\",\"processing\":false,\"secondaryExternalCode\":\"1305\",\"secondary_external_code\":\"1305\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2019-04-15 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000086 - AUTORIZACI\\u00d3N DE CARTA DE INVITACI\\u00d3N - JASON LLOYD THIBODEAUX\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000086\",\"finishedDate\":null,\"fixRateValue\":330.17,\"fix_rate_value\":330.17,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"565\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 2.298,39.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000086\",\"processing\":false,\"secondaryExternalCode\":\"1308\",\"secondary_external_code\":\"1308\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2019-04-17 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000088 - VISA OBJETO DETERMINADO 30 D\\u00cdAS - OLEGORIO AGUILAR ARMENTA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000088\",\"finishedDate\":null,\"fixRateValue\":581.03,\"fix_rate_value\":581.03,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"566\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 4.044,61.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000088\",\"processing\":false,\"secondaryExternalCode\":\"1318\",\"secondary_external_code\":\"1318\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2019-04-22 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000089 - PERMANENCIA TEMPORAL DE UN A\\u00d1O POR FAMILIA- GUNCHA AFSARI\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000089\",\"finishedDate\":null,\"fixRateValue\":815.37,\"fix_rate_value\":815.37,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"567\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 5.675.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000089\",\"processing\":false,\"secondaryExternalCode\":\"1324\",\"secondary_external_code\":\"1324\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2019-04-22 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000090 - CEDULA DE EXTRANJERO- SWARAJ ANAND\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000090\",\"finishedDate\":null,\"fixRateValue\":257.76,\"fix_rate_value\":257.76,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"568\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1.794.- INCLUYEN GASTOS E IMPUESTOS DE LEY\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000090\",\"processing\":false,\"secondaryExternalCode\":\"1325\",\"secondary_external_code\":\"1325\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2019-04-26 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000091 - AUTORIZACI\\u00d3N DE CARTA DE INVITACI\\u00d3N \\u2013 NILS JOHAN ULRIK OLSSON\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000091\",\"finishedDate\":null,\"fixRateValue\":330.23,\"fix_rate_value\":330.23,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"569\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000091\",\"processing\":false,\"secondaryExternalCode\":\"1328\",\"secondary_external_code\":\"1328\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2019-05-07 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000094 - PERMANENCIA POR UN A\\u00d1O SIN CONTRATO EXTRANJERO - MARKUS KOPRAX\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000094\",\"finishedDate\":null,\"fixRateValue\":1356.89,\"fix_rate_value\":1356.89,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"570\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 9.444,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000094\",\"processing\":false,\"secondaryExternalCode\":\"1348\",\"secondary_external_code\":\"1348\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2019-05-07 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000095 - PERMANENCIA POR UN A\\u00d1O SIN CONTRATO EXTRANJERO- MANFRED GALLEE\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000095\",\"finishedDate\":null,\"fixRateValue\":1356.89,\"fix_rate_value\":1356.89,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"571\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 9.444,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000095\",\"processing\":false,\"secondaryExternalCode\":\"1349\",\"secondary_external_code\":\"1349\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-05-07 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000096 - C\\u00c9DULA DE EXTRANJERO - GUNNAR FRANS EMIL JANSSON\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000096\",\"finishedDate\":null,\"fixRateValue\":257.76,\"fix_rate_value\":257.76,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"572\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1.794,47.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000096\",\"processing\":false,\"secondaryExternalCode\":\"1362\",\"secondary_external_code\":\"1362\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-05-07 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000097 - VISA DE OBJETO DETERMINADO 90 D\\u00cdAS - COLM CHRISTOPHER KEANE\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000097\",\"finishedDate\":null,\"fixRateValue\":771.26,\"fix_rate_value\":771.26,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"573\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 5.368,22.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000097\",\"processing\":false,\"secondaryExternalCode\":\"1364\",\"secondary_external_code\":\"1364\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-05-07 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000098 - VISA DE OBJETO DETERMINADO 90 D\\u00cdAS - JASON LLOYD THIBODEAUX\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000098\",\"finishedDate\":null,\"fixRateValue\":771.26,\"fix_rate_value\":771.26,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"574\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 5.368,22.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000098\",\"processing\":false,\"secondaryExternalCode\":\"1365\",\"secondary_external_code\":\"1365\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-05-07 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000099 - PERMANENCIA POR UN A\\u00d1O SIN CONTRATO EXTRANJERO- TAMAS UNGAR\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000099\",\"finishedDate\":null,\"fixRateValue\":1356.89,\"fix_rate_value\":1356.89,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"575\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 9.444,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000099\",\"processing\":false,\"secondaryExternalCode\":\"1366\",\"secondary_external_code\":\"1366\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-05-09 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000100 - PERMANENCIA POR UN A\\u00d1O SIN CONTRATO EXTRANJERO- ARIEL FAUSTINO DE GUZM\\u00c1N\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000100\",\"finishedDate\":null,\"fixRateValue\":1356.89,\"fix_rate_value\":1356.89,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"576\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 9.444,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000100\",\"processing\":false,\"secondaryExternalCode\":\"1374\",\"secondary_external_code\":\"1374\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-05-09 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000101 - C\\u00c9DULA DE EXTRANJERO- PAUL PHILIP WILLMANN\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000101\",\"finishedDate\":null,\"fixRateValue\":257.76,\"fix_rate_value\":257.76,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"577\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1.794,47.- INCLUYE GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000101\",\"processing\":false,\"secondaryExternalCode\":\"1376\",\"secondary_external_code\":\"1376\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-05-17 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000105 - REGISTRO DE CARTA DE INVITACION - THOMAS SOLL\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000105\",\"finishedDate\":null,\"fixRateValue\":330.17,\"fix_rate_value\":330.17,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"578\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"MONTO FACTURADO BS. 2298.39 MAS HONORARIOS E IMPUESTOS DE LEY\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000105\",\"processing\":false,\"secondaryExternalCode\":\"1390\",\"secondary_external_code\":\"1390\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-05-29 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000106 - PERMANENCIA TRANSITORIA POR TURISMO O VISITA 60 D\\u00cdAS - SHRADDHA ROHIT ERRAM\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000106\",\"finishedDate\":null,\"fixRateValue\":444.68,\"fix_rate_value\":444.68,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"579\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 3.095,92.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000106\",\"processing\":false,\"secondaryExternalCode\":\"1401\",\"secondary_external_code\":\"1401\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-05-29 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000107 - PERMANENCIA TRANSITORIA POR TURISMO O VISITA 60 DIAS - JIYAAN ROHIT ERRAM\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000107\",\"finishedDate\":null,\"fixRateValue\":444.68,\"fix_rate_value\":444.68,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"580\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 3.095,92.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000107\",\"processing\":false,\"secondaryExternalCode\":\"1402\",\"secondary_external_code\":\"1402\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-05-29 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000108 - VISA OBJETO DETERMINADO 30 D\\u00cdAS - YOEL ALEXANDER GARC\\u00cdA PULIDO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000108\",\"finishedDate\":null,\"fixRateValue\":581.03,\"fix_rate_value\":581.03,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"581\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 4.044,61.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000108\",\"processing\":false,\"secondaryExternalCode\":\"1403\",\"secondary_external_code\":\"1403\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-05-29 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000109 - PERMANENCIA TEMPORAL POR UN A\\u00d1O SIN CONTRATO EXTRANJERO - CARSTEN NICK NEU\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000109\",\"finishedDate\":null,\"fixRateValue\":1299.42,\"fix_rate_value\":1299.42,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"582\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 9.044,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000109\",\"processing\":false,\"secondaryExternalCode\":\"1404\",\"secondary_external_code\":\"1404\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-05-29 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000110 - AUTORIZACI\\u00d3N DE CARTA DE INVITACI\\u00d3N - LEIF ANDREAS LUNDBERG\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000110\",\"finishedDate\":null,\"fixRateValue\":330.17,\"fix_rate_value\":330.17,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"583\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 2.298,39.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000110\",\"processing\":false,\"secondaryExternalCode\":\"1405\",\"secondary_external_code\":\"1405\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-05-29 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000111 - AUTORIZACI\\u00d3N DE CARTA DE INVITACI\\u00d3N - JORGE LUIS PAZ PEREZ\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000111\",\"finishedDate\":null,\"fixRateValue\":330.17,\"fix_rate_value\":330.17,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"584\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 2.298,39.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000111\",\"processing\":false,\"secondaryExternalCode\":\"1406\",\"secondary_external_code\":\"1406\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-05-29 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000112 - AUTORIZACI\\u00d3N DE CARTA DE INVITACI\\u00d3N - KJELL IVAR OTTOSSON\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000112\",\"finishedDate\":null,\"fixRateValue\":330.17,\"fix_rate_value\":330.17,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"585\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 2.298,39.- INCLUYEN GASTOS E IMPUESTOS DE LEY\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000112\",\"processing\":false,\"secondaryExternalCode\":\"1407\",\"secondary_external_code\":\"1407\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-05-29 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000113 - AUTORIZACI\\u00d3N DE CARTA DE INVITACI\\u00d3N - SERGIO PEREZ FUENTES TOSTADO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000113\",\"finishedDate\":null,\"fixRateValue\":330.17,\"fix_rate_value\":330.17,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"586\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 2.298,39.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000113\",\"processing\":false,\"secondaryExternalCode\":\"1408\",\"secondary_external_code\":\"1408\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-05-29 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000114 - AUTORIZACI\\u00d3N DE CARTA DE INVITACI\\u00d3N - HABIB GILBERTO HERNANDEZ GARCIA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000114\",\"finishedDate\":null,\"fixRateValue\":330.17,\"fix_rate_value\":330.17,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"587\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 2.298,39.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000114\",\"processing\":false,\"secondaryExternalCode\":\"1409\",\"secondary_external_code\":\"1409\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-05-31 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000116 - CEDULA DE EXTRANJERO \\u2013 GUNCHA AFSARI\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000116\",\"finishedDate\":null,\"fixRateValue\":257.83,\"fix_rate_value\":257.83,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"588\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000116\",\"processing\":false,\"secondaryExternalCode\":\"1415\",\"secondary_external_code\":\"1415\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-06-12 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000117 - AUTORIZACI\\u00d3N DE CARTA DE INVITACI\\u00d3N - BRYAN CHRISTOPHER MANDER\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000117\",\"finishedDate\":null,\"fixRateValue\":330.17,\"fix_rate_value\":330.17,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"589\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS, 2.298,39 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000117\",\"processing\":false,\"secondaryExternalCode\":\"1431\",\"secondary_external_code\":\"1431\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-06-25 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000118 - VISA DE OBJETO DETERMINADO 90 D\\u00cdAS -KJELL IVAR OTTOSSON\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000118\",\"finishedDate\":null,\"fixRateValue\":771.26,\"fix_rate_value\":771.26,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"590\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 5.368, 22.- INCLUYEN GASTOS E IMPUESTOS DE LEY\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000118\",\"processing\":false,\"secondaryExternalCode\":\"1445\",\"secondary_external_code\":\"1445\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-06-25 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000119 - AUTORIZACI\\u00d3N DE CARTA DE INVITACI\\u00d3N - PAUL ALAN CLARK\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000119\",\"finishedDate\":null,\"fixRateValue\":330.17,\"fix_rate_value\":330.17,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"591\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 2298,39.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000119\",\"processing\":false,\"secondaryExternalCode\":\"1446\",\"secondary_external_code\":\"1446\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-06-25 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000120 - AUTORIZACI\\u00d3N DE CARTA DE INVITACI\\u00d3N - PAUL ANTHONY SWINGLER\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000120\",\"finishedDate\":null,\"fixRateValue\":330.17,\"fix_rate_value\":330.17,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"592\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 2298,39.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000120\",\"processing\":false,\"secondaryExternalCode\":\"1447\",\"secondary_external_code\":\"1447\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-07-02 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000121 - AUTORIZACI\\u00d3N DE CARTA DE INVITACI\\u00d3N - Kristofer Karl Gustav Horkeby\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000121\",\"finishedDate\":null,\"fixRateValue\":330.17,\"fix_rate_value\":330.17,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"593\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 2.298.39.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000121\",\"processing\":false,\"secondaryExternalCode\":\"1469\",\"secondary_external_code\":\"1469\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-07-02 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000122 - VISA DE OBJETO DETERMINADO 90 D\\u00cdAS - SIMON PHILIPP LUEKE\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000122\",\"finishedDate\":null,\"fixRateValue\":771.26,\"fix_rate_value\":771.26,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"594\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 5.368,22.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000122\",\"processing\":false,\"secondaryExternalCode\":\"1470\",\"secondary_external_code\":\"1470\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-07-04 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000123 - VISA DE OBJETO DETERMINADO 90 D\\u00cdAS - SEBASTIAN HITZ\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000123\",\"finishedDate\":null,\"fixRateValue\":771.26,\"fix_rate_value\":771.26,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"595\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 5.368,22.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000123\",\"processing\":false,\"secondaryExternalCode\":\"1478\",\"secondary_external_code\":\"1478\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-07-04 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000124 - PERMANENCIA POR UN A\\u00d1O SIN CONTRATO EXTRANJERO- FELIX VOGEL\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000124\",\"finishedDate\":null,\"fixRateValue\":1356.89,\"fix_rate_value\":1356.89,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"596\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 9.444,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000124\",\"processing\":false,\"secondaryExternalCode\":\"1479\",\"secondary_external_code\":\"1479\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-07-04 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000125 - PERMANENCIA POR UN A\\u00d1O SIN CONTRATO EXTRANJERO- THOMAS SOLL\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000125\",\"finishedDate\":null,\"fixRateValue\":1356.89,\"fix_rate_value\":1356.89,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"597\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 9.444.15.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000125\",\"processing\":false,\"secondaryExternalCode\":\"1480\",\"secondary_external_code\":\"1480\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-07-10 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000127 - TRASPASO DE PERMANENCIA TEMPORAL DE 1 A\\u00d1O - WILHELM SEBASTIAN ZEH\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000127\",\"finishedDate\":null,\"fixRateValue\":412.07,\"fix_rate_value\":412.07,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"598\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 2.868,97.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000127\",\"processing\":false,\"secondaryExternalCode\":\"1493\",\"secondary_external_code\":\"1493\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-07-10 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000128 - VISA DE OBJETO DETERMINADO 90 D\\u00cdAS - RENE BAUMGARTNER\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000128\",\"finishedDate\":null,\"fixRateValue\":771.26,\"fix_rate_value\":771.26,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"599\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 5.368,22.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000128\",\"processing\":false,\"secondaryExternalCode\":\"1496\",\"secondary_external_code\":\"1496\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-07-17 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000129 - AUTORIZACI\\u00d3N DE CARTA DE INVITACI\\u00d3N - ALI MAGHSOUDI\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000129\",\"finishedDate\":null,\"fixRateValue\":330.17,\"fix_rate_value\":330.17,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"600\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 2.298,39.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000129\",\"processing\":false,\"secondaryExternalCode\":\"1504\",\"secondary_external_code\":\"1504\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-07-17 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000130 - AUTORIZACI\\u00d3N DE CARTA DE INVITACI\\u00d3N - HOANG VAN DUONG\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000130\",\"finishedDate\":null,\"fixRateValue\":330.17,\"fix_rate_value\":330.17,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"601\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 2.298,39.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000130\",\"processing\":false,\"secondaryExternalCode\":\"1505\",\"secondary_external_code\":\"1505\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-07-17 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000131 - VISA OBJETO DETERMINADO 30 D\\u00cdAS - RENATO SCARPELIN\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000131\",\"finishedDate\":null,\"fixRateValue\":581.03,\"fix_rate_value\":581.03,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"602\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 4.044,61.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000131\",\"processing\":false,\"secondaryExternalCode\":\"1509\",\"secondary_external_code\":\"1509\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-07-31 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000135 - AUTORIZACI\\u00d3N DE CARTA DE INVITACI\\u00d3N - MATTIAS CHRISTIAN BERGLUND\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000135\",\"finishedDate\":null,\"fixRateValue\":330.17,\"fix_rate_value\":330.17,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"603\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 2.298,39.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000135\",\"processing\":false,\"secondaryExternalCode\":\"1528\",\"secondary_external_code\":\"1528\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-07-31 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000136 - AUTORIZACI\\u00d3N DE CARTA DE INVITACI\\u00d3N - EMIL AGUILON\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000136\",\"finishedDate\":null,\"fixRateValue\":330.17,\"fix_rate_value\":330.17,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"604\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 2.298,39.- INCLUYE GASTOS E IMPUESTOS DE LEY\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000136\",\"processing\":false,\"secondaryExternalCode\":\"1529\",\"secondary_external_code\":\"1529\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2019-08-05 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000137 - PERMANENCIA TEMPORAL DE 1 A\\u00d1O POR TRABAJO \\u2013 STEPHAN MARCUS KREUZER\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000137\",\"finishedDate\":null,\"fixRateValue\":1356.92,\"fix_rate_value\":1356.92,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"605\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000137\",\"processing\":false,\"secondaryExternalCode\":\"1539\",\"secondary_external_code\":\"1539\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2019-08-07 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000138 - Cedula de Identidad de Extranjero - ARIEL FAUSTINO DE GUZM\\u00c1N\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000138\",\"finishedDate\":null,\"fixRateValue\":247.83,\"fix_rate_value\":247.83,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"606\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000138\",\"processing\":false,\"secondaryExternalCode\":\"1540\",\"secondary_external_code\":\"1540\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-08-09 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000142 - VISA DE OBJETO DETERMINADO 90 D\\u00cdAS - EMIL AGUILON MAGNAYE\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000142\",\"finishedDate\":null,\"fixRateValue\":771.26,\"fix_rate_value\":771.26,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"607\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE 5.368,22.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000142\",\"processing\":false,\"secondaryExternalCode\":\"1547\",\"secondary_external_code\":\"1547\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-08-09 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000143 - VISA DE OBJETO DETERMINADO 90 D\\u00cdAS - SERGIO DE JESUS HERRERA IZQUIERDO.\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000143\",\"finishedDate\":null,\"fixRateValue\":771.26,\"fix_rate_value\":771.26,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"608\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE 5.368,22.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000143\",\"processing\":false,\"secondaryExternalCode\":\"1548\",\"secondary_external_code\":\"1548\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-08-09 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000144 - PERMANENCIA POR UN A\\u00d1O SIN CONTRATO EXTRANJERO- MICHAEL STEFAN MATJESCHK\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000144\",\"finishedDate\":null,\"fixRateValue\":1356.89,\"fix_rate_value\":1356.89,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"609\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 9.444,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000144\",\"processing\":false,\"secondaryExternalCode\":\"1549\",\"secondary_external_code\":\"1549\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-08-09 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000145 - PERMANENCIA POR UN A\\u00d1O SIN CONTRATO EXTRANJERO- BAR HENNING\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000145\",\"finishedDate\":null,\"fixRateValue\":1356.89,\"fix_rate_value\":1356.89,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"610\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 9.444,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000145\",\"processing\":false,\"secondaryExternalCode\":\"1550\",\"secondary_external_code\":\"1550\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-08-09 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000146 - PERMANENCIA POR UN A\\u00d1O SIN CONTRATO EXTRANJERO- TINO GUSTSCHOW\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000146\",\"finishedDate\":null,\"fixRateValue\":1356.89,\"fix_rate_value\":1356.89,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"611\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 9.444,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000146\",\"processing\":false,\"secondaryExternalCode\":\"1551\",\"secondary_external_code\":\"1551\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-08-09 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000147 - VISA DE OBJETO DETERMINADO 180 D\\u00cdAS - RADOSLAW PIOTR GRZEMOWSKI\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000147\",\"finishedDate\":null,\"fixRateValue\":874.66,\"fix_rate_value\":874.66,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"612\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 6.018,89.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000147\",\"processing\":false,\"secondaryExternalCode\":\"1552\",\"secondary_external_code\":\"1552\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-08-09 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000148 - PERMANENCIA POR UN A\\u00d1O SIN CONTRATO EXTRANJERO- KENNETH TEETZEN\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000148\",\"finishedDate\":null,\"fixRateValue\":1356.89,\"fix_rate_value\":1356.89,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"613\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 9.444,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000148\",\"processing\":false,\"secondaryExternalCode\":\"1553\",\"secondary_external_code\":\"1553\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-08-09 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000149 - PERMANENCIA POR UN A\\u00d1O SIN CONTRATO EXTRANJERO- CARLOS MANUEL SILVA RODRIGUEZ\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000149\",\"finishedDate\":null,\"fixRateValue\":1356.89,\"fix_rate_value\":1356.89,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"614\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 9.444,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000149\",\"processing\":false,\"secondaryExternalCode\":\"1554\",\"secondary_external_code\":\"1554\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-08-09 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000150 - AMPLIACI\\u00d3N DE VISA OBJETO DETERMINADO 30 D\\u00cdAS - JASON LLOYD THIBODEAUX\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000150\",\"finishedDate\":null,\"fixRateValue\":633.76,\"fix_rate_value\":633.76,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"615\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 4.411,62.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000150\",\"processing\":false,\"secondaryExternalCode\":\"1555\",\"secondary_external_code\":\"1555\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-08-14 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000155 - PERMANENCIA POR UN A\\u00d1O CON CARTA DE INVITACI\\u00d3N- HOANG VAN DUONG\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000155\",\"finishedDate\":null,\"fixRateValue\":1356.89,\"fix_rate_value\":1356.89,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"617\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 9.444,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000155\",\"processing\":false,\"secondaryExternalCode\":\"1577\",\"secondary_external_code\":\"1577\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-08-23 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000159 - CEDULA DE EXTRANJERO- MAKUS KOPRAX\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000159\",\"finishedDate\":null,\"fixRateValue\":257.76,\"fix_rate_value\":257.76,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"618\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1794,47.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000159\",\"processing\":false,\"secondaryExternalCode\":\"1597\",\"secondary_external_code\":\"1597\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-08-23 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000160 - C\\u00c9DULA DE EXTRANJERO- UNGAR TAMAS\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000160\",\"finishedDate\":null,\"fixRateValue\":257.76,\"fix_rate_value\":257.76,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"619\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1.794,47.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000160\",\"processing\":false,\"secondaryExternalCode\":\"1598\",\"secondary_external_code\":\"1598\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-08-23 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000161 - CEDULA DE EXTRANJERO- ALEXANDRE DOS SANTOS\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000161\",\"finishedDate\":null,\"fixRateValue\":257.76,\"fix_rate_value\":257.76,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"620\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1.794,47.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000161\",\"processing\":false,\"secondaryExternalCode\":\"1599\",\"secondary_external_code\":\"1599\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-08-27 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000163 - SEGUNDA AUTORIZACI\\u00d3N DE CARTA DE INVITACI\\u00d3N - LEIF ANDREAS LUNDBERG\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000163\",\"finishedDate\":null,\"fixRateValue\":330.17,\"fix_rate_value\":330.17,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"621\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 2.298,39.- INCLUYE GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000163\",\"processing\":false,\"secondaryExternalCode\":\"1612\",\"secondary_external_code\":\"1612\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-08-27 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000164 - SEGUNDA AUTORIZACI\\u00d3N DE CARTA DE INVITACI\\u00d3N - YOEL ALEXANDER GARCIA PULIDO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000164\",\"finishedDate\":null,\"fixRateValue\":330.17,\"fix_rate_value\":330.17,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"622\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 2.298,39.- INCLUYE GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000164\",\"processing\":false,\"secondaryExternalCode\":\"1613\",\"secondary_external_code\":\"1613\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-08-27 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000165 - SEGUNDA AUTORIZACI\\u00d3N DE CARTA DE INVITACI\\u00d3N -HABIB GILBERTO HERNANDEZ GARCIA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000165\",\"finishedDate\":null,\"fixRateValue\":330.17,\"fix_rate_value\":330.17,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"623\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 2.298,39.- INCLUYE GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000165\",\"processing\":false,\"secondaryExternalCode\":\"1614\",\"secondary_external_code\":\"1614\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-08-27 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000166 - SEGUNDA AUTORIZACI\\u00d3N DE CARTA DE INVITACI\\u00d3N - JORGE LUIS PAZ PEREZ\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000166\",\"finishedDate\":null,\"fixRateValue\":330.17,\"fix_rate_value\":330.17,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"624\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 2.298,39.- INCLUYE GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000166\",\"processing\":false,\"secondaryExternalCode\":\"1615\",\"secondary_external_code\":\"1615\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-08-27 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000167 - SEGUNDA AUTORIZACI\\u00d3N DE CARTA DE INVITACI\\u00d3N - PAUL ANTHONY SWINGLER\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000167\",\"finishedDate\":null,\"fixRateValue\":330.17,\"fix_rate_value\":330.17,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"625\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 2.298,39.- INCLUYE GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000167\",\"processing\":false,\"secondaryExternalCode\":\"1616\",\"secondary_external_code\":\"1616\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-08-27 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000168 - AUTORIZACI\\u00d3N DE CARTA DE INVITACI\\u00d3N - PAUL HOUSTON SAPP\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000168\",\"finishedDate\":null,\"fixRateValue\":330.17,\"fix_rate_value\":330.17,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"626\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 2.298,39.- INCLUYE GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000168\",\"processing\":false,\"secondaryExternalCode\":\"1617\",\"secondary_external_code\":\"1617\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-08-27 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000169 - AUTORIZACI\\u00d3N DE CARTA DE INVITACI\\u00d3N - COLM KHRISTOPHER KEANE\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000169\",\"finishedDate\":null,\"fixRateValue\":330.17,\"fix_rate_value\":330.17,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"627\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 2.298,39.- INCLUYE GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000169\",\"processing\":false,\"secondaryExternalCode\":\"1618\",\"secondary_external_code\":\"1618\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-09-10 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000171 - AUTORIZACI\\u00d3N DE CARTA DE INVITACI\\u00d3N - TEH TIONG WEI\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000171\",\"finishedDate\":null,\"fixRateValue\":323.42,\"fix_rate_value\":323.42,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"628\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 2.251,75.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000171\",\"processing\":false,\"secondaryExternalCode\":\"1642\",\"secondary_external_code\":\"1642\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-09-10 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000172 - RESIDENCIA MERCOSUR POR 2 A\\u00d1OS - CARLOS VIEIRA PATRICIO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000172\",\"finishedDate\":null,\"fixRateValue\":831.89,\"fix_rate_value\":831.89,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"629\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 5.790,49.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000172\",\"processing\":false,\"secondaryExternalCode\":\"1643\",\"secondary_external_code\":\"1643\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-09-10 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000173 - PERMANENCIA POR UN A\\u00d1O SIN CONTRATO EXTRANJERO- JASON LLOYD THIBODEAUX\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000173\",\"finishedDate\":null,\"fixRateValue\":1306.75,\"fix_rate_value\":1306.75,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"630\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 9.095,49.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000173\",\"processing\":false,\"secondaryExternalCode\":\"1644\",\"secondary_external_code\":\"1644\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-09-10 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000174 - CEDULA DE EXTRANJERO- THOMAS SOLL\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000174\",\"finishedDate\":null,\"fixRateValue\":257.76,\"fix_rate_value\":257.76,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"631\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1.794,47.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000174\",\"processing\":false,\"secondaryExternalCode\":\"1645\",\"secondary_external_code\":\"1645\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-09-10 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000175 - CEDULA DE EXTRANJERO- HENNING BAR\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000175\",\"finishedDate\":null,\"fixRateValue\":257.76,\"fix_rate_value\":257.76,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"632\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1.794,47.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000175\",\"processing\":false,\"secondaryExternalCode\":\"1646\",\"secondary_external_code\":\"1646\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"11\",\"externalCode\":\"AR21\",\"name\":\"Der. Administrativo\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-09-10 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000176 - RENOVACION CEDULA DE EXTRANJERO- CARLOS MANUEEL SILVA RODRIGUEZ\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000176\",\"finishedDate\":null,\"fixRateValue\":257.76,\"fix_rate_value\":257.76,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"633\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1.794,47.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000176\",\"processing\":false,\"secondaryExternalCode\":\"1647\",\"secondary_external_code\":\"1647\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-09-10 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000177 - PERMANENCIA POR UN A\\u00d1O SIN CONTRATO EXTRANJERO- LUIZ CARLOS FELICIANO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000177\",\"finishedDate\":null,\"fixRateValue\":1306.75,\"fix_rate_value\":1306.75,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"634\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 9.095,49.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000177\",\"processing\":false,\"secondaryExternalCode\":\"1648\",\"secondary_external_code\":\"1648\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-09-10 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000178 - RENOVACI\\u00d3N C\\u00c9DULA DE EXTRANJERO- LUIZ CARLOS FELICIANO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000178\",\"finishedDate\":null,\"fixRateValue\":257.76,\"fix_rate_value\":257.76,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"635\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1.794,47.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000178\",\"processing\":false,\"secondaryExternalCode\":\"1649\",\"secondary_external_code\":\"1649\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-09-10 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000179 - C\\u00c9DULA DE EXTRANJERO- TINO GUTSCHOW\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000179\",\"finishedDate\":null,\"fixRateValue\":257.76,\"fix_rate_value\":257.76,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"636\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1.794,47.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000179\",\"processing\":false,\"secondaryExternalCode\":\"1650\",\"secondary_external_code\":\"1650\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-09-10 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000180 - CEDULA DE EXTRANJERO- MICHAEL STEFAN NATJESCHK\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000180\",\"finishedDate\":null,\"fixRateValue\":257.76,\"fix_rate_value\":257.76,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"637\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1.794,47.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000180\",\"processing\":false,\"secondaryExternalCode\":\"1651\",\"secondary_external_code\":\"1651\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-09-10 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000181 - C\\u00c9DULA DE EXTRANJERO- STEPHAN MARCUS KREUZER\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000181\",\"finishedDate\":null,\"fixRateValue\":257.76,\"fix_rate_value\":257.76,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"638\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1.794,47.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000181\",\"processing\":false,\"secondaryExternalCode\":\"1652\",\"secondary_external_code\":\"1652\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-09-10 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000182 - AMPLIACI\\u00d3N DE VISA D OBJETO DETERMINADO 30 D\\u00cdAS - COLM CHRISTOPHER KEANE\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000182\",\"finishedDate\":null,\"fixRateValue\":633.76,\"fix_rate_value\":633.76,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"639\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 4.411,62.- INCLUYE GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000182\",\"processing\":false,\"secondaryExternalCode\":\"1653\",\"secondary_external_code\":\"1653\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-09-10 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000183 - PERMANENCIA POR UN A\\u00d1O SIN CONTRATO EXTRANJERO- COLM CHRISTOPHER KEANE\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000183\",\"finishedDate\":null,\"fixRateValue\":1356.89,\"fix_rate_value\":1356.89,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"640\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 9.444,15.- INCLUYE GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000183\",\"processing\":false,\"secondaryExternalCode\":\"1654\",\"secondary_external_code\":\"1654\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-09-10 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000184 - VISA DE OBJETO DETERMINADO 90 D\\u00cdAS - JORGE LUIS PAZ PEREZ\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000184\",\"finishedDate\":null,\"fixRateValue\":771.26,\"fix_rate_value\":771.26,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"641\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 5.368,22.- INCLUYEN GASTOS E IMPUESTOS DE LEY\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000184\",\"processing\":false,\"secondaryExternalCode\":\"1657\",\"secondary_external_code\":\"1657\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-09-11 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000185 - CEDULA DE EXTRANJERO- VAN DUONG HOANG\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000185\",\"finishedDate\":null,\"fixRateValue\":257.76,\"fix_rate_value\":257.76,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"642\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1.794,47.-INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000185\",\"processing\":false,\"secondaryExternalCode\":\"1661\",\"secondary_external_code\":\"1661\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-09-13 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000187 - VISA DE OBJETO DETERMINADO 90 D\\u00cdAS - MATTIAS CHRISTIAN BERGLUND\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000187\",\"finishedDate\":null,\"fixRateValue\":771.26,\"fix_rate_value\":771.26,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"643\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"los honorarios de Bs. 5.368,22.- incluyen gastos e impuestos de ley.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000187\",\"processing\":false,\"secondaryExternalCode\":\"1665\",\"secondary_external_code\":\"1665\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-09-13 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000188 - PERMANENCIA POR UN A\\u00d1O SIN CONTRATO EXTRANJERO- WILHELM SEBASTIAN ZEH\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000188\",\"finishedDate\":null,\"fixRateValue\":1356.89,\"fix_rate_value\":1356.89,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"644\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 9.444,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000188\",\"processing\":false,\"secondaryExternalCode\":\"1666\",\"secondary_external_code\":\"1666\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-09-23 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000191 - PERMANENCIA POR UN A\\u00d1O SIN CONTRATO EXTRANJERO- SIMON PHILIPP LUEKE\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000191\",\"finishedDate\":null,\"fixRateValue\":1356.89,\"fix_rate_value\":1356.89,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"645\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 9.444,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000191\",\"processing\":false,\"secondaryExternalCode\":\"1684\",\"secondary_external_code\":\"1684\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-09-30 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000194 - CEDULA DE EXTRANJERO- JASON LLOYD THIBODEAUX\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000194\",\"finishedDate\":null,\"fixRateValue\":257.76,\"fix_rate_value\":257.76,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"646\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1.794,47.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000194\",\"processing\":false,\"secondaryExternalCode\":\"1700\",\"secondary_external_code\":\"1700\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2019-09-30 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000195 - Autorizaci\\u00f3n de carta de invitaci\\u00f3n. - GUNNAR FRANS EMIL JANSSON\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000195\",\"finishedDate\":null,\"fixRateValue\":322.99,\"fix_rate_value\":322.99,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"647\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000195\",\"processing\":false,\"secondaryExternalCode\":\"1698\",\"secondary_external_code\":\"1698\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2019-10-04 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000198 - PERMANENCIA TEMPORAL POR 1 A\\u00d1O SIN CONTRATO - GENEBRALDO ANTONIO URDANETA MONROY\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000198\",\"finishedDate\":null,\"fixRateValue\":1356.92,\"fix_rate_value\":1356.92,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"648\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000198\",\"processing\":false,\"secondaryExternalCode\":\"1711\",\"secondary_external_code\":\"1711\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2019-10-04 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000199 - C\\u00c9DULA DE EXTRANJERO - GENEBRALDO ANTONIO URDANETA MONROY\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000199\",\"finishedDate\":null,\"fixRateValue\":257.83,\"fix_rate_value\":257.83,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"649\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000199\",\"processing\":false,\"secondaryExternalCode\":\"1712\",\"secondary_external_code\":\"1712\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2019-10-07 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000202 - CEDULA DE EXTRANJERO - CARLOS VIEIRA PATRICIO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000202\",\"finishedDate\":null,\"fixRateValue\":257.83,\"fix_rate_value\":257.83,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"650\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000202\",\"processing\":false,\"secondaryExternalCode\":\"1713\",\"secondary_external_code\":\"1713\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-10-07 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000203 - PERMANENCIA TEMPORAL DE 1A\\u00d1O POR TRABAJO - PAUL HERRMANN\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000203\",\"finishedDate\":null,\"fixRateValue\":1356.89,\"fix_rate_value\":1356.89,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"651\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000203\",\"processing\":false,\"secondaryExternalCode\":\"1714\",\"secondary_external_code\":\"1714\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-10-09 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000204 - AUTORIZACI\\u00d3N DE CARTA DE INVITACI\\u00d3N - SEBASTIAN HITZ\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000204\",\"finishedDate\":null,\"fixRateValue\":330.17,\"fix_rate_value\":330.17,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"652\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 2.298,39.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000204\",\"processing\":false,\"secondaryExternalCode\":\"1723\",\"secondary_external_code\":\"1723\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-10-09 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000205 - AUTORIZACI\\u00d3N DE CARTA DE INVITACI\\u00d3N - ANDREAS PREIHS\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000205\",\"finishedDate\":null,\"fixRateValue\":330.17,\"fix_rate_value\":330.17,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"653\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 2.298,39.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000205\",\"processing\":false,\"secondaryExternalCode\":\"1724\",\"secondary_external_code\":\"1724\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-10-11 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000207 - RENOVACI\\u00d3N C\\u00c9DULA DE EXTRANJERO- WILHELM SEBASTIAN ZEH\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000207\",\"finishedDate\":null,\"fixRateValue\":257.76,\"fix_rate_value\":257.76,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"654\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1.794,47.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000207\",\"processing\":false,\"secondaryExternalCode\":\"1729\",\"secondary_external_code\":\"1729\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-10-11 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000208 - C\\u00c9DULA DE EXTRANJERO- SIMON PHILIPP LUEKE\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000208\",\"finishedDate\":null,\"fixRateValue\":257.76,\"fix_rate_value\":257.76,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"655\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1.794,47.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000208\",\"processing\":false,\"secondaryExternalCode\":\"1730\",\"secondary_external_code\":\"1730\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}}]}}}\n","time":"2025-07-30T10:50:53-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: POST https://apinewtm.com/graphql/\nHeaders: map[Accept:[application/json] Authorization:[Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJpYXQiOjE3NTM4ODY1MjIsImV4cCI6MTc1Mzk2NjUyMiwiaWQiOjEwNSwidXNlcm5hbWUiOiJpbnRlZ3JhY2lvbmVzQGVtYmEuYm8iLCJhcGlrZXkiOiI5Yzg0ZjYzZTRlMzk2ZGZmOWU5ZjU3NDI5OGRmZWUzOSIsImFwaWtleUNyZWF0ZWRBdCI6eyJkYXRlIjoiMjAyNS0wNy0xNyAxMDo0MToyNS4wMDAwMDAiLCJ0aW1lem9uZV90eXBlIjozLCJ0aW1lem9uZSI6IkFtZXJpY2EvQm9nb3RhIn0sImZ1bGxOYW1lIjoiSW50ZWdyYWNpw7NuIEVNQkEiLCJlbWFpbCI6ImludGVncmFjaW9uZXNAZW1iYS5ibyIsImxvY2FsZSI6ImVzIiwiZGF5c0FsbG93ZWQiOjMwLCJpc0Nvb3JkaW5hdG9yIjpmYWxzZSwidHlwZVRhc2tWaWV3IjoibGlzdHMiLCJkYXlzYWxsb3ciOjMwLCJyb2xlcyI6e30sInNob3J0X25hbWUiOiJJTi5FTUJBIiwicGVybWlzc2lvbnMiOlsic3luY19leHRlcm5hbF9idXNpbmVzcyIsInN5bmNfZXh0ZXJuYWxfY3VzdG9tZXIiLCJzeW5jX2V4dGVybmFsX21pbGVzdG9uZSIsImFic2VuY2VfYXBwcm92ZSIsImFic2VuY2VfY3JlYXRlX2FsbCIsImFic2VuY2VfY3JlYXRlX293biIsImFic2VuY2VfbWVudSIsImFjY291bnRpbmdfYnVzaW5lc3NfbGlzdCIsImFjY291bnRpbmdfY3VzdG9tZXJfbGlzdCIsImJpbGxpbmdfcGVyaW9kX2RlbGV0ZV9hbGwiLCJiaWxsaW5nX3BlcmlvZF9lZGl0X2FsbCIsImJpbGxpbmdfcGVyaW9kX2xpc3QiLCJiaWxsaW5nX3BlcmlvZF9yZWFjdGl2YXRlIiwiYm9hcmRfcmF0ZV91c2VyX2NyZWF0ZSIsImJvYXJkX3JhdGVfdXNlcl9lZGl0IiwiYnVzaW5lc3NfY3JlYXRlIiwiYnVzaW5lc3NfZGVzY3JpcHRpb25fc2F2ZSIsImJ1c2luZXNzX2VkaXQiLCJidXNpbmVzc19saXN0X2FsbCIsImJ1c2luZXNzX21lbnUiLCJidXNpbmVzc19yZXNwb25zaWJsZV9saXN0X2FsbCIsImJ1c2luZXNzX3NlZV9iaWxsaW5nX2luZm8iLCJidXNpbmVzc2VzX2FsbG93ZWRfdXNlcl9jcmVhdGUiLCJidXNpbmVzc2VzX2FsbG93ZWRfdXNlcl9kZWxldGUiLCJjb21wYW55X2Rpc2FibGUiLCJjb21wYW55X2VkaXQiLCJjb21wYW55X2xpc3QiLCJjb25jZXB0X2NyZWF0ZSIsImNvbmNlcHRfZWRpdCIsImNvbmNlcHRfbWVudSIsImNvbnRhY3RfY3JlYXRlIiwiY29udGFjdF9jcmVhdGVfZmFzdCIsImNvbnRhY3RfZWRpdCIsImNvbnRhY3RfbGlzdCIsImNvbnRhY3RfbWVudSIsImN1c3RvbWVyX2NyZWF0ZSIsImN1c3RvbWVyX2NyZWF0ZV9mYXN0IiwiY3VzdG9tZXJfZWRpdCIsImN1c3RvbWVyX2xpc3QiLCJjdXN0b21lcl9saXN0X2FsbCIsImN1c3RvbWVyX21lbnUiLCJleHBlbnNlX2NyZWF0ZV9hbGwiLCJleHBlbnNlX2RlbGV0ZV9hbGwiLCJleHBlbnNlX2R1cGxpY2F0ZSIsImV4cGVuc2VfZWRpdF9hbGwiLCJleHBlbnNlX2xpc3RfYWxsIiwiZXhwZW5zZV9tZW51IiwiZXhwZW5zZV9yZWplY3RfYWxsIiwiZmFiX3Nob3ciLCJmaWxlX21lbnUiLCJnZW9yZWZlcmVuY2VfY3JlYXRlIiwiZ2VvcmVmZXJlbmNlX2VkaXQiLCJnZW9yZWZlcmVuY2VfbWVudSIsImdvX3RvX2xlZ2FjeSIsImluZGljYXRvcnNfbWVudSIsImludm9pY2VfY3JlYXRlIiwiaW52b2ljZV9kZXRhaWxfbGlzdF9hbGwiLCJpbnZvaWNlX2ZpeF90aW1lc19jdXN0b21fdmFsdWUiLCJpbnZvaWNlX2xpc3RfYWxsIiwiaW52b2ljZWFkdmFuY2VfY3JlYXRlIiwiaW52b2ljZWFkdmFuY2VfbGlzdCIsImludm9pY2VhZHZhbmNlX3VwZGF0ZSIsImxvZ19saXN0X2FsbCIsImxvZ19saXN0X293biIsIm1pbGVzdG9uZV9jcmVhdGUiLCJtaWxlc3RvbmVfZGVsZXRlIiwibWlsZXN0b25lX2VkaXQiLCJtb250aGx5X2ZpeF9yYXRlX2dyb3VwX2NyZWF0ZSIsIm1vbnRobHlfZml4X3JhdGVfZ3JvdXBfZWRpdCIsIm1vbnRobHlfdXNlcl9jb3N0X2NyZWF0ZSIsIm1vbnRobHlfdXNlcl9jb3N0X2VkaXQiLCJwYXltZW50X2NyZWF0ZSIsInBheW1lbnRfZGVsZXRlIiwicGF5bWVudF9lZGl0IiwicGF5bWVudF9tZW51IiwicHJvY2VkdXJlX21lbnUiLCJwcm9jZWR1cmVfcmF0ZV9jcmVhdGUiLCJwcm9jZWR1cmVfcmF0ZV9kZXRhaWxfY3JlYXRlIiwicHJvY2VkdXJlX3JhdGVfZGV0YWlsX2VkaXQiLCJwcm9jZWR1cmVfcmF0ZV9kZXRhaWxfbGlzdCIsInByb2NlZHVyZV9yYXRlX2VkaXQiLCJwcm9jZWR1cmVfcmF0ZV9saXN0IiwicHJvY2VkdXJlX3JhdGVfbWVudSIsInByb2NlZHVyZV90cmFuc2FjdGlvbl9saXN0IiwicHJvamVjdF9hcmNoaXZlX2Nhc2NhZGVfYWxsIiwicHJvamVjdF9kZWxldGVfY2FzY2FkZV9hbGwiLCJwcm9qZWN0X3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInJhdGVfYnVzaW5lc3NfY2F0ZWdvcnlfY3JlYXRlIiwicmF0ZV9idXNpbmVzc19jYXRlZ29yeV9lZGl0IiwicmF0ZV9idXNpbmVzc191c2VyX2NyZWF0ZSIsInJhdGVfYnVzaW5lc3NfdXNlcl9lZGl0IiwicmF0ZV9leGNoYW5nZV9jcmVhdGUiLCJyYXRlX2V4Y2hhbmdlX2VkaXQiLCJyYXRlX2V4Y2hhbmdlX2xpc3QiLCJyYXRlX3VzZXJfY3JlYXRlIiwicmF0ZV91c2VyX2VkaXQiLCJyb2xlX2NyZWF0ZSIsInJvbGVfZWRpdF9hbGwiLCJyb2xlX2xpc3RfYWxsIiwic2VjdGlvbl9hcmNoaXZlX2Nhc2NhZGVfYWxsIiwic2VjdGlvbl9kZWxldGVfY2FzY2FkZV9hbGwiLCJzZWN0aW9uX3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInNlZV9tZW51X3JhdGVfZXhjaGFuZ2UiLCJzZXJpZV9jcmVhdGUiLCJzZXJpZV9lZGl0Iiwic2VyaWVfbWVudSIsInNldHRpbmdzX3ZpZXciLCJzdXBwbGllcl9jcmVhdGUiLCJ0YXNrX2FkZF90aW1lX2FsbCIsInRhc2tfYWRkX3RpbWVfb3duIiwidGFza19hc3NpZ25lZF91c2VyX2VtYWlsIiwidGFza19jbG9zZWRfZW1haWwiLCJ0YXNrX2NyZWF0ZV9hbGwiLCJ0YXNrX2NyZWF0ZV9jb21tZW50X2VtYWlsIiwidGFza19jcmVhdGVfc2VsZiIsInRhc2tfY3JlYXRlX3RlYW0iLCJ0YXNrX2RlbGV0ZV9hbGwiLCJ0YXNrX2RlbGV0ZV9vd24iLCJ0YXNrX2RlbGV0ZV90ZWFtIiwidGFza19lZGl0X2FsbCIsInRhc2tfZWRpdF9kdWVfZGF0ZSIsInRhc2tfZWRpdF9vd24iLCJ0YXNrX2VkaXRfdGVhbSIsInRhc2tfbGlzdF9hbGwiLCJ0YXNrX2xpc3Rfb3duIiwidGFza19saXN0X3RlYW0iLCJ0YXNrX21hc3NpdmVpbXBvcnQiLCJ0YXNrX21lbnUiLCJ0YXNrX21pZ3JhdGlvbiIsInRhc2tfc2V0X2FkZGl0aW9uYWxfYXNzaWduZWVzIiwidGFza19zZXRfZHVlX2RhdGUiLCJ0YXNrX3NldF9lc3RpbWF0ZWRfdGltZSIsInRhc2tfc2V0X3ByaW9yaXR5IiwidGFza19zZXRfcHJvZ3Jlc3MiLCJ0YXhfZWRpdF9hbGwiLCJ0YXhfbGlzdF9hbGwiLCJ0ZWFtX2FyY2hpdmVfY2FzY2FkZV9hbGwiLCJ0ZWFtX2NyZWF0ZV9hbGwiLCJ0ZWFtX2RlbGV0ZV9hbGwiLCJ0ZWFtX2VkaXRfYWxsIiwidGVhbV9saXN0X2FsbCIsInRlYW1fbGlzdF9vd24iLCJ0ZWFtX3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInRpbWVfYWNjZXB0X2FsbCIsInRpbWVfYWNjZXB0X293biIsInRpbWVfYXBwcm92ZV9hbGwiLCJ0aW1lX2FwcHJvdmVfb3duIiwidGltZV9jcmVhdGVfYWxsIiwidGltZV9jcmVhdGVfb3duIiwidGltZV9kZWxldGVfYWxsIiwidGltZV9kZWxldGVfb3duIiwidGltZV9kZW55X2FsbCIsInRpbWVfZGVueV9vd24iLCJ0aW1lX2Rvd25sb2FkZmlsZV9hbGwiLCJ0aW1lX2Rvd25sb2FkZmlsZV9vd24iLCJ0aW1lX2VkaXRfYWxsIiwidGltZV9lZGl0X2Nsb3NlX3BlcmlvZF9hbGwiLCJ0aW1lX2VkaXRfY2xvc2VfcGVyaW9kX293biIsInRpbWVfZWRpdF9vd24iLCJ0aW1lX2xpc3RfYWxsIiwidGltZV9saXN0X293biIsInRpbWVfbWVudSIsInRpbWVfbWludXRlc196ZXJvIiwidGltZV9yZWplY3RfYWxsIiwidGltZV9yZXN0cmljdGVkX3BlcmlvZF9jcmVhdGUiLCJ0aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX2VkaXQiLCJ0aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX21lbnUiLCJ0aW1lX3NoYXJlX2FsbCIsInRpbWVfc2hhcmVfb3duIiwidGltZV9zaG93X2NhbGVuZGFyX3ZpZXciLCJ0aW1lX3VwbG9hZGZpbGVfYWxsIiwidGltZV91cGxvYWRmaWxlX293biIsInRyYW5zYWN0aW9uX2FkYXB0ZXJfbGlzdCIsInRyYW5zYWN0aW9uX2xpc3QiLCJ1c2VyX2Fic2VuY2VzX3Nob3ciLCJ1c2VyX2Nvc3RfY3JlYXRlIiwidXNlcl9jb3N0X2VkaXQiLCJ1c2VyX2Nvc3RfbGlzdCIsInVzZXJfY29zdF9tZW51IiwidXNlcl9jb3N0X3JhdGVfY3JlYXRlIiwidXNlcl9jb3N0X3JhdGVfZWRpdCIsInVzZXJfY29zdF9yYXRlX2xpc3QiLCJ1c2VyX2NyZWF0ZSIsInVzZXJfZGlzYWJsZSIsInVzZXJfZWRpdCIsInVzZXJfZWRpdF9kYXlzX2FsbG93X29ubHkiLCJ1c2VyX2dyb3VwX3JvbGVfY3JlYXRlX2FsbCIsInVzZXJfZ3JvdXBfcm9sZV9kZWxldGVfYWxsIiwidXNlcl9ncm91cF9yb2xlX2VkaXRfYWxsIiwidXNlcl9ncm91cF9yb2xlc19saXN0X2FsbCIsInVzZXJfbGlzdCIsInVzZXJfbGlzdF9hbGwiLCJ1c2VyX21hc3NfYWN0aXZhdGlvbiIsInVzZXJfcHJvZHVjdGl2aXR5X2NyZWF0ZSIsInVzZXJfcHJvZHVjdGl2aXR5X2Rpc2FibGUiLCJ1c2VyX3Byb2R1Y3Rpdml0eV9lZGl0IiwidXNlcl9wcm9kdWN0aXZpdHlfZW5hYmxlIiwidXNlcl9wcm9kdWN0aXZpdHlfbWVudSIsInVzZXJfdGltZV9yZXN0cmljdGVkX3BlcmlvZF9jcmVhdGUiLCJ1c2VyX3RpbWVfcmVzdHJpY3RlZF9wZXJpb2RfZGVsZXRlIiwidXNlcl90aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX2VkaXQiLCJ1c2VyZ3JvdXBfY3JlYXRlX2FsbCIsInVzZXJncm91cF9kZWxldGVfYWxsIiwidXNlcmdyb3VwX2VkaXRfYWxsIiwidXNlcmdyb3VwX2xpc3RfYWxsIiwidXNlcmdyb3VwX21lbnUiLCJ1c2Vyc191c2VyX2dyb3VwX2NyZWF0ZV9hbGwiLCJ1c2Vyc191c2VyX2dyb3VwX2RlbGV0ZV9hbGwiLCJ1c2Vyc191c2VyX2dyb3VwX2VkaXRfYWxsIiwidXNlcnNfdXNlcl9ncm91cHNfbGlzdF9hbGwiXSwiaG9tZXBhZ2UiOm51bGx9.kShN7NXGoaz1oFro-yYNyIpIEcnNpo1GiB8SFGKFUJtDQoqyp1I1w-CMA8Kta3vWXnUZwx-y2z1yVSJaMpZbqQgKFlakpcf6351bZSL8IAUPExSfLz0HYYCWFx-Usx94BBTqosKsRhnT8PkPN3dGxs8-XTIEDi9gN-Pk9OSHmM5mPkTsaaxTY40M-F7Y0Up2y6s_lwFaX13CmstiYZSXzyKL9SUBBx-E6-8qQAfuKPIoZ_50jSGPW98-IkAcWwqO6yGf-M07dSfFZ2vLfwc3ulHm2p8jVSmRxJ_O43BEWQD5cvqGbVIvSMXkS4y98DL4Vencjjg27iu3CUJsDNBBTg] Content-Type:[application/json] Origin:[https://azure-function.timemanagerweb.com] Tenant-Name:[pruebas-dos] User-Agent:[Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36]]\nBody: map[query:query ($limit: Int, $orderBy: String, $orderDesc: Boolean, $page: Int) { BusinessMeta(limit: $limit, orderBy: $orderBy, orderDesc: $orderDesc, page: $page) { meta { hasNextPage hasPreviousPage limit next page pages previous total } rows { apply_procedures billable business_customer_code caseNumber closed_date confidential created_at discountAmount discountPercent displayName enableBusinessAllowedUsers expedient finishedDate fixRateValue fix_rate_value hourLimit hour_limit id internal_code isBillable limitAlert notes partialCharges partial_charges primary_external_code processing secondaryExternalCode secondary_external_code status statusMarking updated_at withIVA responsible { created_at daysAllow email enabled fullName id locale shortName superAdmin updated_at userType username } customer { id name primary_external_code company { id name } } practiceArea { id externalCode name } } } } variables:map[limit:100 orderBy:orderBy orderDesc:true page:12]]\n","time":"2025-07-30T10:50:53-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: POST https://apinewtm.com/graphql/ | Status: 200 | Duration: 4.4772607s\nHeaders: map[Access-Control-Allow-Credentials:[true] Access-Control-Allow-Origin:[https://azure-function.timemanagerweb.com] Access-Control-Expose-Headers:[link, access-control-allow-credentials] Cache-Control:[no-cache, private] Content-Type:[application/json] Date:[Wed, 30 Jul 2025 14:50:57 GMT] Server:[] Vary:[Authorization]]\nBody: {\"errors\":[{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",3,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",3,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",3,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",3,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",3,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",3,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",3,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",3,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",3,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",3,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",3,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",4,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",4,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",4,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",4,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",4,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",4,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",4,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",4,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",4,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",4,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",4,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",5,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",5,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",5,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",5,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",5,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",5,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",5,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",5,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",5,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",5,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",5,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",6,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",6,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",6,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",6,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",6,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",6,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",6,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",6,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",6,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",6,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",6,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",7,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",7,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",7,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",7,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",7,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",7,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",7,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",7,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",7,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",7,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",7,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",8,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",8,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",8,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",8,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",8,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",8,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",8,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",8,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",8,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",8,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",8,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",9,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",9,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",9,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",9,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",9,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",9,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",9,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",9,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",9,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",9,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",9,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",10,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",10,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",10,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",10,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",10,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",10,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",10,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",10,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",10,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",10,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",10,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",11,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",11,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",11,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",11,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",11,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",11,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",11,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",11,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",11,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",11,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",11,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",16,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",16,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",16,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",16,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",16,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",16,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",16,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",16,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",16,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",16,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",16,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",18,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",18,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",18,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",18,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",18,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",18,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",18,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",18,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",18,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",18,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",18,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",23,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",23,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",23,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",23,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",23,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",23,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",23,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",23,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",23,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",23,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",23,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",24,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",24,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",24,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",24,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",24,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",24,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",24,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",24,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",24,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",24,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",24,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",25,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",25,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",25,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",25,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",25,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",25,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",25,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",25,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",25,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",25,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",25,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",26,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",26,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",26,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",26,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",26,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",26,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",26,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",26,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",26,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",26,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",26,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",27,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",27,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",27,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",27,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",27,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",27,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",27,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",27,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",27,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",27,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",27,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",29,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",29,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",29,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",29,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",29,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",29,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",29,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",29,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",29,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",29,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",29,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",32,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",32,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",32,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",32,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",32,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",32,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",32,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",32,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",32,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",32,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",32,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",33,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",33,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",33,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",33,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",33,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",33,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",33,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",33,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",33,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",33,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",33,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",34,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",34,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",34,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",34,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",34,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",34,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",34,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",34,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",34,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",34,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",34,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",35,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",35,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",35,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",35,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",35,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",35,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",35,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",35,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",35,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",35,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",35,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",36,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",36,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",36,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",36,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",36,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",36,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",36,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",36,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",36,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",36,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",36,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",37,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",37,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",37,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",37,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",37,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",37,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",37,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",37,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",37,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",37,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",37,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",38,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",38,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",38,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",38,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",38,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",38,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",38,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",38,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",38,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",38,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",38,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",39,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",39,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",39,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",39,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",39,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",39,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",39,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",39,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",39,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",39,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",39,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",50,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",50,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",50,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",50,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",50,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",50,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",50,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",50,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",50,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",50,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",50,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",51,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",51,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",51,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",51,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",51,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",51,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",51,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",51,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",51,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",51,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",51,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",52,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",52,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",52,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",52,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",52,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",52,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",52,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",52,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",52,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",52,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",52,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",53,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",53,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",53,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",53,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",53,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",53,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",53,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",53,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",53,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",53,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",53,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",54,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",54,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",54,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",54,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",54,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",54,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",54,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",54,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",54,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",54,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",54,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",55,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",55,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",55,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",55,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",55,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",55,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",55,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",55,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",55,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",55,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",55,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",57,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",57,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",57,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",57,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",57,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",57,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",57,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",57,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",57,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",57,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",57,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",58,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",58,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",58,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",58,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",58,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",58,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",58,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",58,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",58,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",58,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",58,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",59,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",59,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",59,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",59,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",59,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",59,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",59,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",59,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",59,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",59,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",59,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",60,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",60,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",60,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",60,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",60,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",60,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",60,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",60,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",60,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",60,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",60,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",61,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",61,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",61,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",61,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",61,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",61,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",61,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",61,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",61,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",61,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",61,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",62,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",62,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",62,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",62,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",62,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",62,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",62,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",62,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",62,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",62,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",62,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",63,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",63,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",63,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",63,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",63,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",63,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",63,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",63,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",63,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",63,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",63,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",64,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",64,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",64,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",64,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",64,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",64,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",64,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",64,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",64,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",64,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",64,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",65,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",65,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",65,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",65,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",65,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",65,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",65,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",65,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",65,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",65,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",65,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",66,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",66,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",66,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",66,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",66,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",66,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",66,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",66,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",66,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",66,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",66,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",67,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",67,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",67,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",67,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",67,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",67,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",67,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",67,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",67,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",67,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",67,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",74,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",74,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",74,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",74,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",74,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",74,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",74,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",74,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",74,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",74,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",74,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",77,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",77,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",77,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",77,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",77,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",77,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",77,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",77,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",77,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",77,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",77,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",78,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",78,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",78,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",78,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",78,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",78,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",78,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",78,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",78,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",78,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",78,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",79,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",79,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",79,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",79,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",79,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",79,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",79,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",79,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",79,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",79,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",79,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",80,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",80,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",80,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",80,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",80,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",80,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",80,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",80,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",80,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",80,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",80,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",81,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",81,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",81,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",81,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",81,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",81,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",81,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",81,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",81,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",81,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",81,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",82,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",82,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",82,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",82,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",82,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",82,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",82,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",82,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",82,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",82,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",82,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",83,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",83,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",83,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",83,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",83,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",83,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",83,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",83,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",83,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",83,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",83,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",84,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",84,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",84,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",84,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",84,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",84,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",84,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",84,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",84,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",84,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",84,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",88,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",88,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",88,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",88,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",88,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",88,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",88,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",88,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",88,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",88,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",88,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",93,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",93,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",93,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",93,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",93,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",93,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",93,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",93,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",93,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",93,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",93,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",94,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",94,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",94,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",94,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",94,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",94,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",94,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",94,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",94,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",94,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",94,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",95,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",95,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",95,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",95,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",95,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",95,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",95,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",95,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",95,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",95,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",95,\"responsible\",\"username\"]}],\"data\":{\"BusinessMeta\":{\"meta\":{\"hasNextPage\":true,\"hasPreviousPage\":true,\"limit\":100,\"next\":13,\"page\":12,\"pages\":16,\"previous\":11,\"total\":1573},\"rows\":[{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-20 00:00:00\",\"confidential\":false,\"created_at\":\"2019-10-02 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000236-SR-000197 - Servicios Legales Mensuales(FM)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000236-SR-000197\",\"finishedDate\":null,\"fixRateValue\":500,\"fix_rate_value\":500,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"150\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"SE CALCULA DESDE EL MES DE SEPTEIMBRE 2021 por esta raz\\u00f3n las horas no se acumulan\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000236-SR-000197\",\"processing\":false,\"secondaryExternalCode\":\"1703\",\"secondary_external_code\":\"1703\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-20 20:36:20\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"amorenog@emba.com\",\"enabled\":true,\"fullName\":\"Andres Moreno Gutierrez\",\"id\":5,\"locale\":\"es\",\"shortName\":\"amoreno\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"amorenog@emba.com\"},\"customer\":{\"id\":\"575\",\"name\":\"SPC Impresores S.A.\",\"primary_external_code\":\"236\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":\"\",\"caseNumber\":null,\"closed_date\":\"2024-03-01 00:00:00\",\"confidential\":false,\"created_at\":\"2023-03-06 05:00:00\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000530-SR-000594 - Asesoramiento Legal Permanente\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000530-SR-000594\",\"finishedDate\":\"2024-02-29 00:00:00\",\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"151\",\"internal_code\":\"\",\"isBillable\":true,\"limitAlert\":null,\"notes\":\"A partir del mes de Enero 2024 cambia honorarios por horas.\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000530-SR-000594\",\"processing\":false,\"secondaryExternalCode\":\"4002\",\"secondary_external_code\":\"4002\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-23 17:32:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"583\",\"name\":\"INVERSIONES TL S.A.\",\"primary_external_code\":\"530\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-20 00:00:00\",\"confidential\":false,\"created_at\":\"2023-01-20 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000533-SR-000571 - Servicios Legales Mensuales\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000533-SR-000571\",\"finishedDate\":null,\"fixRateValue\":2500,\"fix_rate_value\":2500,\"hourLimit\":12,\"hour_limit\":12,\"id\":\"152\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Retainer mensual: USD 1500 Representaci\\u00f3n legal y domicilio: USD 800 Adicionar representaci\\u00f3n legal y domicilio Sucursal Cochabamba: USD 200 (Aplicable desde Noviembre 2023)\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000533-SR-000571\",\"processing\":false,\"secondaryExternalCode\":\"3811\",\"secondary_external_code\":\"3811\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-20 22:01:21\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"nicoln042001@gmail.com\",\"enabled\":true,\"fullName\":\"Daniel Marcelo Arredondo Zelada\",\"id\":6,\"locale\":\"es\",\"shortName\":\"darredon\",\"superAdmin\":false,\"updated_at\":\"2024-09-03 11:43:07\",\"userType\":1,\"username\":\"darredondo@emba.com.bo\"},\"customer\":{\"id\":\"586\",\"name\":\"TECTONIQ BOLIVIA SRL\",\"primary_external_code\":\"533\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"30\",\"externalCode\":\"AR33\",\"name\":\"Servicios Legales Mensuales\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-10-11 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000209 - VISA DE OBJETO DETERMINADO 90 D\\u00cdAS - TEH TIONG WEI\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000209\",\"finishedDate\":null,\"fixRateValue\":771.26,\"fix_rate_value\":771.26,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"656\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 5.368,22.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000209\",\"processing\":false,\"secondaryExternalCode\":\"1731\",\"secondary_external_code\":\"1731\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-10-14 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000211 - PERMANENCIA POR UN A\\u00d1O SIN CONTRATO EXTRANJERO- `RADOSLAW PIOTR GRZEMOWSKI\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000211\",\"finishedDate\":null,\"fixRateValue\":1356.89,\"fix_rate_value\":1356.89,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"657\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 9.444,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000211\",\"processing\":false,\"secondaryExternalCode\":\"1736\",\"secondary_external_code\":\"1736\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2019-11-13 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000214 - VISA DE OBJETO DETERMINADO 90 D\\u00cdAS - DIANA ZSUZSANNA FOLLATH\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000214\",\"finishedDate\":null,\"fixRateValue\":771.26,\"fix_rate_value\":771.26,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"658\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 5.368,22.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000214\",\"processing\":false,\"secondaryExternalCode\":\"1783\",\"secondary_external_code\":\"1783\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2020-01-15 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000225 - PERMANENCIA TEMPORAL DE 1 A\\u00d1O SIN CONTRATO - RADOSLAW PIOTR GREZEMOWSKI\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000225\",\"finishedDate\":null,\"fixRateValue\":1356.89,\"fix_rate_value\":1356.89,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"659\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 9.444,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000225\",\"processing\":false,\"secondaryExternalCode\":\"1876\",\"secondary_external_code\":\"1876\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2020-01-21 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000227 - VISA DE OBJETO DETERMINADO 180 D\\u00cdAS - ROBERT HUBNER\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000227\",\"finishedDate\":null,\"fixRateValue\":864.66,\"fix_rate_value\":864.66,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"660\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 6.018,89.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000227\",\"processing\":false,\"secondaryExternalCode\":\"1884\",\"secondary_external_code\":\"1884\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2020-02-03 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000232 - VISA DE OBJETO DETERMINADO 90 D\\u00cdAS - TIONG WEI TEH\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000232\",\"finishedDate\":null,\"fixRateValue\":771.26,\"fix_rate_value\":771.26,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"661\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 5.368,85.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000232\",\"processing\":false,\"secondaryExternalCode\":\"1902\",\"secondary_external_code\":\"1902\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2020-02-07 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000233 - RESIDENCIA MERCOSUR POR 2 A\\u00d1OS - EDUARDO DO NASCIMENTO OLIVEIRA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000233\",\"finishedDate\":null,\"fixRateValue\":840.37,\"fix_rate_value\":840.37,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"662\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 5.849,10.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000233\",\"processing\":false,\"secondaryExternalCode\":\"1917\",\"secondary_external_code\":\"1917\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2020-02-07 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000234 - RENOVACION CEDULA DE EXTRANJERO- RADOSLAW PIORT GREMOWSKI\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000234\",\"finishedDate\":null,\"fixRateValue\":257.76,\"fix_rate_value\":257.76,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"663\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1.794,47.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000234\",\"processing\":false,\"secondaryExternalCode\":\"1919\",\"secondary_external_code\":\"1919\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2020-02-10 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000236 - VISA DE OBJETO DETERMINADO 90 D\\u00cdAS - MANUEL IVAN MURILLO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000236\",\"finishedDate\":null,\"fixRateValue\":771.26,\"fix_rate_value\":771.26,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"664\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 5.368,22.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000236\",\"processing\":false,\"secondaryExternalCode\":\"1935\",\"secondary_external_code\":\"1935\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2020-02-18 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000238 - PERMANENCIA DE UN A\\u00d1O SIN CONTRATO EXTRANJERO - MARIO FERMIZA PIDO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000238\",\"finishedDate\":null,\"fixRateValue\":1356.89,\"fix_rate_value\":1356.89,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"665\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOD HONORARIOS DE BS. 9.444,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000238\",\"processing\":false,\"secondaryExternalCode\":\"1940\",\"secondary_external_code\":\"1940\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2020-02-18 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000239 - PERMANENCIA DE UN A\\u00d1O SIN CONTRATO EXTRANJERO- JOSE LUIS LOPEZ MEDINA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000239\",\"finishedDate\":null,\"fixRateValue\":1356.91,\"fix_rate_value\":1356.91,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"666\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 9.444,15.-INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000239\",\"processing\":false,\"secondaryExternalCode\":\"1941\",\"secondary_external_code\":\"1941\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 16:16:08\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2020-02-18 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000240 - PERMANENCIA TEMPORAL DE 1 A\\u00d1O SIN CONTRATO EXTRANJERO - SEBASTIAN HITZ\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000240\",\"finishedDate\":null,\"fixRateValue\":1356.89,\"fix_rate_value\":1356.89,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"667\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 9.444,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000240\",\"processing\":false,\"secondaryExternalCode\":\"1942\",\"secondary_external_code\":\"1942\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2020-02-18 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000241 - C\\u00c9DULA DE EXTRANJERO- EDUARDO DO NASCIMENTO OLIVEIRA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000241\",\"finishedDate\":null,\"fixRateValue\":257.76,\"fix_rate_value\":257.76,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"668\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS.1.794,47.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000241\",\"processing\":false,\"secondaryExternalCode\":\"1952\",\"secondary_external_code\":\"1952\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2020-03-04 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000243 - AUTORIZACI\\u00d3N DE CARTA DE INVITACI\\u00d3N - ALAA ZITOUN\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000243\",\"finishedDate\":null,\"fixRateValue\":330.17,\"fix_rate_value\":330.17,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"669\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 2.298,39.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000243\",\"processing\":false,\"secondaryExternalCode\":\"1984\",\"secondary_external_code\":\"1984\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2020-03-04 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000244 - AMPLIACI\\u00d3N DE PERMANENCIA POR TRABAJO 30 D\\u00cdAS - ALAA ZITOUN\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000244\",\"finishedDate\":null,\"fixRateValue\":633.76,\"fix_rate_value\":633.76,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"670\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 4.411,62.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000244\",\"processing\":false,\"secondaryExternalCode\":\"1985\",\"secondary_external_code\":\"1985\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2020-03-12 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000249 - PERMANENCIA POR UN A\\u00d1O SIN CONTRATO EXTRANJERO- SINAN OZCAN\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000249\",\"finishedDate\":null,\"fixRateValue\":1356.89,\"fix_rate_value\":1356.89,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"671\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 9.444,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000249\",\"processing\":false,\"secondaryExternalCode\":\"2001\",\"secondary_external_code\":\"2001\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2020-03-12 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000250 - C\\u00c9DULA DE EXTRANJERO - SEBASTIAN HITZ\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000250\",\"finishedDate\":null,\"fixRateValue\":257.76,\"fix_rate_value\":257.76,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"672\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1.794,47.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000250\",\"processing\":false,\"secondaryExternalCode\":\"2003\",\"secondary_external_code\":\"2003\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2020-08-14 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000270 - PERMANENCIA TEMPORAL DE 1 A\\u00d1O SIN CONTRATO - LUCCAS GIMENEZ PIMENTA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000270\",\"finishedDate\":null,\"fixRateValue\":1356.89,\"fix_rate_value\":1356.89,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"673\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 9.444,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY,\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000270\",\"processing\":false,\"secondaryExternalCode\":\"2217\",\"secondary_external_code\":\"2217\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2020-08-14 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000271 - RESIDENCIA MERCOSUR POR 2 A\\u00d1OS - ARTIME SERGIO DA SILVA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000271\",\"finishedDate\":null,\"fixRateValue\":840.37,\"fix_rate_value\":840.37,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"674\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 5.849,10.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000271\",\"processing\":false,\"secondaryExternalCode\":\"2218\",\"secondary_external_code\":\"2218\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2020-08-24 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000273 - PERMANENCIA TRANSITORIA POR TRABAJO 180 DIAS- HUGO LEONARDO DANDARO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000273\",\"finishedDate\":null,\"fixRateValue\":864.66,\"fix_rate_value\":864.66,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"675\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 6.018,89.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\\n\\nSIEMENS BRASIL\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000273\",\"processing\":false,\"secondaryExternalCode\":\"2221\",\"secondary_external_code\":\"2221\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2020-08-24 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000274 - RENOVACION CEDULA DE EXTRANJERO- LUCCAS GIMENEZ PIMENTA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000274\",\"finishedDate\":null,\"fixRateValue\":257.76,\"fix_rate_value\":257.76,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"676\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1.794,47.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000274\",\"processing\":false,\"secondaryExternalCode\":\"2225\",\"secondary_external_code\":\"2225\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2020-09-20 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000282 - PERMANENCIA POR UN A\\u00d1O SIN CONTRATO EXTRANJERO- ALIN-STEFAN MARGAU\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000282\",\"finishedDate\":null,\"fixRateValue\":1356.89,\"fix_rate_value\":1356.89,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"677\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 9.444,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\\n\\nNOTA: A SOLICITUD DEL CLIENTE SE FACTURARA A LA EMPRESA INTERNACIONAL SPENCER\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000282\",\"processing\":false,\"secondaryExternalCode\":\"2273\",\"secondary_external_code\":\"2273\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2020-09-20 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000283 - PERMANENCIA DE UN A\\u00d1O SIN CONTRATO EXTRANJERO- JASON LLOYD THIBODEAUX\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000283\",\"finishedDate\":null,\"fixRateValue\":1356.89,\"fix_rate_value\":1356.89,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"678\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 9.444,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\\n\\nNOTA: A SOLICITUD DEL CLIENTE SE FACTURARA A LA EMPRESA INTERNACIONAL SPENCER\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000283\",\"processing\":false,\"secondaryExternalCode\":\"2274\",\"secondary_external_code\":\"2274\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2020-09-20 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000284 - PERMANENCIA TEMPORAL DE 1 A\\u00d1O SIN CONTRATO - STEVAN JAKSIC\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000284\",\"finishedDate\":null,\"fixRateValue\":1356.89,\"fix_rate_value\":1356.89,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"679\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 9.444,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\\n\\nNOTA: A SOLICITUD DEL CLIENTE SE FACTURARA A LA EMPRESA INTERNACIONAL SPENCER\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000284\",\"processing\":false,\"secondaryExternalCode\":\"2275\",\"secondary_external_code\":\"2275\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2020-09-20 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000285 - AUTORIZACI\\u00d3N DE CARTA DE INVITACI\\u00d3N - OLEGORIO AGUILAR ARMENTA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000285\",\"finishedDate\":null,\"fixRateValue\":330.17,\"fix_rate_value\":330.17,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"680\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 2.298,39.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000285\",\"processing\":false,\"secondaryExternalCode\":\"2281\",\"secondary_external_code\":\"2281\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2020-09-20 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000286 - AUTORIZACI\\u00d3N DE CARTA DE INVITACI\\u00d3N - TOBIAS HENGST\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000286\",\"finishedDate\":null,\"fixRateValue\":330.17,\"fix_rate_value\":330.17,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"681\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 2.298,39.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000286\",\"processing\":false,\"secondaryExternalCode\":\"2282\",\"secondary_external_code\":\"2282\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2020-09-20 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000287 - PERMANENCIA TRANSITORIA POR TRABAJO 30 D\\u00cdAS - JAIR CLAUBER MACHADO FONSECA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000287\",\"finishedDate\":null,\"fixRateValue\":633.76,\"fix_rate_value\":633.76,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"682\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 4.411,62.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\\n\\nNOTA: SIEMENS BRASIL\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000287\",\"processing\":false,\"secondaryExternalCode\":\"2283\",\"secondary_external_code\":\"2283\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2020-12-03 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000305 - RENOVACI\\u00d3N PERMANENCIA TEMPORAL POR 1 A\\u00d1O SIN CONTRATO - GENEBRALDO ANTONIO URDANETA MONROY\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000305\",\"finishedDate\":null,\"fixRateValue\":1356.89,\"fix_rate_value\":1356.89,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"683\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 9444.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000305\",\"processing\":false,\"secondaryExternalCode\":\"2385\",\"secondary_external_code\":\"2385\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2020-12-06 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000306 - PERMANENCIA POR UN A\\u00d1O SIN CONTRATO EXTRANJERO- ROBERT BEUCHEL\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000306\",\"finishedDate\":null,\"fixRateValue\":1356.89,\"fix_rate_value\":1356.89,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"684\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 9.444.15.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000306\",\"processing\":false,\"secondaryExternalCode\":\"2387\",\"secondary_external_code\":\"2387\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2020-12-06 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000307 - PERMANENCIA POR UN A\\u00d1O SIN CONTRATO EXTRANJERO - TEH TIONG WEI\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000307\",\"finishedDate\":null,\"fixRateValue\":1356.89,\"fix_rate_value\":1356.89,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"685\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE 9.444,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000307\",\"processing\":false,\"secondaryExternalCode\":\"2388\",\"secondary_external_code\":\"2388\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2020-12-10 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000310 - PERMANENCIA DE UN A\\u00d1O SIN CONTRATO EXTRANJERO - WILHELM SEBASTIAN ZEH\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000310\",\"finishedDate\":null,\"fixRateValue\":1356.89,\"fix_rate_value\":1356.89,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"686\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 9.444,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000310\",\"processing\":false,\"secondaryExternalCode\":\"2404\",\"secondary_external_code\":\"2404\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2020-12-23 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000315 - C\\u00c9DULA DE EXTRANJERO - STEVAN JAKSIC\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000315\",\"finishedDate\":null,\"fixRateValue\":257.76,\"fix_rate_value\":257.76,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"687\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1.794,47.- INCLUYE GASTOS E IMPUESTOS DE LEY\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000315\",\"processing\":false,\"secondaryExternalCode\":\"2419\",\"secondary_external_code\":\"2419\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2020-12-23 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000316 - C\\u00c9DULA DE EXTRANJERO - JASON LLOYD THIBODEAUX\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000316\",\"finishedDate\":null,\"fixRateValue\":257.76,\"fix_rate_value\":257.76,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"688\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1.794,47.- INCLUYE GASTOS E IMPUESTOS DE LEY\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000316\",\"processing\":false,\"secondaryExternalCode\":\"2420\",\"secondary_external_code\":\"2420\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 14:34:09\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2020-12-23 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000317 - C\\u00c9DULA DE EXTRANJERO - ALIN STEFAN MARGAU\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000317\",\"finishedDate\":null,\"fixRateValue\":257.76,\"fix_rate_value\":257.76,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"689\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1.794,47.- INCLUYE GASTOS E IMPUESTOS DE LEY\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000317\",\"processing\":false,\"secondaryExternalCode\":\"2421\",\"secondary_external_code\":\"2421\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 14:34:36\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2021-01-06 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000322 - C\\u00c9DULA DE EXTRANJERO - ROBERT BEUCHEL\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000322\",\"finishedDate\":null,\"fixRateValue\":257.76,\"fix_rate_value\":257.76,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"690\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1.794, 47.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000322\",\"processing\":false,\"secondaryExternalCode\":\"2448\",\"secondary_external_code\":\"2448\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 14:34:58\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2021-01-07 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000323 - RENOVACI\\u00d3N C\\u00c9DULA DE EXTRANJERO - WILHELM SEBASTIAN ZEH\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000323\",\"finishedDate\":null,\"fixRateValue\":257.76,\"fix_rate_value\":257.76,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"691\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1.794, 47.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000323\",\"processing\":false,\"secondaryExternalCode\":\"2449\",\"secondary_external_code\":\"2449\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 14:35:19\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2021-01-07 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000324 - C\\u00c9DULA DE EXTRANJERO - TIONG WEI TEH\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000324\",\"finishedDate\":null,\"fixRateValue\":257.76,\"fix_rate_value\":257.76,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"692\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1.794, 47.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000324\",\"processing\":false,\"secondaryExternalCode\":\"2450\",\"secondary_external_code\":\"2450\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 14:35:41\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2021-01-28 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000329 - RENOVACI\\u00d3N C\\u00c9DULA DE EXTRANJERO - GENEBRALDO ANTONIO URDANETA MONROY\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000329\",\"finishedDate\":null,\"fixRateValue\":257.76,\"fix_rate_value\":257.76,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"693\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1.794,47.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000329\",\"processing\":false,\"secondaryExternalCode\":\"2494\",\"secondary_external_code\":\"2494\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 14:36:01\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2021-02-09 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000331 - PERMANENCIA DE UN A\\u00d1O SIN CONTRATO EXTRANJERO- WILLIAN PEREIRA CALIMAN\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000331\",\"finishedDate\":null,\"fixRateValue\":1356.89,\"fix_rate_value\":1356.89,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"694\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 9.444,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\\n\\nSE PAGARA DESDE BRASIL\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000331\",\"processing\":false,\"secondaryExternalCode\":\"2505\",\"secondary_external_code\":\"2505\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 14:36:47\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2021-02-09 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000332 - C\\u00c9DULA DE EXTRANJERO - WILLIAN PEREIRA CALIMAN\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000332\",\"finishedDate\":null,\"fixRateValue\":257.76,\"fix_rate_value\":257.76,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"695\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1.794,47. INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000332\",\"processing\":false,\"secondaryExternalCode\":\"2506\",\"secondary_external_code\":\"2506\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 14:37:24\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2021-03-25 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000340 - RENOVACI\\u00d3N DE PERMANENCIA TEMPORAL DE 1 A\\u00d1O SIN CONTRATO EXTRANERO - MARIO FERMIZA PIDO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000340\",\"finishedDate\":null,\"fixRateValue\":1356.89,\"fix_rate_value\":1356.89,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"696\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 9.444,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000340\",\"processing\":false,\"secondaryExternalCode\":\"2574\",\"secondary_external_code\":\"2574\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 14:37:55\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2021-03-25 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000341 - PERMANENCIA TEMPORAL DE 1 A\\u00d1O SIN CONTRATO - SUNILKUMAR NAGINBHAI DAVE\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000341\",\"finishedDate\":null,\"fixRateValue\":1356.89,\"fix_rate_value\":1356.89,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"697\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 9.444,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000341\",\"processing\":false,\"secondaryExternalCode\":\"2575\",\"secondary_external_code\":\"2575\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 14:38:23\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2021-04-19 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000356 - PERMANENCIA TEMPORAL DE 1 A\\u00d1O SIN CONTRATO - JASMINE MORAWETZ\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000356\",\"finishedDate\":null,\"fixRateValue\":1356.89,\"fix_rate_value\":1356.89,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"698\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 9,444,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000356\",\"processing\":false,\"secondaryExternalCode\":\"2642\",\"secondary_external_code\":\"2642\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 14:39:09\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2021-04-19 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000357 - PERMANENCIA TRANSITORIA POR TRABAJO 90 DIAS- JULIO CESAR PIRES BISPO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000357\",\"finishedDate\":null,\"fixRateValue\":771.26,\"fix_rate_value\":771.26,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"699\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 5,368,22.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000357\",\"processing\":false,\"secondaryExternalCode\":\"2643\",\"secondary_external_code\":\"2643\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 14:42:01\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2021-04-19 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000358 - PERMANENCIA TRANSITORIA POR TRABAJO 90 D\\u00cdAS- MIGUEL ANGELO OLIVEIRA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000358\",\"finishedDate\":null,\"fixRateValue\":771.26,\"fix_rate_value\":771.26,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"700\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 5,368,22.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000358\",\"processing\":false,\"secondaryExternalCode\":\"2644\",\"secondary_external_code\":\"2644\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 14:42:25\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2021-04-28 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000369 - PERMANENCIA DE UN A\\u00d1O SIN CONTRATO EXTRANJERO - SUBODH KUMAR SINGHAL\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000369\",\"finishedDate\":null,\"fixRateValue\":1356.89,\"fix_rate_value\":1356.89,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"701\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 9.444,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000369\",\"processing\":false,\"secondaryExternalCode\":\"2656\",\"secondary_external_code\":\"2656\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 14:42:56\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2021-05-18 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000373 - RENOVACI\\u00d3N C\\u00c9DULA DE EXTRANJERO - MARIO FERMIZA PIDO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000373\",\"finishedDate\":null,\"fixRateValue\":257.76,\"fix_rate_value\":257.76,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"702\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORSRIOS DE BS. 1.794,47 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000373\",\"processing\":false,\"secondaryExternalCode\":\"2690\",\"secondary_external_code\":\"2690\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 14:43:22\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2021-05-18 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000374 - C\\u00c9DULA DE EXTRANJERO - JAZMINE MORAWETZ\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000374\",\"finishedDate\":null,\"fixRateValue\":257.76,\"fix_rate_value\":257.76,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"703\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1.794,47.- INCLUYE GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000374\",\"processing\":false,\"secondaryExternalCode\":\"2691\",\"secondary_external_code\":\"2691\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 14:43:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2021-05-25 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000379 - C\\u00c9DULA DE EXTRANJERO - SUBODH KUMAR SINGHAL\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000379\",\"finishedDate\":null,\"fixRateValue\":257.76,\"fix_rate_value\":257.76,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"704\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1794,47 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000379\",\"processing\":false,\"secondaryExternalCode\":\"2703\",\"secondary_external_code\":\"2703\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 14:44:04\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2021-05-26 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000380 - VISA DE OBJETO DETERMINADO 30 D\\u00cdAS AEROPUERTO - HECTOR LUIS BELISARIO CARDENAS\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000380\",\"finishedDate\":null,\"fixRateValue\":330.17,\"fix_rate_value\":330.17,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"705\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 2.298,39.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000380\",\"processing\":false,\"secondaryExternalCode\":\"2706\",\"secondary_external_code\":\"2706\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 14:44:26\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2021-07-07 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000396 - CEDULA EXTRANJERA - SUNILKUMAR NAGINBHAI DAVE\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000396\",\"finishedDate\":null,\"fixRateValue\":257.76,\"fix_rate_value\":257.76,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"706\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS BS. 1794.47 INCLUYEN GASTOS E IMPUESTOS DE LEY\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000396\",\"processing\":false,\"secondaryExternalCode\":\"2786\",\"secondary_external_code\":\"2786\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 14:44:44\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2021-07-07 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000397 - REGISTRO DE CARTA DE INVITACION - RADOSLAW PIOTR GREMOWSKI\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000397\",\"finishedDate\":null,\"fixRateValue\":330.17,\"fix_rate_value\":330.17,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"707\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS BS. 2298.39 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000397\",\"processing\":false,\"secondaryExternalCode\":\"2780\",\"secondary_external_code\":\"2780\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 14:45:03\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2021-07-07 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000398 - PERMANENCIA TRANSITORIA POR TRABAJO 30 D\\u00cdAS AEROPUERTO- EUSEBIO CORTEZ ZEGARRA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000398\",\"finishedDate\":null,\"fixRateValue\":330.17,\"fix_rate_value\":330.17,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"708\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS BS. 2298.39 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000398\",\"processing\":false,\"secondaryExternalCode\":\"2781\",\"secondary_external_code\":\"2781\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 14:45:25\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2021-08-19 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000414 - ANTECEDENTES APOSTILLADOS PARA VIAJE - HEINRICH DIRK FEULNER Y JUAN FRANCISCO PRADO CRESPO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000414\",\"finishedDate\":null,\"fixRateValue\":2039.94,\"fix_rate_value\":2039.94,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"709\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 14198,85 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000414\",\"processing\":false,\"secondaryExternalCode\":\"2896\",\"secondary_external_code\":\"2896\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 14:45:53\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2021-08-30 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000416 - C\\u00c9DULA DE EXTRANJERO - ALEX GILBERT A. DENIS\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000416\",\"finishedDate\":null,\"fixRateValue\":257.76,\"fix_rate_value\":257.76,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"710\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1794.47 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000416\",\"processing\":false,\"secondaryExternalCode\":\"2910\",\"secondary_external_code\":\"2910\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 14:46:15\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2021-08-30 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000417 - C\\u00c9DULA DE EXTRANJERO - JUAN FRANCISCO ARIAS RAMIREZ\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000417\",\"finishedDate\":null,\"fixRateValue\":257.76,\"fix_rate_value\":257.76,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"711\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1794.47 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000417\",\"processing\":false,\"secondaryExternalCode\":\"2911\",\"secondary_external_code\":\"2911\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 14:46:41\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2021-10-01 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000421 - OBTENCION DE FLCN Y REJAP PARA LA ADUANA NACIONAL - PERSONAL SIEMENS ENERGY\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000421\",\"finishedDate\":null,\"fixRateValue\":731.32,\"fix_rate_value\":731.32,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"712\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000421\",\"processing\":false,\"secondaryExternalCode\":\"2944\",\"secondary_external_code\":\"2944\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 16:17:18\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2021-10-26 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000426 - VISA DE OBJETO DETERMINADO AEROPUERTO - MANUEL ANGEL SANZ RODRIGUEZ\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000426\",\"finishedDate\":null,\"fixRateValue\":330.17,\"fix_rate_value\":330.17,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"713\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 2298.39 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000426\",\"processing\":false,\"secondaryExternalCode\":\"2974\",\"secondary_external_code\":\"2974\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 14:47:01\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2021-10-26 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000427 - VISA DE OBJETO DETERMINADO AEROPUERTO - TIM RAYMOND FRACE\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000427\",\"finishedDate\":null,\"fixRateValue\":330.17,\"fix_rate_value\":330.17,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"714\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 2298.33 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000427\",\"processing\":false,\"secondaryExternalCode\":\"2975\",\"secondary_external_code\":\"2975\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 14:47:19\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2021-10-26 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000428 - PERMANENCIA TRANSITORIA POR TRABAJO 30 D\\u00cdAS AEROPUERTO- TIM HOLD\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000428\",\"finishedDate\":null,\"fixRateValue\":330.17,\"fix_rate_value\":330.17,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"715\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 2298.39 INCLUYEN GASTOS E IMPPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000428\",\"processing\":false,\"secondaryExternalCode\":\"2977\",\"secondary_external_code\":\"2977\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 14:47:37\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2021-11-19 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000436 - PERMANENCIA DE UN A\\u00d1O SIN CONTRATO EXTRANJERO - JASON LLOYD THIBODEAUX\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000436\",\"finishedDate\":null,\"fixRateValue\":1356.89,\"fix_rate_value\":1356.89,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"716\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 9444.15 INCLUYEN GASTOS E IMPUESTOS DE LEY\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000436\",\"processing\":false,\"secondaryExternalCode\":\"3024\",\"secondary_external_code\":\"3024\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 14:47:56\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2021-12-15 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000441 - RENOVACION LICENCIA DE CONDUCIR - GELVIS SALVADOR VALDEZ SUAREZ\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000441\",\"finishedDate\":null,\"fixRateValue\":345.4,\"fix_rate_value\":345.4,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"717\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 2404.04 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000441\",\"processing\":false,\"secondaryExternalCode\":\"3058\",\"secondary_external_code\":\"3058\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 14:48:18\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-04-18 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000489 - VISA DE OBJETO DETERMINADO 30 DIAS AEROPUERTO - LESLIE CHARLES\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000489\",\"finishedDate\":null,\"fixRateValue\":330,\"fix_rate_value\":330,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"718\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 330 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000489\",\"processing\":false,\"secondaryExternalCode\":\"3300\",\"secondary_external_code\":\"3300\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-04-18 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000490 - VISA DE OBJETO DETERMINADO AEROPUERTO - GRZEGORZ DARIUSZ KASIAZEK\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000490\",\"finishedDate\":null,\"fixRateValue\":330,\"fix_rate_value\":330,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"719\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 330 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000490\",\"processing\":false,\"secondaryExternalCode\":\"3301\",\"secondary_external_code\":\"3301\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2022-05-11 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000497 - VISA DE OBJETO DETERMINADO 90 DIAS POR TRABAJO - GRZEGORZ DARIUSZ KASIAZEK\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000497\",\"finishedDate\":null,\"fixRateValue\":771.26,\"fix_rate_value\":771.26,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"720\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 5368.22 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000497\",\"processing\":false,\"secondaryExternalCode\":\"3383\",\"secondary_external_code\":\"3383\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 14:49:33\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2022-05-11 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000498 - VISA DE OBJETO DETERMINADO 90 DIAS POR TRABAJO - LESLIE CHARLES\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000498\",\"finishedDate\":null,\"fixRateValue\":771.26,\"fix_rate_value\":771.26,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"721\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 5368.22 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000498\",\"processing\":false,\"secondaryExternalCode\":\"3384\",\"secondary_external_code\":\"3384\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 14:50:06\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-05-18 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000501 - VISA DE OBJETO DETERMINADO 30 DIAS AEROPUERTO - GENEBRALDO ANTONIO URDANETA MONROY\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000501\",\"finishedDate\":null,\"fixRateValue\":330,\"fix_rate_value\":330,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"722\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 330 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000501\",\"processing\":false,\"secondaryExternalCode\":\"3389\",\"secondary_external_code\":\"3389\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2022-05-18 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000502 - VISA DE OBJETO DETERMINADO 180 D\\u00cdAS - CESAR AUGUSTO ESTRADA MATA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000502\",\"finishedDate\":null,\"fixRateValue\":864.66,\"fix_rate_value\":864.66,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"723\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 6018.89 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000502\",\"processing\":false,\"secondaryExternalCode\":\"3390\",\"secondary_external_code\":\"3390\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 14:50:52\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2022-09-27 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000234-SR-000537 - VISA TRANSITORIA DE 30 DIAS AEROPUERTO - DIEGO HECTOR VAZQUEZ\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000234-SR-000537\",\"finishedDate\":null,\"fixRateValue\":330,\"fix_rate_value\":330,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"724\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 2296.8 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000234-SR-000537\",\"processing\":false,\"secondaryExternalCode\":\"3600\",\"secondary_external_code\":\"3600\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 14:51:47\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"559\",\"name\":\"SIEMENS SOLUCIONES TEC SA TRAMITES MIGRATORIOS\",\"primary_external_code\":\"234\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2020-01-28 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000325-SR-000230 - Domicilio Legal (FM)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000325-SR-000230\",\"finishedDate\":null,\"fixRateValue\":241.38,\"fix_rate_value\":241.38,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"725\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000325-SR-000230\",\"processing\":false,\"secondaryExternalCode\":\"1894\",\"secondary_external_code\":\"1894\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"565\",\"name\":\"SMI ENVASES INDUSTRIAS BOLIVIA SA\",\"primary_external_code\":\"325\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":1,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-01-11 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000459-SR-000447 - Asesor\\u00eda Legal\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000459-SR-000447\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"726\",\"internal_code\":null,\"isBillable\":false,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000459-SR-000447\",\"processing\":false,\"secondaryExternalCode\":\"3094\",\"secondary_external_code\":\"3094\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:17\",\"daysAllow\":302,\"email\":\"lchalco@emba.com\",\"enabled\":true,\"fullName\":\"Limbert Alfredo Chalco Herrera\",\"id\":68,\"locale\":\"es\",\"shortName\":\"lchalco\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":0,\"username\":\"lchalco@emba.com\"},\"customer\":{\"id\":\"570\",\"name\":\"SOCIEDAD INVERSIONES INMOBILIARIAS SOUTH VALLEYS S.A.\",\"primary_external_code\":\"459\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2019-08-23 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000126-SR-000162 - RESIDENCIA MERCOSUR POR 2 A\\u00d1OS + C\\u00c9DULA DE EXTRANJERO + AUTORIZACI\\u00d3N EXTRAORDINARIA - FRANCISCO AUGUSTO SIREDEY OLIVARES\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000126-SR-000162\",\"finishedDate\":null,\"fixRateValue\":1298.13,\"fix_rate_value\":1298.13,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"727\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 9.035,57.- incluyen gastos e impuestos de ley.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000126-SR-000162\",\"processing\":false,\"secondaryExternalCode\":\"1592\",\"secondary_external_code\":\"1592\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 14:52:40\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"572\",\"name\":\"SOLARIS BOLIVIA SRL\",\"primary_external_code\":\"126\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-20 00:00:00\",\"confidential\":false,\"created_at\":\"2023-07-28 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000530-SR-000677 - Representaci\\u00f3nLegal\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000530-SR-000677\",\"finishedDate\":null,\"fixRateValue\":250,\"fix_rate_value\":250,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"731\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Cobrar desde el 01 de abril de 2023\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000530-SR-000677\",\"processing\":false,\"secondaryExternalCode\":\"4238\",\"secondary_external_code\":\"4238\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-20 19:14:19\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"583\",\"name\":\"INVERSIONES TL S.A.\",\"primary_external_code\":\"530\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-20 00:00:00\",\"confidential\":false,\"created_at\":\"2023-07-28 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000530-SR-000678 - Sindicatura\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000530-SR-000678\",\"finishedDate\":null,\"fixRateValue\":250,\"fix_rate_value\":250,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"732\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Cobrar desde el 01 de abril de 2023\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000530-SR-000678\",\"processing\":false,\"secondaryExternalCode\":\"4237\",\"secondary_external_code\":\"4237\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-20 19:15:22\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"583\",\"name\":\"INVERSIONES TL S.A.\",\"primary_external_code\":\"530\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-09-13 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000530-SR-000710 - PERMANENCIA TRANSITORIA POR TRABAJO 180 DIAS - ULISES ESCOBAR GARCIA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000530-SR-000710\",\"finishedDate\":null,\"fixRateValue\":810,\"fix_rate_value\":810,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"733\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 810 INCLUYEN GASTOS E IMPUESTO DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000530-SR-000710\",\"processing\":false,\"secondaryExternalCode\":\"4348\",\"secondary_external_code\":\"4348\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"583\",\"name\":\"INVERSIONES TL S.A.\",\"primary_external_code\":\"530\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-09-13 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000530-SR-000711 - PERMANENCIA TRANSITORIA POR TRABAJO 180 DIAS - CARLA PATRICIA ORELLANA DEXTRE\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000530-SR-000711\",\"finishedDate\":null,\"fixRateValue\":810,\"fix_rate_value\":810,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"734\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 810 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000530-SR-000711\",\"processing\":false,\"secondaryExternalCode\":\"4349\",\"secondary_external_code\":\"4349\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"583\",\"name\":\"INVERSIONES TL S.A.\",\"primary_external_code\":\"530\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-09-13 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000530-SR-000712 - PERMANENCIA TRANSITORIA POR TRABAJO 180 DIAS - JHON LEWIS SAMIR YOVERA ANTON\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000530-SR-000712\",\"finishedDate\":null,\"fixRateValue\":810,\"fix_rate_value\":810,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"735\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS USD. 810 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000530-SR-000712\",\"processing\":false,\"secondaryExternalCode\":\"4350\",\"secondary_external_code\":\"4350\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"583\",\"name\":\"INVERSIONES TL S.A.\",\"primary_external_code\":\"530\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-09-13 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000530-SR-000713 - PERMANENCIA TRANSITORIA POR TRABAJO 180 DIAS - DANIEL LEONCIO DIAZ MENOR\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000530-SR-000713\",\"finishedDate\":null,\"fixRateValue\":810,\"fix_rate_value\":810,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"736\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 810 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000530-SR-000713\",\"processing\":false,\"secondaryExternalCode\":\"4351\",\"secondary_external_code\":\"4351\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"583\",\"name\":\"INVERSIONES TL S.A.\",\"primary_external_code\":\"530\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-09-13 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000530-SR-000714 - PERMANENCIA TRANSITORIA POR TRABAJO 180 DIAS - LUIGI CRISTIAN CRUZADO VILLANUEVA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000530-SR-000714\",\"finishedDate\":null,\"fixRateValue\":810,\"fix_rate_value\":810,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"737\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 810 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000530-SR-000714\",\"processing\":false,\"secondaryExternalCode\":\"4352\",\"secondary_external_code\":\"4352\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"583\",\"name\":\"INVERSIONES TL S.A.\",\"primary_external_code\":\"530\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-09-13 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000530-SR-000715 - PERMANENCIA TRANSITORIA POR TRABAJO 180 DIAS - ANGELA BRENDA ROJAS RUIZ\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000530-SR-000715\",\"finishedDate\":null,\"fixRateValue\":810,\"fix_rate_value\":810,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"738\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 810 INCLUYEN GASTOS E IMPUESTO DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000530-SR-000715\",\"processing\":false,\"secondaryExternalCode\":\"4353\",\"secondary_external_code\":\"4353\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"583\",\"name\":\"INVERSIONES TL S.A.\",\"primary_external_code\":\"530\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-09-13 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000530-SR-000716 - PERMANENCIA TRANSITORIA POR TRABAJO 180 DIAS - CARMEN LUZ ANGELES BAKUS\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000530-SR-000716\",\"finishedDate\":null,\"fixRateValue\":810,\"fix_rate_value\":810,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"739\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 810 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000530-SR-000716\",\"processing\":false,\"secondaryExternalCode\":\"4354\",\"secondary_external_code\":\"4354\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"583\",\"name\":\"INVERSIONES TL S.A.\",\"primary_external_code\":\"530\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-09-13 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000530-SR-000717 - PERMANENCIA TRANSITORIA POR TRABAJO 180 DIAS - ZULEMA DIHONOR REYES CLEMENTE\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000530-SR-000717\",\"finishedDate\":null,\"fixRateValue\":810,\"fix_rate_value\":810,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"740\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 810 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000530-SR-000717\",\"processing\":false,\"secondaryExternalCode\":\"4356\",\"secondary_external_code\":\"4356\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"583\",\"name\":\"INVERSIONES TL S.A.\",\"primary_external_code\":\"530\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2023-12-05 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000530-SR-000785 - Licencia de Funcionamiento Sucursal NUR\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000530-SR-000785\",\"finishedDate\":null,\"fixRateValue\":431.03,\"fix_rate_value\":431.03,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"742\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Para este tema, tercerizaremos el servicio y se tendr\\u00e1 un gasto de aproximadamente Bs. 1500.-\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000530-SR-000785\",\"processing\":false,\"secondaryExternalCode\":\"4627\",\"secondary_external_code\":\"4627\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 15:00:02\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"583\",\"name\":\"INVERSIONES TL S.A.\",\"primary_external_code\":\"530\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"5\",\"externalCode\":\"AR02\",\"name\":\"Der.Civil \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-10-12 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000430-SR-000736 - Elaboraci\\u00f3n informe tributario - corporativo - Exportaci\\u00f3n de Servicios\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000430-SR-000736\",\"finishedDate\":null,\"fixRateValue\":1400,\"fix_rate_value\":1400,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"743\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000430-SR-000736\",\"processing\":false,\"secondaryExternalCode\":\"4516\",\"secondary_external_code\":\"4516\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"585\",\"name\":\"TECNOLOG\\u00cdA COLABORATIVA EXPORT S.R.L.\",\"primary_external_code\":\"430\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"19\",\"externalCode\":\"AR09\",\"name\":\"Der. Tributario\\u0026 Plan.Fiscal\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-11-22 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000533-SR-000774 - Servicios de Outsourcing contable, tributario, labora y tesorer\\u00eda.\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000533-SR-000774\",\"finishedDate\":null,\"fixRateValue\":1240,\"fix_rate_value\":1240,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"745\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Honorario variable en base al alcance y n\\u00famero de operaciones\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000533-SR-000774\",\"processing\":false,\"secondaryExternalCode\":\"4608\",\"secondary_external_code\":\"4608\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 14:06:14\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"cdelgado@emba.com\",\"enabled\":true,\"fullName\":\"Cristhian Delgado Ramirez\",\"id\":13,\"locale\":\"es\",\"shortName\":\"cdelgado\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"cdelgado@emba.com\"},\"customer\":{\"id\":\"586\",\"name\":\"TECTONIQ BOLIVIA SRL\",\"primary_external_code\":\"533\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"24\",\"externalCode\":\"AR05\",\"name\":\"Outsourcing\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-01-31 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000468-SR-000457 - ANTECEDENTES REJAP APOSTILLADO - DAVID BRAEZ DUARTE PARACTA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000468-SR-000457\",\"finishedDate\":null,\"fixRateValue\":380,\"fix_rate_value\":380,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"746\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 380 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000468-SR-000457\",\"processing\":false,\"secondaryExternalCode\":\"3133\",\"secondary_external_code\":\"3133\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"587\",\"name\":\"TELEPERFORMANCE COLOMBIA\",\"primary_external_code\":\"468\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-09-20 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000236-SR-000845 - PROCESO LABORAL - ALEJANDRO SALAZAR ct. SPC IMPRESORES - JUZGADO 9\\u00ba DE TRABAJO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000236-SR-000845\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1341\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"EL PAGO DE HONORARIOS PROFESIONALES ESTA SUJETO EN FUNCI\\u00d3N AL AVANCE DEL PROCESO. SE HA SOLICITADO AL CLIENTE EL DEPOSITO DE BS. 2000 EN UNA CUENTA DE EMBA PARA GASTOS JUDICIALES\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000236-SR-000845\",\"processing\":false,\"secondaryExternalCode\":\"3589\",\"secondary_external_code\":\"3589\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"nezegarra@emba.com\",\"enabled\":true,\"fullName\":\"Natalio Eduardo Zegarra Ribera\",\"id\":15,\"locale\":\"es\",\"shortName\":\"nzegarra\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"nezegarra@emba.com\"},\"customer\":{\"id\":\"575\",\"name\":\"SPC Impresores S.A.\",\"primary_external_code\":\"236\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"17\",\"externalCode\":\"AR08\",\"name\":\"Der. Laboral y Seg. Soc.\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-10-09 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000613-SR-000886 - Apoyo Tributario en la Revisi\\u00f3n de Documentaci\\u00f3n Contable Troibutaria\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000613-SR-000886\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1342\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Cliente de Sucre, con 2 hitos\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000613-SR-000886\",\"processing\":false,\"secondaryExternalCode\":\"4500\",\"secondary_external_code\":\"4500\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"rburgos@emba.com\",\"enabled\":true,\"fullName\":\"Edwin Rodrigo Burgos Fernandez\",\"id\":16,\"locale\":\"es\",\"shortName\":\"rburgos\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rburgos@emba.com\"},\"customer\":{\"id\":\"579\",\"name\":\"Super Abasto Sur Ltda. SAS\",\"primary_external_code\":\"613\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"19\",\"externalCode\":\"AR09\",\"name\":\"Der. Tributario\\u0026 Plan.Fiscal\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2018-11-01 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000126-SR-000905 - Domicilio Legal (FM)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000126-SR-000905\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1461\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"SE DEBE FACTURAR DESDE SEPTIEMBRE\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000126-SR-000905\",\"processing\":false,\"secondaryExternalCode\":\"\",\"secondary_external_code\":\"\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 16:15:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"572\",\"name\":\"SOLARIS BOLIVIA SRL\",\"primary_external_code\":\"126\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2018-11-01 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000126-SR-000906 - Outsooucing Contable (FM)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000126-SR-000906\",\"finishedDate\":null,\"fixRateValue\":2380,\"fix_rate_value\":2380,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1462\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"POR COMPROBANTE SE COBRARA US$ 10\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000126-SR-000906\",\"processing\":false,\"secondaryExternalCode\":\"\",\"secondary_external_code\":\"\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 13:55:38\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"cdelgado@emba.com\",\"enabled\":true,\"fullName\":\"Cristhian Delgado Ramirez\",\"id\":13,\"locale\":\"es\",\"shortName\":\"cdelgado\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"cdelgado@emba.com\"},\"customer\":{\"id\":\"572\",\"name\":\"SOLARIS BOLIVIA SRL\",\"primary_external_code\":\"126\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"24\",\"externalCode\":\"AR05\",\"name\":\"Outsourcing\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-01 19:55:51\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000530-SR-000999 - Cedula para extranjeros - HEYLEN MARGOT CAMPOS CAMACHO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000530-SR-000999\",\"finishedDate\":null,\"fixRateValue\":244.25,\"fix_rate_value\":244.25,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2297\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000530-SR-000999\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 16:32:08\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"583\",\"name\":\"INVERSIONES TL S.A.\",\"primary_external_code\":\"530\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-05 18:25:03\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000530-SR-001007 - Carnet extranjero - HEYLEN MARGOT CAMPOS CAMACHO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000530-SR-001007\",\"finishedDate\":null,\"fixRateValue\":257.83,\"fix_rate_value\":257.83,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2308\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000530-SR-001007\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 16:33:40\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"583\",\"name\":\"INVERSIONES TL S.A.\",\"primary_external_code\":\"530\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-05 18:58:43\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000530-SR-001009 - Permanencia temporal de 2 a\\u00f1os Mercosur - HEYLEN MARGOT CAMPOS CAMACHO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000530-SR-001009\",\"finishedDate\":null,\"fixRateValue\":851.87,\"fix_rate_value\":851.87,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2312\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000530-SR-001009\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 16:35:05\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"583\",\"name\":\"INVERSIONES TL S.A.\",\"primary_external_code\":\"530\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-21 20:46:05\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000126-SR-001039 - Poder transferencia de cuotas de capital Francisco Siredey\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000126-SR-001039\",\"finishedDate\":null,\"fixRateValue\":250,\"fix_rate_value\":250,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2352\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"pago 100% al final\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000126-SR-001039\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 16:42:11\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"572\",\"name\":\"SOLARIS BOLIVIA SRL\",\"primary_external_code\":\"126\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-29 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-29 19:03:43\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000126-SR-001083 - Actas de Cierre gestiones 2019-2023 \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000126-SR-001083\",\"finishedDate\":null,\"fixRateValue\":2500,\"fix_rate_value\":2500,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2554\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"100% al final\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000126-SR-001083\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"572\",\"name\":\"SOLARIS BOLIVIA SRL\",\"primary_external_code\":\"126\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-22 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-22 20:28:35\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000325-SR-001139 - Consultas sobre Impuestos Aplicables a Transferencia de Marca - Convenio 578 CAN\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000325-SR-001139\",\"finishedDate\":null,\"fixRateValue\":300,\"fix_rate_value\":300,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2741\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"100% al inicio\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000325-SR-001139\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-25 14:40:53\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"atejerina@emba.com\",\"enabled\":true,\"fullName\":\"Andre Luis Tejerina Queiroz\",\"id\":25,\"locale\":\"es\",\"shortName\":\"atejerin\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"atejerina@emba.com\"},\"customer\":{\"id\":\"565\",\"name\":\"SMI ENVASES INDUSTRIAS BOLIVIA SA\",\"primary_external_code\":\"325\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-08 00:00:00\",\"confidential\":false,\"created_at\":\"2024-04-08 14:53:52\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000430-SR-001166 - Constitucion de Sociedad\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000430-SR-001166\",\"finishedDate\":null,\"fixRateValue\":1080,\"fix_rate_value\":1080,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2829\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"100% Final\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000430-SR-001166\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-08 09:53:53\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"atejerina@emba.com\",\"enabled\":true,\"fullName\":\"Andre Luis Tejerina Queiroz\",\"id\":25,\"locale\":\"es\",\"shortName\":\"atejerin\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"atejerina@emba.com\"},\"customer\":{\"id\":\"585\",\"name\":\"TECNOLOG\\u00cdA COLABORATIVA EXPORT S.R.L.\",\"primary_external_code\":\"430\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"6\",\"externalCode\":\"AR17\",\"name\":\"Der.Comercial \\n\"}}]}}}\n","time":"2025-07-30T10:50:58-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: POST https://apinewtm.com/graphql/\nHeaders: map[Accept:[application/json] Authorization:[Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJpYXQiOjE3NTM4ODY1MjIsImV4cCI6MTc1Mzk2NjUyMiwiaWQiOjEwNSwidXNlcm5hbWUiOiJpbnRlZ3JhY2lvbmVzQGVtYmEuYm8iLCJhcGlrZXkiOiI5Yzg0ZjYzZTRlMzk2ZGZmOWU5ZjU3NDI5OGRmZWUzOSIsImFwaWtleUNyZWF0ZWRBdCI6eyJkYXRlIjoiMjAyNS0wNy0xNyAxMDo0MToyNS4wMDAwMDAiLCJ0aW1lem9uZV90eXBlIjozLCJ0aW1lem9uZSI6IkFtZXJpY2EvQm9nb3RhIn0sImZ1bGxOYW1lIjoiSW50ZWdyYWNpw7NuIEVNQkEiLCJlbWFpbCI6ImludGVncmFjaW9uZXNAZW1iYS5ibyIsImxvY2FsZSI6ImVzIiwiZGF5c0FsbG93ZWQiOjMwLCJpc0Nvb3JkaW5hdG9yIjpmYWxzZSwidHlwZVRhc2tWaWV3IjoibGlzdHMiLCJkYXlzYWxsb3ciOjMwLCJyb2xlcyI6e30sInNob3J0X25hbWUiOiJJTi5FTUJBIiwicGVybWlzc2lvbnMiOlsic3luY19leHRlcm5hbF9idXNpbmVzcyIsInN5bmNfZXh0ZXJuYWxfY3VzdG9tZXIiLCJzeW5jX2V4dGVybmFsX21pbGVzdG9uZSIsImFic2VuY2VfYXBwcm92ZSIsImFic2VuY2VfY3JlYXRlX2FsbCIsImFic2VuY2VfY3JlYXRlX293biIsImFic2VuY2VfbWVudSIsImFjY291bnRpbmdfYnVzaW5lc3NfbGlzdCIsImFjY291bnRpbmdfY3VzdG9tZXJfbGlzdCIsImJpbGxpbmdfcGVyaW9kX2RlbGV0ZV9hbGwiLCJiaWxsaW5nX3BlcmlvZF9lZGl0X2FsbCIsImJpbGxpbmdfcGVyaW9kX2xpc3QiLCJiaWxsaW5nX3BlcmlvZF9yZWFjdGl2YXRlIiwiYm9hcmRfcmF0ZV91c2VyX2NyZWF0ZSIsImJvYXJkX3JhdGVfdXNlcl9lZGl0IiwiYnVzaW5lc3NfY3JlYXRlIiwiYnVzaW5lc3NfZGVzY3JpcHRpb25fc2F2ZSIsImJ1c2luZXNzX2VkaXQiLCJidXNpbmVzc19saXN0X2FsbCIsImJ1c2luZXNzX21lbnUiLCJidXNpbmVzc19yZXNwb25zaWJsZV9saXN0X2FsbCIsImJ1c2luZXNzX3NlZV9iaWxsaW5nX2luZm8iLCJidXNpbmVzc2VzX2FsbG93ZWRfdXNlcl9jcmVhdGUiLCJidXNpbmVzc2VzX2FsbG93ZWRfdXNlcl9kZWxldGUiLCJjb21wYW55X2Rpc2FibGUiLCJjb21wYW55X2VkaXQiLCJjb21wYW55X2xpc3QiLCJjb25jZXB0X2NyZWF0ZSIsImNvbmNlcHRfZWRpdCIsImNvbmNlcHRfbWVudSIsImNvbnRhY3RfY3JlYXRlIiwiY29udGFjdF9jcmVhdGVfZmFzdCIsImNvbnRhY3RfZWRpdCIsImNvbnRhY3RfbGlzdCIsImNvbnRhY3RfbWVudSIsImN1c3RvbWVyX2NyZWF0ZSIsImN1c3RvbWVyX2NyZWF0ZV9mYXN0IiwiY3VzdG9tZXJfZWRpdCIsImN1c3RvbWVyX2xpc3QiLCJjdXN0b21lcl9saXN0X2FsbCIsImN1c3RvbWVyX21lbnUiLCJleHBlbnNlX2NyZWF0ZV9hbGwiLCJleHBlbnNlX2RlbGV0ZV9hbGwiLCJleHBlbnNlX2R1cGxpY2F0ZSIsImV4cGVuc2VfZWRpdF9hbGwiLCJleHBlbnNlX2xpc3RfYWxsIiwiZXhwZW5zZV9tZW51IiwiZXhwZW5zZV9yZWplY3RfYWxsIiwiZmFiX3Nob3ciLCJmaWxlX21lbnUiLCJnZW9yZWZlcmVuY2VfY3JlYXRlIiwiZ2VvcmVmZXJlbmNlX2VkaXQiLCJnZW9yZWZlcmVuY2VfbWVudSIsImdvX3RvX2xlZ2FjeSIsImluZGljYXRvcnNfbWVudSIsImludm9pY2VfY3JlYXRlIiwiaW52b2ljZV9kZXRhaWxfbGlzdF9hbGwiLCJpbnZvaWNlX2ZpeF90aW1lc19jdXN0b21fdmFsdWUiLCJpbnZvaWNlX2xpc3RfYWxsIiwiaW52b2ljZWFkdmFuY2VfY3JlYXRlIiwiaW52b2ljZWFkdmFuY2VfbGlzdCIsImludm9pY2VhZHZhbmNlX3VwZGF0ZSIsImxvZ19saXN0X2FsbCIsImxvZ19saXN0X293biIsIm1pbGVzdG9uZV9jcmVhdGUiLCJtaWxlc3RvbmVfZGVsZXRlIiwibWlsZXN0b25lX2VkaXQiLCJtb250aGx5X2ZpeF9yYXRlX2dyb3VwX2NyZWF0ZSIsIm1vbnRobHlfZml4X3JhdGVfZ3JvdXBfZWRpdCIsIm1vbnRobHlfdXNlcl9jb3N0X2NyZWF0ZSIsIm1vbnRobHlfdXNlcl9jb3N0X2VkaXQiLCJwYXltZW50X2NyZWF0ZSIsInBheW1lbnRfZGVsZXRlIiwicGF5bWVudF9lZGl0IiwicGF5bWVudF9tZW51IiwicHJvY2VkdXJlX21lbnUiLCJwcm9jZWR1cmVfcmF0ZV9jcmVhdGUiLCJwcm9jZWR1cmVfcmF0ZV9kZXRhaWxfY3JlYXRlIiwicHJvY2VkdXJlX3JhdGVfZGV0YWlsX2VkaXQiLCJwcm9jZWR1cmVfcmF0ZV9kZXRhaWxfbGlzdCIsInByb2NlZHVyZV9yYXRlX2VkaXQiLCJwcm9jZWR1cmVfcmF0ZV9saXN0IiwicHJvY2VkdXJlX3JhdGVfbWVudSIsInByb2NlZHVyZV90cmFuc2FjdGlvbl9saXN0IiwicHJvamVjdF9hcmNoaXZlX2Nhc2NhZGVfYWxsIiwicHJvamVjdF9kZWxldGVfY2FzY2FkZV9hbGwiLCJwcm9qZWN0X3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInJhdGVfYnVzaW5lc3NfY2F0ZWdvcnlfY3JlYXRlIiwicmF0ZV9idXNpbmVzc19jYXRlZ29yeV9lZGl0IiwicmF0ZV9idXNpbmVzc191c2VyX2NyZWF0ZSIsInJhdGVfYnVzaW5lc3NfdXNlcl9lZGl0IiwicmF0ZV9leGNoYW5nZV9jcmVhdGUiLCJyYXRlX2V4Y2hhbmdlX2VkaXQiLCJyYXRlX2V4Y2hhbmdlX2xpc3QiLCJyYXRlX3VzZXJfY3JlYXRlIiwicmF0ZV91c2VyX2VkaXQiLCJyb2xlX2NyZWF0ZSIsInJvbGVfZWRpdF9hbGwiLCJyb2xlX2xpc3RfYWxsIiwic2VjdGlvbl9hcmNoaXZlX2Nhc2NhZGVfYWxsIiwic2VjdGlvbl9kZWxldGVfY2FzY2FkZV9hbGwiLCJzZWN0aW9uX3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInNlZV9tZW51X3JhdGVfZXhjaGFuZ2UiLCJzZXJpZV9jcmVhdGUiLCJzZXJpZV9lZGl0Iiwic2VyaWVfbWVudSIsInNldHRpbmdzX3ZpZXciLCJzdXBwbGllcl9jcmVhdGUiLCJ0YXNrX2FkZF90aW1lX2FsbCIsInRhc2tfYWRkX3RpbWVfb3duIiwidGFza19hc3NpZ25lZF91c2VyX2VtYWlsIiwidGFza19jbG9zZWRfZW1haWwiLCJ0YXNrX2NyZWF0ZV9hbGwiLCJ0YXNrX2NyZWF0ZV9jb21tZW50X2VtYWlsIiwidGFza19jcmVhdGVfc2VsZiIsInRhc2tfY3JlYXRlX3RlYW0iLCJ0YXNrX2RlbGV0ZV9hbGwiLCJ0YXNrX2RlbGV0ZV9vd24iLCJ0YXNrX2RlbGV0ZV90ZWFtIiwidGFza19lZGl0X2FsbCIsInRhc2tfZWRpdF9kdWVfZGF0ZSIsInRhc2tfZWRpdF9vd24iLCJ0YXNrX2VkaXRfdGVhbSIsInRhc2tfbGlzdF9hbGwiLCJ0YXNrX2xpc3Rfb3duIiwidGFza19saXN0X3RlYW0iLCJ0YXNrX21hc3NpdmVpbXBvcnQiLCJ0YXNrX21lbnUiLCJ0YXNrX21pZ3JhdGlvbiIsInRhc2tfc2V0X2FkZGl0aW9uYWxfYXNzaWduZWVzIiwidGFza19zZXRfZHVlX2RhdGUiLCJ0YXNrX3NldF9lc3RpbWF0ZWRfdGltZSIsInRhc2tfc2V0X3ByaW9yaXR5IiwidGFza19zZXRfcHJvZ3Jlc3MiLCJ0YXhfZWRpdF9hbGwiLCJ0YXhfbGlzdF9hbGwiLCJ0ZWFtX2FyY2hpdmVfY2FzY2FkZV9hbGwiLCJ0ZWFtX2NyZWF0ZV9hbGwiLCJ0ZWFtX2RlbGV0ZV9hbGwiLCJ0ZWFtX2VkaXRfYWxsIiwidGVhbV9saXN0X2FsbCIsInRlYW1fbGlzdF9vd24iLCJ0ZWFtX3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInRpbWVfYWNjZXB0X2FsbCIsInRpbWVfYWNjZXB0X293biIsInRpbWVfYXBwcm92ZV9hbGwiLCJ0aW1lX2FwcHJvdmVfb3duIiwidGltZV9jcmVhdGVfYWxsIiwidGltZV9jcmVhdGVfb3duIiwidGltZV9kZWxldGVfYWxsIiwidGltZV9kZWxldGVfb3duIiwidGltZV9kZW55X2FsbCIsInRpbWVfZGVueV9vd24iLCJ0aW1lX2Rvd25sb2FkZmlsZV9hbGwiLCJ0aW1lX2Rvd25sb2FkZmlsZV9vd24iLCJ0aW1lX2VkaXRfYWxsIiwidGltZV9lZGl0X2Nsb3NlX3BlcmlvZF9hbGwiLCJ0aW1lX2VkaXRfY2xvc2VfcGVyaW9kX293biIsInRpbWVfZWRpdF9vd24iLCJ0aW1lX2xpc3RfYWxsIiwidGltZV9saXN0X293biIsInRpbWVfbWVudSIsInRpbWVfbWludXRlc196ZXJvIiwidGltZV9yZWplY3RfYWxsIiwidGltZV9yZXN0cmljdGVkX3BlcmlvZF9jcmVhdGUiLCJ0aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX2VkaXQiLCJ0aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX21lbnUiLCJ0aW1lX3NoYXJlX2FsbCIsInRpbWVfc2hhcmVfb3duIiwidGltZV9zaG93X2NhbGVuZGFyX3ZpZXciLCJ0aW1lX3VwbG9hZGZpbGVfYWxsIiwidGltZV91cGxvYWRmaWxlX293biIsInRyYW5zYWN0aW9uX2FkYXB0ZXJfbGlzdCIsInRyYW5zYWN0aW9uX2xpc3QiLCJ1c2VyX2Fic2VuY2VzX3Nob3ciLCJ1c2VyX2Nvc3RfY3JlYXRlIiwidXNlcl9jb3N0X2VkaXQiLCJ1c2VyX2Nvc3RfbGlzdCIsInVzZXJfY29zdF9tZW51IiwidXNlcl9jb3N0X3JhdGVfY3JlYXRlIiwidXNlcl9jb3N0X3JhdGVfZWRpdCIsInVzZXJfY29zdF9yYXRlX2xpc3QiLCJ1c2VyX2NyZWF0ZSIsInVzZXJfZGlzYWJsZSIsInVzZXJfZWRpdCIsInVzZXJfZWRpdF9kYXlzX2FsbG93X29ubHkiLCJ1c2VyX2dyb3VwX3JvbGVfY3JlYXRlX2FsbCIsInVzZXJfZ3JvdXBfcm9sZV9kZWxldGVfYWxsIiwidXNlcl9ncm91cF9yb2xlX2VkaXRfYWxsIiwidXNlcl9ncm91cF9yb2xlc19saXN0X2FsbCIsInVzZXJfbGlzdCIsInVzZXJfbGlzdF9hbGwiLCJ1c2VyX21hc3NfYWN0aXZhdGlvbiIsInVzZXJfcHJvZHVjdGl2aXR5X2NyZWF0ZSIsInVzZXJfcHJvZHVjdGl2aXR5X2Rpc2FibGUiLCJ1c2VyX3Byb2R1Y3Rpdml0eV9lZGl0IiwidXNlcl9wcm9kdWN0aXZpdHlfZW5hYmxlIiwidXNlcl9wcm9kdWN0aXZpdHlfbWVudSIsInVzZXJfdGltZV9yZXN0cmljdGVkX3BlcmlvZF9jcmVhdGUiLCJ1c2VyX3RpbWVfcmVzdHJpY3RlZF9wZXJpb2RfZGVsZXRlIiwidXNlcl90aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX2VkaXQiLCJ1c2VyZ3JvdXBfY3JlYXRlX2FsbCIsInVzZXJncm91cF9kZWxldGVfYWxsIiwidXNlcmdyb3VwX2VkaXRfYWxsIiwidXNlcmdyb3VwX2xpc3RfYWxsIiwidXNlcmdyb3VwX21lbnUiLCJ1c2Vyc191c2VyX2dyb3VwX2NyZWF0ZV9hbGwiLCJ1c2Vyc191c2VyX2dyb3VwX2RlbGV0ZV9hbGwiLCJ1c2Vyc191c2VyX2dyb3VwX2VkaXRfYWxsIiwidXNlcnNfdXNlcl9ncm91cHNfbGlzdF9hbGwiXSwiaG9tZXBhZ2UiOm51bGx9.kShN7NXGoaz1oFro-yYNyIpIEcnNpo1GiB8SFGKFUJtDQoqyp1I1w-CMA8Kta3vWXnUZwx-y2z1yVSJaMpZbqQgKFlakpcf6351bZSL8IAUPExSfLz0HYYCWFx-Usx94BBTqosKsRhnT8PkPN3dGxs8-XTIEDi9gN-Pk9OSHmM5mPkTsaaxTY40M-F7Y0Up2y6s_lwFaX13CmstiYZSXzyKL9SUBBx-E6-8qQAfuKPIoZ_50jSGPW98-IkAcWwqO6yGf-M07dSfFZ2vLfwc3ulHm2p8jVSmRxJ_O43BEWQD5cvqGbVIvSMXkS4y98DL4Vencjjg27iu3CUJsDNBBTg] Content-Type:[application/json] Origin:[https://azure-function.timemanagerweb.com] Tenant-Name:[pruebas-dos] User-Agent:[Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36]]\nBody: map[query:query ($limit: Int, $orderBy: String, $orderDesc: Boolean, $page: Int) { BusinessMeta(limit: $limit, orderBy: $orderBy, orderDesc: $orderDesc, page: $page) { meta { hasNextPage hasPreviousPage limit next page pages previous total } rows { apply_procedures billable business_customer_code caseNumber closed_date confidential created_at discountAmount discountPercent displayName enableBusinessAllowedUsers expedient finishedDate fixRateValue fix_rate_value hourLimit hour_limit id internal_code isBillable limitAlert notes partialCharges partial_charges primary_external_code processing secondaryExternalCode secondary_external_code status statusMarking updated_at withIVA responsible { created_at daysAllow email enabled fullName id locale shortName superAdmin updated_at userType username } customer { id name primary_external_code company { id name } } practiceArea { id externalCode name } } } } variables:map[limit:100 orderBy:orderBy orderDesc:true page:13]]\n","time":"2025-07-30T10:50:58-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: POST https://apinewtm.com/graphql/ | Status: 200 | Duration: 6.9435485s\nHeaders: map[Access-Control-Allow-Credentials:[true] Access-Control-Allow-Origin:[https://azure-function.timemanagerweb.com] Access-Control-Expose-Headers:[link, access-control-allow-credentials] Cache-Control:[no-cache, private] Content-Type:[application/json] Date:[Wed, 30 Jul 2025 14:51:03 GMT] Server:[] Vary:[Authorization]]\nBody: {\"errors\":[{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",3,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",3,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",3,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",3,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",3,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",3,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",3,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",3,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",3,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",3,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",3,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",4,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",4,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",4,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",4,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",4,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",4,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",4,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",4,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",4,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",4,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",4,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",5,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",5,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",5,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",5,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",5,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",5,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",5,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",5,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",5,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",5,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",5,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",6,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",6,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",6,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",6,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",6,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",6,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",6,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",6,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",6,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",6,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",6,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",7,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",7,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",7,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",7,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",7,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",7,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",7,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",7,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",7,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",7,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",7,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",8,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",8,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",8,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",8,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",8,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",8,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",8,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",8,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",8,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",8,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",8,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",9,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",9,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",9,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",9,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",9,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",9,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",9,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",9,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",9,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",9,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",9,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",10,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",10,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",10,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",10,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",10,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",10,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",10,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",10,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",10,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",10,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",10,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",11,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",11,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",11,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",11,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",11,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",11,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",11,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",11,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",11,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",11,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",11,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",23,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",23,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",23,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",23,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",23,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",23,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",23,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",23,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",23,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",23,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",23,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",24,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",24,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",24,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",24,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",24,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",24,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",24,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",24,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",24,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",24,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",24,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",25,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",25,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",25,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",25,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",25,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",25,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",25,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",25,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",25,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",25,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",25,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",26,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",26,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",26,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",26,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",26,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",26,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",26,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",26,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",26,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",26,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",26,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",27,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",27,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",27,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",27,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",27,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",27,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",27,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",27,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",27,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",27,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",27,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",29,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",29,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",29,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",29,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",29,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",29,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",29,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",29,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",29,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",29,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",29,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",32,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",32,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",32,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",32,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",32,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",32,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",32,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",32,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",32,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",32,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",32,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",33,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",33,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",33,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",33,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",33,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",33,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",33,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",33,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",33,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",33,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",33,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",34,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",34,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",34,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",34,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",34,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",34,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",34,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",34,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",34,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",34,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",34,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",35,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",35,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",35,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",35,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",35,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",35,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",35,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",35,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",35,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",35,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",35,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",36,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",36,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",36,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",36,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",36,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",36,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",36,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",36,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",36,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",36,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",36,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",37,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",37,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",37,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",37,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",37,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",37,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",37,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",37,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",37,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",37,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",37,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",38,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",38,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",38,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",38,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",38,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",38,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",38,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",38,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",38,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",38,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",38,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",39,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",39,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",39,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",39,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",39,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",39,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",39,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",39,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",39,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",39,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",39,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",50,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",50,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",50,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",50,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",50,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",50,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",50,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",50,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",50,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",50,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",50,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",51,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",51,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",51,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",51,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",51,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",51,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",51,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",51,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",51,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",51,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",51,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",52,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",52,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",52,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",52,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",52,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",52,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",52,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",52,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",52,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",52,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",52,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",53,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",53,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",53,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",53,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",53,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",53,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",53,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",53,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",53,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",53,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",53,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",54,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",54,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",54,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",54,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",54,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",54,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",54,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",54,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",54,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",54,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",54,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",55,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",55,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",55,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",55,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",55,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",55,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",55,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",55,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",55,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",55,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",55,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",57,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",57,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",57,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",57,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",57,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",57,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",57,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",57,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",57,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",57,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",57,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",58,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",58,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",58,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",58,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",58,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",58,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",58,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",58,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",58,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",58,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",58,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",59,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",59,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",59,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",59,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",59,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",59,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",59,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",59,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",59,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",59,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",59,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",60,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",60,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",60,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",60,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",60,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",60,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",60,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",60,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",60,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",60,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",60,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",61,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",61,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",61,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",61,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",61,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",61,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",61,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",61,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",61,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",61,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",61,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",62,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",62,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",62,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",62,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",62,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",62,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",62,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",62,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",62,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",62,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",62,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",63,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",63,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",63,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",63,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",63,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",63,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",63,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",63,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",63,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",63,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",63,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",64,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",64,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",64,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",64,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",64,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",64,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",64,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",64,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",64,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",64,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",64,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",65,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",65,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",65,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",65,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",65,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",65,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",65,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",65,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",65,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",65,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",65,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",66,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",66,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",66,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",66,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",66,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",66,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",66,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",66,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",66,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",66,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",66,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",67,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",67,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",67,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",67,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",67,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",67,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",67,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",67,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",67,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",67,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",67,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",72,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",72,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",72,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",72,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",72,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",72,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",72,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",72,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",72,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",72,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",72,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",73,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",73,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",73,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",73,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",73,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",73,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",73,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",73,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",73,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",73,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",73,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",74,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",74,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",74,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",74,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",74,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",74,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",74,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",74,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",74,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",74,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",74,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",75,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",75,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",75,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",75,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",75,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",75,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",75,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",75,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",75,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",75,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",75,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",76,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",76,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",76,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",76,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",76,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",76,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",76,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",76,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",76,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",76,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",76,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",77,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",77,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",77,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",77,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",77,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",77,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",77,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",77,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",77,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",77,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",77,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",78,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",78,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",78,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",78,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",78,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",78,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",78,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",78,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",78,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",78,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",78,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",79,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",79,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",79,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",79,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",79,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",79,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",79,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",79,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",79,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",79,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",79,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",80,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",80,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",80,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",80,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",80,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",80,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",80,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",80,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",80,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",80,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",80,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",81,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",81,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",81,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",81,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",81,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",81,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",81,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",81,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",81,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",81,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",81,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",82,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",82,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",82,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",82,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",82,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",82,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",82,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",82,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",82,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",82,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",82,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",83,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",83,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",83,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",83,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",83,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",83,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",83,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",83,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",83,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",83,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",83,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",84,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",84,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",84,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",84,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",84,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",84,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",84,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",84,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",84,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",84,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",84,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",85,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",85,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",85,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",85,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",85,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",85,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",85,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",85,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",85,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",85,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",85,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",86,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",86,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",86,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",86,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",86,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",86,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",86,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",86,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",86,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",86,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",86,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",87,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",87,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",87,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",87,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",87,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",87,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",87,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",87,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",87,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",87,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",87,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",88,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",88,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",88,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",88,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",88,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",88,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",88,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",88,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",88,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",88,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",88,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",89,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",89,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",89,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",89,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",89,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",89,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",89,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",89,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",89,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",89,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",89,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",90,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",90,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",90,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",90,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",90,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",90,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",90,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",90,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",90,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",90,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",90,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",91,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",91,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",91,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",91,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",91,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",91,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",91,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",91,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",91,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",91,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",91,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",92,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",92,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",92,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",92,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",92,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",92,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",92,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",92,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",92,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",92,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",92,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",93,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",93,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",93,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",93,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",93,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",93,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",93,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",93,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",93,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",93,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",93,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",94,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",94,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",94,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",94,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",94,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",94,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",94,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",94,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",94,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",94,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",94,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",95,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",95,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",95,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",95,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",95,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",95,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",95,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",95,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",95,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",95,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",95,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",96,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",96,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",96,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",96,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",96,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",96,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",96,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",96,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",96,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",96,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",96,\"responsible\",\"username\"]}],\"data\":{\"BusinessMeta\":{\"meta\":{\"hasNextPage\":true,\"hasPreviousPage\":true,\"limit\":100,\"next\":14,\"page\":13,\"pages\":16,\"previous\":12,\"total\":1573},\"rows\":[{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2018-08-10 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000128-SR-000026 - Servicios Legales Mensuales por Horas (FM)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000128-SR-000026\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"22\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000128-SR-000026\",\"processing\":false,\"secondaryExternalCode\":\"102\",\"secondary_external_code\":\"102\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-14 17:11:10\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"592\",\"name\":\"TEXTILES LAFAYETTE BOLIVIA S.A.\",\"primary_external_code\":\"128\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-06-19 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000345-SR-000654 - Servicios Legales por horas\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000345-SR-000654\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"24\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"a) Horas Socio: USD 150 por hora. b) Horas Asociado Senior: USD 130 por hora. c) Horas Asociado: USD 100 por hora\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000345-SR-000654\",\"processing\":false,\"secondaryExternalCode\":\"4197\",\"secondary_external_code\":\"4197\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"604\",\"name\":\"TUVES TV SATELITAL BOLIVIA S.A.\",\"primary_external_code\":\"345\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"32\",\"externalCode\":\"AR35\",\"name\":\"Telecomunicaciones\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-06-22 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000585-SR-000655 - Caso Belisario Quisbert\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000585-SR-000655\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"25\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Socio: USD 150 Director: USD 150 Asociado: USD 120\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000585-SR-000655\",\"processing\":false,\"secondaryExternalCode\":\"4201\",\"secondary_external_code\":\"4201\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"606\",\"name\":\"U.S. Department of Justice - Civil Division - Office of Foreign Litigation\",\"primary_external_code\":\"585\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"17\",\"externalCode\":\"AR08\",\"name\":\"Der. Laboral y Seg. Soc.\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-01-31 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000468-SR-000458 - ANTECEDENTES REJAP APOSTILLADO - REMY SILVIA MARTINEZ PAIRO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000468-SR-000458\",\"finishedDate\":null,\"fixRateValue\":380,\"fix_rate_value\":380,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"747\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 380 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000468-SR-000458\",\"processing\":false,\"secondaryExternalCode\":\"3134\",\"secondary_external_code\":\"3134\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"587\",\"name\":\"TELEPERFORMANCE COLOMBIA\",\"primary_external_code\":\"468\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-01-31 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000468-SR-000459 - ANTECEDENTES REJAP APOSTILLADO - MIJAIL EMIR PEREZ CASTELLON\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000468-SR-000459\",\"finishedDate\":null,\"fixRateValue\":380,\"fix_rate_value\":380,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"748\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 380 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000468-SR-000459\",\"processing\":false,\"secondaryExternalCode\":\"3135\",\"secondary_external_code\":\"3135\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"587\",\"name\":\"TELEPERFORMANCE COLOMBIA\",\"primary_external_code\":\"468\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-01-31 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000468-SR-000460 - ANTECEDENTES REJAP APOSTILLADO - EDSON ADALID CHAVARRIA BELLIDO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000468-SR-000460\",\"finishedDate\":null,\"fixRateValue\":380,\"fix_rate_value\":380,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"749\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 380 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000468-SR-000460\",\"processing\":false,\"secondaryExternalCode\":\"3136\",\"secondary_external_code\":\"3136\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"587\",\"name\":\"TELEPERFORMANCE COLOMBIA\",\"primary_external_code\":\"468\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-01-31 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000468-SR-000461 - OBTENCION DE PASAPORTE BOLIVIANO - EDSON ADALID CHAVARRIA BELLIDO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000468-SR-000461\",\"finishedDate\":null,\"fixRateValue\":398,\"fix_rate_value\":398,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"750\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 398 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000468-SR-000461\",\"processing\":false,\"secondaryExternalCode\":\"3137\",\"secondary_external_code\":\"3137\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"587\",\"name\":\"TELEPERFORMANCE COLOMBIA\",\"primary_external_code\":\"468\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-01-31 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000468-SR-000462 - OBTENCION DE PASAPORTE BOLIVIANO - MIJAIL EMIR PEREZ CASTELLON\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000468-SR-000462\",\"finishedDate\":null,\"fixRateValue\":398,\"fix_rate_value\":398,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"751\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 398 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000468-SR-000462\",\"processing\":false,\"secondaryExternalCode\":\"3138\",\"secondary_external_code\":\"3138\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"587\",\"name\":\"TELEPERFORMANCE COLOMBIA\",\"primary_external_code\":\"468\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-01-31 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000468-SR-000463 - OBTENCION DE PASAPORTE BOLIVIANO - EDWIN MU\\u00d1OZ SINGURI\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000468-SR-000463\",\"finishedDate\":null,\"fixRateValue\":398,\"fix_rate_value\":398,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"752\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 398 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000468-SR-000463\",\"processing\":false,\"secondaryExternalCode\":\"3139\",\"secondary_external_code\":\"3139\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"587\",\"name\":\"TELEPERFORMANCE COLOMBIA\",\"primary_external_code\":\"468\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-01-31 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000468-SR-000464 - ANTECEDENTES REJAP APOSTILLADO - EDWIN MU\\u00d1OZ SINGURI\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000468-SR-000464\",\"finishedDate\":null,\"fixRateValue\":380,\"fix_rate_value\":380,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"753\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 380 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000468-SR-000464\",\"processing\":false,\"secondaryExternalCode\":\"3140\",\"secondary_external_code\":\"3140\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"587\",\"name\":\"TELEPERFORMANCE COLOMBIA\",\"primary_external_code\":\"468\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-02-14 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000468-SR-000469 - ANTECEDENTES REJAP APOSTILLADO - JESENIA ARCE LOPEZ\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000468-SR-000469\",\"finishedDate\":null,\"fixRateValue\":380,\"fix_rate_value\":380,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"754\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 380 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000468-SR-000469\",\"processing\":false,\"secondaryExternalCode\":\"3162\",\"secondary_external_code\":\"3162\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"587\",\"name\":\"TELEPERFORMANCE COLOMBIA\",\"primary_external_code\":\"468\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-02-14 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000468-SR-000470 - ANTECEDENTES REJAP APOSTILLADO - LUIS ALFREDO HUANACO RAMIREZ\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000468-SR-000470\",\"finishedDate\":null,\"fixRateValue\":380,\"fix_rate_value\":380,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"755\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 380 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000468-SR-000470\",\"processing\":false,\"secondaryExternalCode\":\"3163\",\"secondary_external_code\":\"3163\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"587\",\"name\":\"TELEPERFORMANCE COLOMBIA\",\"primary_external_code\":\"468\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-02-14 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000468-SR-000471 - ANTECEDENTES REJAP APOSTILLADO - LILIANA SIVILA CASTILLO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000468-SR-000471\",\"finishedDate\":null,\"fixRateValue\":380,\"fix_rate_value\":380,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"756\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 380 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000468-SR-000471\",\"processing\":false,\"secondaryExternalCode\":\"3164\",\"secondary_external_code\":\"3164\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"587\",\"name\":\"TELEPERFORMANCE COLOMBIA\",\"primary_external_code\":\"468\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-02-14 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000468-SR-000472 - ANTECEDENTES REJAP APOSTILLADO - MAURICIO FERNANDEZ CUELLAR\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000468-SR-000472\",\"finishedDate\":null,\"fixRateValue\":380,\"fix_rate_value\":380,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"757\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 380 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000468-SR-000472\",\"processing\":false,\"secondaryExternalCode\":\"3165\",\"secondary_external_code\":\"3165\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"587\",\"name\":\"TELEPERFORMANCE COLOMBIA\",\"primary_external_code\":\"468\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-02-14 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000468-SR-000473 - OBTENCION DE PASAPORTE BOLIVIANO - MARCO GABRIEL GUARACHI MENDOZA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000468-SR-000473\",\"finishedDate\":null,\"fixRateValue\":398,\"fix_rate_value\":398,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"758\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 398 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000468-SR-000473\",\"processing\":false,\"secondaryExternalCode\":\"3166\",\"secondary_external_code\":\"3166\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"587\",\"name\":\"TELEPERFORMANCE COLOMBIA\",\"primary_external_code\":\"468\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-02-14 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000468-SR-000474 - ANTECEDENTES REJAP APOSTILLADO - MARCO GABRIEL GUARACHI MENDOZA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000468-SR-000474\",\"finishedDate\":null,\"fixRateValue\":380,\"fix_rate_value\":380,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"759\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 380 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000468-SR-000474\",\"processing\":false,\"secondaryExternalCode\":\"3167\",\"secondary_external_code\":\"3167\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"587\",\"name\":\"TELEPERFORMANCE COLOMBIA\",\"primary_external_code\":\"468\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-08-24 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000428-SR-000697 - Apertura Sucursal Cochabamba\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000428-SR-000697\",\"finishedDate\":null,\"fixRateValue\":1600,\"fix_rate_value\":1600,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"762\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Corresponde facturar 50% inicio\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000428-SR-000697\",\"processing\":false,\"secondaryExternalCode\":\"4281\",\"secondary_external_code\":\"4281\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"aaraoz@emba.com\",\"enabled\":true,\"fullName\":\"Alvaro Araoz Ardaya\",\"id\":17,\"locale\":\"es\",\"shortName\":\"aaraoz\",\"superAdmin\":false,\"updated_at\":\"2024-12-04 15:29:19\",\"userType\":1,\"username\":\"aaraoz@emba.com\"},\"customer\":{\"id\":\"593\",\"name\":\"TIENDA AMIGA ER S.A.\",\"primary_external_code\":\"428\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"6\",\"externalCode\":\"AR17\",\"name\":\"Der.Comercial \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2019-09-30 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000303-SR-000196 - Outsourcing contable\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000303-SR-000196\",\"finishedDate\":null,\"fixRateValue\":862.07,\"fix_rate_value\":862.07,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"763\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"MES DE OCTUBRE INICIA SERVICIO\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000303-SR-000196\",\"processing\":false,\"secondaryExternalCode\":\"1696\",\"secondary_external_code\":\"1696\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 14:04:26\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"cdelgado@emba.com\",\"enabled\":true,\"fullName\":\"Cristhian Delgado Ramirez\",\"id\":13,\"locale\":\"es\",\"shortName\":\"cdelgado\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"cdelgado@emba.com\"},\"customer\":{\"id\":\"599\",\"name\":\"TORRE PACIFICO\",\"primary_external_code\":\"303\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"24\",\"externalCode\":\"AR05\",\"name\":\"Outsourcing\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-03-18 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000562-SR-000606 - Servicios Legales Mensuales\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000562-SR-000606\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"775\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000562-SR-000606\",\"processing\":false,\"secondaryExternalCode\":\"4022\",\"secondary_external_code\":\"4022\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"616\",\"name\":\"VEMASSA (GRUPO VENADO)\",\"primary_external_code\":\"562\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"30\",\"externalCode\":\"AR33\",\"name\":\"Servicios Legales Mensuales\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2019-10-09 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000206 - PERMANENCIA POR UN A\\u00d1O SIN CONTRATO EXTRANJERO- LEIVER AQUINO VICENTE\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000206\",\"finishedDate\":null,\"fixRateValue\":1443.39,\"fix_rate_value\":1443.39,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"778\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 10.046,06.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000206\",\"processing\":false,\"secondaryExternalCode\":\"1722\",\"secondary_external_code\":\"1722\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 15:10:44\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2020-01-15 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000226 - C\\u00c9DULA DE EXTRANJERO - LEIVER AQUINO VICENTE\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000226\",\"finishedDate\":null,\"fixRateValue\":257.76,\"fix_rate_value\":257.76,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"779\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1.794,47.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000226\",\"processing\":false,\"secondaryExternalCode\":\"1877\",\"secondary_external_code\":\"1877\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 15:11:13\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2020-03-09 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000247 - PERMANENCIA POR UN A\\u00d1O SIN CONTRATO EXTRANJERO- RAMSES ARIEL LEYVA ARMENTA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000247\",\"finishedDate\":null,\"fixRateValue\":1356.89,\"fix_rate_value\":1356.89,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"780\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 9.444,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000247\",\"processing\":false,\"secondaryExternalCode\":\"1998\",\"secondary_external_code\":\"1998\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 15:11:35\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2020-03-12 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000252 - PERMANENCIA TRANSITORIA 180 D\\u00cdAS - ALFONSO MARAGOTO POLO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000252\",\"finishedDate\":null,\"fixRateValue\":864.66,\"fix_rate_value\":864.66,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"781\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE 6.018,89.- INCLUYEN GASTOS E IMPUESTOS DE LEY\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000252\",\"processing\":false,\"secondaryExternalCode\":\"2004\",\"secondary_external_code\":\"2004\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 15:12:08\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2020-08-24 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000275 - PERMANENCIA POR UN A\\u00d1O SIN CONTRATO EXTRANJERO- TOMAS MOGUEL CANTO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000275\",\"finishedDate\":null,\"fixRateValue\":1443.39,\"fix_rate_value\":1443.39,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"782\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 10.046,06.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000275\",\"processing\":false,\"secondaryExternalCode\":\"2222\",\"secondary_external_code\":\"2222\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 15:12:30\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2020-08-24 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000276 - PERMANENCIA TEMPORAL POR UN A\\u00d1O SIN CONTRATO EXTRANJERO - HONEY CARBALLO CARRASCO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000276\",\"finishedDate\":null,\"fixRateValue\":1443.39,\"fix_rate_value\":1443.39,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"783\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 10.046,06.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000276\",\"processing\":false,\"secondaryExternalCode\":\"2223\",\"secondary_external_code\":\"2223\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 15:12:59\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2020-08-24 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000277 - PERMANENCIA TEMPORAL POR UN A\\u00d1O SIN CONTRATO EXTRANJERO - ALFONSO MARAGOTO POLO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000277\",\"finishedDate\":null,\"fixRateValue\":1443.39,\"fix_rate_value\":1443.39,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"784\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 10.046,06.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000277\",\"processing\":false,\"secondaryExternalCode\":\"2224\",\"secondary_external_code\":\"2224\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 15:13:23\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2020-11-05 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000295 - RENOVACI\\u00d3N C\\u00c9DULA DE EXTRANJERO- TOMAS MOGUEL CANTO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000295\",\"finishedDate\":null,\"fixRateValue\":273.13,\"fix_rate_value\":273.13,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"785\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"HONORARIOS DE BS. 1901,95.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000295\",\"processing\":false,\"secondaryExternalCode\":\"2340\",\"secondary_external_code\":\"2340\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 15:13:51\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2020-11-05 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000296 - RENOVACI\\u00d3N C\\u00c9DULA DE EXTRANJERO- HONEY CARBALLO CARRASCO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000296\",\"finishedDate\":null,\"fixRateValue\":273.13,\"fix_rate_value\":273.13,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"786\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"HONORARIOS DE BS. 1901,95.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000296\",\"processing\":false,\"secondaryExternalCode\":\"2341\",\"secondary_external_code\":\"2341\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 15:14:12\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2020-11-05 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000297 - RENOVACION DE PERMANENCIA POR UN A\\u00d1O SIN CONTRATO EXTRANJERO- LEIVER AQUINO VICENTE\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000297\",\"finishedDate\":null,\"fixRateValue\":1443.39,\"fix_rate_value\":1443.39,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"787\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"HONORARIOS DE BS. 10.046,06.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000297\",\"processing\":false,\"secondaryExternalCode\":\"2342\",\"secondary_external_code\":\"2342\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 15:14:34\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2020-11-05 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000298 - RENOVACI\\u00d3N C\\u00c9DULA DE EXTRANJERO- VICENTE LEIBER AQUINO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000298\",\"finishedDate\":null,\"fixRateValue\":273.13,\"fix_rate_value\":273.13,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"788\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"HONORARIOS DE BS. 1901,95.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000298\",\"processing\":false,\"secondaryExternalCode\":\"2343\",\"secondary_external_code\":\"2343\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 15:14:56\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2020-12-23 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000318 - C\\u00c9DULA DE EXTRANJERO - ALFONSO MARAGOTO POLO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000318\",\"finishedDate\":null,\"fixRateValue\":257.76,\"fix_rate_value\":257.76,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"789\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1.794,47.- INCLUYE GASTOS E IMPUESTOS DE LEY\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000318\",\"processing\":false,\"secondaryExternalCode\":\"2423\",\"secondary_external_code\":\"2423\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 15:15:17\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2021-04-19 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000359 - PERMANENCIA TRANSITORIA POR 30 D\\u00cdAS - IVAN ALEJANDRO SANTOS GONZALES\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000359\",\"finishedDate\":null,\"fixRateValue\":330.17,\"fix_rate_value\":330.17,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"790\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 2,298,39.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000359\",\"processing\":false,\"secondaryExternalCode\":\"2634\",\"secondary_external_code\":\"2634\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 15:15:39\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2021-04-19 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000360 - PERMANENCIA TRANSITORIA POR 30 D\\u00cdAS - MARCELO RUBEN ENTRAIGAS\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000360\",\"finishedDate\":null,\"fixRateValue\":330.17,\"fix_rate_value\":330.17,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"791\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 2,298,39.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000360\",\"processing\":false,\"secondaryExternalCode\":\"2635\",\"secondary_external_code\":\"2635\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 15:16:02\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2021-04-19 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000361 - PERMANENCIA TRANSITORIA POR 30 D\\u00cdAS - IGNACIO ESTEBAN BUSTOS SAAVEDRA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000361\",\"finishedDate\":null,\"fixRateValue\":330.17,\"fix_rate_value\":330.17,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"792\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 2,298,39.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000361\",\"processing\":false,\"secondaryExternalCode\":\"2636\",\"secondary_external_code\":\"2636\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 15:16:26\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2021-04-19 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000362 - PERMANENCIA TRANSITORIA POR 30 D\\u00cdAS - YORDAN GEOVANNI SALAS CARVAJAL\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000362\",\"finishedDate\":null,\"fixRateValue\":330.17,\"fix_rate_value\":330.17,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"793\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 2,298,39.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000362\",\"processing\":false,\"secondaryExternalCode\":\"2637\",\"secondary_external_code\":\"2637\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 15:16:47\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2021-04-19 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000363 - PERMANENCIA TRANSITORIA POR 90 D\\u00cdAS - IGNACIO ESTEBAN BUSTOS SAAVEDRA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000363\",\"finishedDate\":null,\"fixRateValue\":330.17,\"fix_rate_value\":330.17,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"794\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 5.368,22.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000363\",\"processing\":false,\"secondaryExternalCode\":\"2638\",\"secondary_external_code\":\"2638\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 15:17:05\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2021-04-19 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000364 - PERMANENCIA TRANSITORIA POR 90 D\\u00cdAS - MARCELO RUBEN ENTRAIGAS\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000364\",\"finishedDate\":null,\"fixRateValue\":771.26,\"fix_rate_value\":771.26,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"795\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 5,368,22.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000364\",\"processing\":false,\"secondaryExternalCode\":\"2639\",\"secondary_external_code\":\"2639\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 15:17:26\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2021-04-19 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000365 - PERMANENCIA TRANSITORIA POR 90 D\\u00cdAS - IVAN ALEJANDRO SANTOS GONZALES\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000365\",\"finishedDate\":null,\"fixRateValue\":771.26,\"fix_rate_value\":771.26,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"796\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 5,368,22.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000365\",\"processing\":false,\"secondaryExternalCode\":\"2640\",\"secondary_external_code\":\"2640\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 15:17:44\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2021-04-19 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000366 - PERMANENCIA TRANSITORIA POR 90 D\\u00cdAS - YORDAN GEOVANNI SALAS CARVAJAL\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000366\",\"finishedDate\":null,\"fixRateValue\":771.26,\"fix_rate_value\":771.26,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"797\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 5,368,22.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000366\",\"processing\":false,\"secondaryExternalCode\":\"2641\",\"secondary_external_code\":\"2641\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 15:18:06\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2021-05-18 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000375 - AUTORIZACI\\u00d3N DE REGISTRO DE INVITACI\\u00d3N 30 D\\u00cdAS - JUAN GERARDO TOLENTINO FUNAMOTO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000375\",\"finishedDate\":null,\"fixRateValue\":358.62,\"fix_rate_value\":358.62,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"798\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 2.496,13.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000375\",\"processing\":false,\"secondaryExternalCode\":\"2692\",\"secondary_external_code\":\"2692\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 15:18:49\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2021-05-26 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000381 - EXTENCION DE PERMANENCIA TRANSITORIA POR 30 D\\u00cdAS - IGNACIO ESTEBAN BUSTOS SAAVEDRA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000381\",\"finishedDate\":null,\"fixRateValue\":690.66,\"fix_rate_value\":690.66,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"799\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 4.807,13.- INCLUYE GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000381\",\"processing\":false,\"secondaryExternalCode\":\"2709\",\"secondary_external_code\":\"2709\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 15:19:22\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2021-05-26 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000382 - EXTENCION PERMANENCIA TRANSITORIA POR 30 D\\u00cdAS - YORDAN GEOVANNI SALAS CARVAJAL\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000382\",\"finishedDate\":null,\"fixRateValue\":690.66,\"fix_rate_value\":690.66,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"800\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 4.807,13.- INCLUYE GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000382\",\"processing\":false,\"secondaryExternalCode\":\"2710\",\"secondary_external_code\":\"2710\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 15:19:43\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2021-06-16 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000389 - PERMANENCIA TRANSITORIA POR 90 D\\u00cdAS - JUAN GERARDO TOLENTINO FUNAMOTO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000389\",\"finishedDate\":null,\"fixRateValue\":828.02,\"fix_rate_value\":828.02,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"801\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 5763,71.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000389\",\"processing\":false,\"secondaryExternalCode\":\"2743\",\"secondary_external_code\":\"2743\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 15:20:14\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2021-07-07 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000399 - VISA MERCOSUR DE 2 A\\u00d1OS - IGNACIO ESTEBAN BUSTOS SAAVEDRA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000399\",\"finishedDate\":null,\"fixRateValue\":913,\"fix_rate_value\":913,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"802\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS USD. 913.26 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000399\",\"processing\":false,\"secondaryExternalCode\":\"2784\",\"secondary_external_code\":\"2784\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2021-07-07 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000400 - VISA MERCOSUR DE 2 A\\u00d1OS - YORDAN GIOVANNI SALAS CARVAJAL\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000400\",\"finishedDate\":null,\"fixRateValue\":913,\"fix_rate_value\":913,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"803\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS USD. 913.26 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000400\",\"processing\":false,\"secondaryExternalCode\":\"2785\",\"secondary_external_code\":\"2785\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2021-07-22 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000405 - C\\u00c9DULA DE EXTRANJERO - YORDAN GIOVANNI SALAS CARVAJAL\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000405\",\"finishedDate\":null,\"fixRateValue\":273.13,\"fix_rate_value\":273.13,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"804\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1.901, 95.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000405\",\"processing\":false,\"secondaryExternalCode\":\"2855\",\"secondary_external_code\":\"2855\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 15:21:24\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2021-07-22 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000406 - C\\u00c9DULA DE EXTRANJERO - IGNACIO ESTEBAN BUSTOS SAAVEDRA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000406\",\"finishedDate\":null,\"fixRateValue\":273.13,\"fix_rate_value\":273.13,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"805\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1.901, 95.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000406\",\"processing\":false,\"secondaryExternalCode\":\"2856\",\"secondary_external_code\":\"2856\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 15:21:55\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2021-08-10 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000409 - PERMANENCIA TRANSITORIA POR 30 D\\u00cdAS AEROPUERTO - ORESTES ODNIEL SUERO PI\\u00d1A\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000409\",\"finishedDate\":null,\"fixRateValue\":358,\"fix_rate_value\":358,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"806\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 358.64 INCLUYEN GASTOS E IMPUESTOS DE LEY\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000409\",\"processing\":false,\"secondaryExternalCode\":\"2872\",\"secondary_external_code\":\"2872\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2021-08-13 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000411 - VISA DE OBJETO DETERMINADO 30 D\\u00cdAS AEROPUERTO - EDUARDO AMIRO LOPEZ MORRISON\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000411\",\"finishedDate\":null,\"fixRateValue\":329.89,\"fix_rate_value\":329.89,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"807\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 2296.80 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000411\",\"processing\":false,\"secondaryExternalCode\":\"2881\",\"secondary_external_code\":\"2881\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 15:22:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2021-08-13 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000412 - VISA DE OBJETO DETERMINADO 30 D\\u00cdAS AEROPUERTO - FABIO XAVIER DA SILVA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000412\",\"finishedDate\":null,\"fixRateValue\":329.89,\"fix_rate_value\":329.89,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"808\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 2296.80 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000412\",\"processing\":false,\"secondaryExternalCode\":\"2882\",\"secondary_external_code\":\"2882\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 15:23:11\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2021-09-09 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000419 - VISA DE OBEJTO DETERMINADO 90 DIAS POR TRABAJO - ORESTES OTNIEL SUERO PI\\u00d1A\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000419\",\"finishedDate\":null,\"fixRateValue\":828.02,\"fix_rate_value\":828.02,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"809\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 5763.72 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000419\",\"processing\":false,\"secondaryExternalCode\":\"2927\",\"secondary_external_code\":\"2927\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 15:23:35\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2021-09-09 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000420 - VISA DE OBJETO DETERMINADO 30 D\\u00cdAS POR TRABAJO - FABIO XAVIER DA SILVA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000420\",\"finishedDate\":null,\"fixRateValue\":690.66,\"fix_rate_value\":690.66,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"810\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 4807.13 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000420\",\"processing\":false,\"secondaryExternalCode\":\"2928\",\"secondary_external_code\":\"2928\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 15:24:02\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2021-10-26 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000429 - PERMANENCIA TRANSITORIA POR 30 D\\u00cdAS AEROPUERTO - EDGAR JOSE GUTIERREZ MU\\u00d1OS\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000429\",\"finishedDate\":null,\"fixRateValue\":358,\"fix_rate_value\":358,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"811\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 358.64 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000429\",\"processing\":false,\"secondaryExternalCode\":\"2978\",\"secondary_external_code\":\"2978\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2021-12-06 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000439 - PERMANENCIA TRANSITORIA POR 90 D\\u00cdAS - EDGAR JOSE GUTIERREZ MU\\u00d1OZ\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000439\",\"finishedDate\":null,\"fixRateValue\":828,\"fix_rate_value\":828,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"812\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 828.12 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000439\",\"processing\":false,\"secondaryExternalCode\":\"3044\",\"secondary_external_code\":\"3044\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-04-29 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000491 - VISA DE OBJETO DETERMINADO 30 D\\u00cdAS - EDGARD JOSE GUTIERREZ MU\\u00d1OZ\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000491\",\"finishedDate\":null,\"fixRateValue\":690,\"fix_rate_value\":690,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"813\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 690.68 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000491\",\"processing\":false,\"secondaryExternalCode\":\"3361\",\"secondary_external_code\":\"3361\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-04-29 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000492 - VISA DE OBJETO DETERMINADO 30 D\\u00cdAS AEROPUERTO + CEERTIFICADO INTERPOL- ISRAEL LORENZO PEREZ DIAZ\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000492\",\"finishedDate\":null,\"fixRateValue\":330,\"fix_rate_value\":330,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"814\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIO DE USD. 330 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000492\",\"processing\":false,\"secondaryExternalCode\":\"3362\",\"secondary_external_code\":\"3362\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2022-06-23 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000508 - VISA DE OBJETO DETERMINADO 30 D\\u00cdAS - LEIVER AQUINO VICENTE\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000508\",\"finishedDate\":null,\"fixRateValue\":690.68,\"fix_rate_value\":690.68,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"815\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 4807.13 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000508\",\"processing\":false,\"secondaryExternalCode\":\"3435\",\"secondary_external_code\":\"3435\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 15:26:01\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-06-23 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000509 - VISA DE OBJETO DETERMINADO 30 D\\u00cdAS AEROPUERTO - ENRIQUE ESTEBAN GONZALEZ LOYOLA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000509\",\"finishedDate\":null,\"fixRateValue\":330,\"fix_rate_value\":330,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"816\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 330 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000509\",\"processing\":false,\"secondaryExternalCode\":\"3436\",\"secondary_external_code\":\"3436\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-07-20 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000511 - VISA DE OBJETO DETERMINADO 30 D\\u00cdAS AEROPUERTO - OSCAR DANIEL ASTUDILLO NUDELMAN\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000511\",\"finishedDate\":null,\"fixRateValue\":330,\"fix_rate_value\":330,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"817\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 330 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000511\",\"processing\":false,\"secondaryExternalCode\":\"3493\",\"secondary_external_code\":\"3493\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-07-20 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000512 - VISA DE OBJETO DETERMINADO 30 D\\u00cdAS AEROPUERTO - MARCO ANTONIO NAVARRO SANCHEZ\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000512\",\"finishedDate\":null,\"fixRateValue\":330,\"fix_rate_value\":330,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"818\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 330 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000512\",\"processing\":false,\"secondaryExternalCode\":\"3494\",\"secondary_external_code\":\"3494\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-07-22 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000513 - VISA DE OBJETO DETERMINADO 30 D\\u00cdAS AEROPUERTO - FRANCO SEBASTIAN LAGOS.\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000513\",\"finishedDate\":null,\"fixRateValue\":330,\"fix_rate_value\":330,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"819\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"los honorarios de usd. 330 incluyen gastos e impuestos de ley.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000513\",\"processing\":false,\"secondaryExternalCode\":\"3499\",\"secondary_external_code\":\"3499\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-08-18 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000519 - CERTIFICADO DE ANTECEDENTES REJAP APOSTILLADO - HONEY CARBALLO CARRASCO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000519\",\"finishedDate\":null,\"fixRateValue\":300,\"fix_rate_value\":300,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"820\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 300 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000519\",\"processing\":false,\"secondaryExternalCode\":\"3538\",\"secondary_external_code\":\"3538\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-08-18 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000520 - CERTIFICADO DE ANTECEDENTES REJAP APOSTILLADO - TOMAS MOGUEL CANTO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000520\",\"finishedDate\":null,\"fixRateValue\":300,\"fix_rate_value\":300,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"821\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 300 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000520\",\"processing\":false,\"secondaryExternalCode\":\"3539\",\"secondary_external_code\":\"3539\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-09-02 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000525 - CERTIFICADO DE ANTECEDENTES REJAP APOSTILLADO - LEIVER AQUINO VICENTE\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000525\",\"finishedDate\":null,\"fixRateValue\":300,\"fix_rate_value\":300,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"822\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 300 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000525\",\"processing\":false,\"secondaryExternalCode\":\"3563\",\"secondary_external_code\":\"3563\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2022-09-26 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000532 - AMPLIACION PRIMERA DE VISA TRANSITORIA 30 DIAS - FRANCO SEBASTIAN LAGOS\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000532\",\"finishedDate\":null,\"fixRateValue\":690.66,\"fix_rate_value\":690.66,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"823\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 4807.13 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000532\",\"processing\":false,\"secondaryExternalCode\":\"3593\",\"secondary_external_code\":\"3593\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 15:28:27\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2022-09-26 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000533 - VISA DE OBJETO DETERMINADO 30 D\\u00cdAS AEROPUERTO - PEDRO NICOLAS FERNANDEZ ROBLEZ\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000533\",\"finishedDate\":null,\"fixRateValue\":329.89,\"fix_rate_value\":329.89,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"824\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 2296.8 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000533\",\"processing\":false,\"secondaryExternalCode\":\"3594\",\"secondary_external_code\":\"3594\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 15:29:43\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2022-09-26 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000534 - VISA MERCOSUR DE 2 A\\u00d1OS - OSCAR DANIEL ASTUDILLO NUDELMAN\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000534\",\"finishedDate\":null,\"fixRateValue\":913.22,\"fix_rate_value\":913.22,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"825\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 6356.29 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000534\",\"processing\":false,\"secondaryExternalCode\":\"3595\",\"secondary_external_code\":\"3595\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 15:30:09\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2022-09-26 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000535 - CARNET EXTRANJERO - OSCAR DANIEL ASTUDILLO NUDELMAN\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000535\",\"finishedDate\":null,\"fixRateValue\":273.13,\"fix_rate_value\":273.13,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"826\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1901.71 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000535\",\"processing\":false,\"secondaryExternalCode\":\"3596\",\"secondary_external_code\":\"3596\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 15:30:36\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2022-10-17 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000547 - VISA DE OBJETO DETERMINADO 90 D\\u00cdAS - PEDRO NICOLAS FERNANDEZ ROBLES\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000547\",\"finishedDate\":null,\"fixRateValue\":828.02,\"fix_rate_value\":828.02,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"827\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 5763,72 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000547\",\"processing\":false,\"secondaryExternalCode\":\"3651\",\"secondary_external_code\":\"3651\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 15:31:14\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-11-09 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000553 - VISA DE OBJETO DETERMINADO 30 D\\u00cdAS AEROPUERTO - JULIO CESAR RODRIGUEZ CACERES\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000553\",\"finishedDate\":null,\"fixRateValue\":330,\"fix_rate_value\":330,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"828\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 330 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000553\",\"processing\":false,\"secondaryExternalCode\":\"3682\",\"secondary_external_code\":\"3682\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-11-09 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000554 - VISA DE OBEJTO DETERMINADO 90 DIAS POR TRABAJO - JULIO CESAR RODRIGUEZ CACERES\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000554\",\"finishedDate\":null,\"fixRateValue\":828,\"fix_rate_value\":828,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"829\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 828.12 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000554\",\"processing\":false,\"secondaryExternalCode\":\"3685\",\"secondary_external_code\":\"3685\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2022-11-09 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000555 - VISA DE OBJETO DETERMINADO 30 D\\u00cdAS AEROPUERTO - RAUL ZAMORA OGAZ\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000555\",\"finishedDate\":null,\"fixRateValue\":330,\"fix_rate_value\":330,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"830\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 330 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000555\",\"processing\":false,\"secondaryExternalCode\":\"3694\",\"secondary_external_code\":\"3694\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 15:32:00\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-11-28 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000559 - VISA DE OBJETO DETERMINADO 30 D\\u00cdAS - RAUL ALBERTO ZAMORA ORGAZ\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000559\",\"finishedDate\":null,\"fixRateValue\":358,\"fix_rate_value\":358,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"831\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 358.64 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000559\",\"processing\":false,\"secondaryExternalCode\":\"3727\",\"secondary_external_code\":\"3727\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-01-03 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000566 - VISA DE OBJETO DETERMINADO 30 D\\u00cdAS AEROPUERTO - RODOLFO ALEJANDRO MILCHIO MILCHIO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000566\",\"finishedDate\":null,\"fixRateValue\":358,\"fix_rate_value\":358,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"832\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 358,64 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000566\",\"processing\":false,\"secondaryExternalCode\":\"3794\",\"secondary_external_code\":\"3794\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-01-03 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000567 - VISA DE OBJETO DETERMINADO 30 D\\u00cdAS AEROPUERTO - LUIS ERNESTO RAMIREZ BARBOSA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000567\",\"finishedDate\":null,\"fixRateValue\":358,\"fix_rate_value\":358,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"833\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 358.64 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000567\",\"processing\":false,\"secondaryExternalCode\":\"3795\",\"secondary_external_code\":\"3795\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-01-03 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000568 - VISA DE OBJETO DETERMINADO 30 D\\u00cdAS AEROPUERTO - SERGIO ANDRES BURGOS BARRAZA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000568\",\"finishedDate\":null,\"fixRateValue\":358,\"fix_rate_value\":358,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"834\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 358.64 INLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000568\",\"processing\":false,\"secondaryExternalCode\":\"3796\",\"secondary_external_code\":\"3796\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-01-03 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000569 - VISA DE OBJETO DETERMINADO 30 D\\u00cdAS AEROPUERTO - EDUARDO ROJO ZU\\u00d1IGA.\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000569\",\"finishedDate\":null,\"fixRateValue\":358,\"fix_rate_value\":358,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"835\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 358.64 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000569\",\"processing\":false,\"secondaryExternalCode\":\"3797\",\"secondary_external_code\":\"3797\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-01-24 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000574 - VISA DE OBEJTO DETERMINADO 90 DIAS POR TRABAJO - RAUL ALBERTO ZAMORA OGAS\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000574\",\"finishedDate\":null,\"fixRateValue\":828,\"fix_rate_value\":828,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"836\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 828,12 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000574\",\"processing\":false,\"secondaryExternalCode\":\"3816\",\"secondary_external_code\":\"3816\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-01-24 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000575 - VISA DE OBEJTO DETERMINADO 90 DIAS POR TRABAJO - EDUARDO ROJO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000575\",\"finishedDate\":null,\"fixRateValue\":828,\"fix_rate_value\":828,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"837\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 828.12 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000575\",\"processing\":false,\"secondaryExternalCode\":\"3817\",\"secondary_external_code\":\"3817\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-01-24 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000576 - VISA DE OBEJTO DETERMINADO 90 DIAS POR TRABAJO - LUIS ERNESTO RAMIREZ BARBOSA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000576\",\"finishedDate\":null,\"fixRateValue\":828,\"fix_rate_value\":828,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"838\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 828,12 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000576\",\"processing\":false,\"secondaryExternalCode\":\"3818\",\"secondary_external_code\":\"3818\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-02-03 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000579 - AMPLIACION PRIMERA DE VISA TRANSITORIA 30 DIAS - RODOLFO ALEJANDRO MILCHIO MILCHIO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000579\",\"finishedDate\":null,\"fixRateValue\":358,\"fix_rate_value\":358,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"839\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 358.64 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000579\",\"processing\":false,\"secondaryExternalCode\":\"3828\",\"secondary_external_code\":\"3828\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-02-03 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000580 - AMPLIACION DE VISA TRANSITORIA 90 DIAS POR TRABAJO - DIEGO ALEJANDRO SANDOVAL RIVERA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000580\",\"finishedDate\":null,\"fixRateValue\":828,\"fix_rate_value\":828,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"840\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 828.12 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000580\",\"processing\":false,\"secondaryExternalCode\":\"3829\",\"secondary_external_code\":\"3829\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-02-23 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000591 - VISA TRANSITORIA 30 DIAS - ROBERT LUIS DROGUETT AREVALOS\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000591\",\"finishedDate\":null,\"fixRateValue\":330,\"fix_rate_value\":330,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"841\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 330 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000591\",\"processing\":false,\"secondaryExternalCode\":\"3923\",\"secondary_external_code\":\"3923\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-03-21 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000608 - VISA DE OBJETO DETERMINADO 30 D\\u00cdAS AEROPUERTO - MIGUEL ANGEL HEREDIA REYES\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000608\",\"finishedDate\":null,\"fixRateValue\":330,\"fix_rate_value\":330,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"842\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 330 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000608\",\"processing\":false,\"secondaryExternalCode\":\"4024\",\"secondary_external_code\":\"4024\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-04-12 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000614 - VISA DE OBJETO DETERMINADO 30 D\\u00cdAS AEROPUERTO - IVO STEFAN HERNANDEZ SEGOVIA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000614\",\"finishedDate\":null,\"fixRateValue\":330,\"fix_rate_value\":330,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"843\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 330 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000614\",\"processing\":false,\"secondaryExternalCode\":\"4050\",\"secondary_external_code\":\"4050\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-04-24 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000621 - VISA DE OBJETO DETERMINADO 30 D\\u00cdAS AEROPUERTO - GABRIEL ALEJANDRO ALVIAL ACEVEDO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000621\",\"finishedDate\":null,\"fixRateValue\":330,\"fix_rate_value\":330,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"844\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 330 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000621\",\"processing\":false,\"secondaryExternalCode\":\"4064\",\"secondary_external_code\":\"4064\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-04-24 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000622 - SEGUNDA VISA DE OBJETO DETERMINADO 30 D\\u00cdAS AEROPUERTO - MARCO ANTONIO NAVARRO SANCHEZ\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000622\",\"finishedDate\":null,\"fixRateValue\":330,\"fix_rate_value\":330,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"845\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 330 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000622\",\"processing\":false,\"secondaryExternalCode\":\"4065\",\"secondary_external_code\":\"4065\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-05-08 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000627 - TERCERA AMPLIACION DE VISA DE OBJETO DETERMINADO 30 DIAS - RAUL ALBERTO ZAMORA OGAZ\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000627\",\"finishedDate\":null,\"fixRateValue\":358,\"fix_rate_value\":358,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"846\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 358.64 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000627\",\"processing\":false,\"secondaryExternalCode\":\"4106\",\"secondary_external_code\":\"4106\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-05-08 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000628 - SEGUNDA AMPLIACION DE VISA DE OBJETO DETERMINADO 30 DIAS - DIEGO ALEJANDRO SANDOVAL RIVERA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000628\",\"finishedDate\":null,\"fixRateValue\":358,\"fix_rate_value\":358,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"847\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 358.64 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000628\",\"processing\":false,\"secondaryExternalCode\":\"4107\",\"secondary_external_code\":\"4107\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-05-08 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000629 - AMPLIACION DE VISA TRANSITORIA 30 DIAS - IVO STEFAN HERNANDEZ SEGOVIA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000629\",\"finishedDate\":null,\"fixRateValue\":358,\"fix_rate_value\":358,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"848\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 358.64 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000629\",\"processing\":false,\"secondaryExternalCode\":\"4108\",\"secondary_external_code\":\"4108\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-05-09 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000630 - VISA DE OBJETO DETERMINADO 30 D\\u00cdAS AEROPUERTO - ALEXANDER DANIEL DAVID VALLEJOS VERGARA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000630\",\"finishedDate\":null,\"fixRateValue\":330,\"fix_rate_value\":330,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"849\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 330 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000630\",\"processing\":false,\"secondaryExternalCode\":\"4111\",\"secondary_external_code\":\"4111\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-05-16 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000632 - SEGUNDA AMPLIACION DE VISA DE OBJETO DETERMINADO 30 DIAS - MIGUEL ANGEL HEREDIA REYES\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000632\",\"finishedDate\":null,\"fixRateValue\":358,\"fix_rate_value\":358,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"850\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 358.64 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000632\",\"processing\":false,\"secondaryExternalCode\":\"4115\",\"secondary_external_code\":\"4115\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-06-07 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000650 - tercera visa de objeto determinado 30 dias aeropuerto - RAUL ALBERTO ZOMORA OGAZ\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000650\",\"finishedDate\":null,\"fixRateValue\":330,\"fix_rate_value\":330,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"851\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 330 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000650\",\"processing\":false,\"secondaryExternalCode\":\"4174\",\"secondary_external_code\":\"4174\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-06-07 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000651 - TERCERA AMPLIACION DE VISA DE OBJETO DETERMINADO 30 DIAS AEROPUERT - DIEGO ALEJANDRO SANDOVAL RIVERA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000651\",\"finishedDate\":null,\"fixRateValue\":330,\"fix_rate_value\":330,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"852\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 330 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000651\",\"processing\":false,\"secondaryExternalCode\":\"4175\",\"secondary_external_code\":\"4175\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-06-07 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000652 - TERCERA AMPLIACION DE VISA TRANSITORIA 30 DIAS - IVO STEFAN HERNANDEZ SEGOVIA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000652\",\"finishedDate\":null,\"fixRateValue\":358.64,\"fix_rate_value\":358.64,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"853\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 358.64 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000652\",\"processing\":false,\"secondaryExternalCode\":\"4176\",\"secondary_external_code\":\"4176\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-06-29 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000657 - VISA DE OBJETO DETERMINADO 30 D\\u00cdAS AEROPUERTO - RISTO ANDRES MARTINEZ RAMIREZ\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000657\",\"finishedDate\":null,\"fixRateValue\":330,\"fix_rate_value\":330,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"854\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 330 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000657\",\"processing\":false,\"secondaryExternalCode\":\"4204\",\"secondary_external_code\":\"4204\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-07-12 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000664 - VISA MERCOSUR DE 2 A\\u00d1OS - DIEGO ALEJANDRO SANDOVAL RIVERA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000664\",\"finishedDate\":null,\"fixRateValue\":913,\"fix_rate_value\":913,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"855\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 913.26 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000664\",\"processing\":false,\"secondaryExternalCode\":\"4219\",\"secondary_external_code\":\"4219\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2023-07-21 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000431-SR-000874 - Reorganizaci\\u00f3n empresarial y protecci\\u00f3n del patrimonio familiar\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000431-SR-000874\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1343\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Nota: Verificar con el cliente la denominaci\\u00f3n social y el nit para las facturas de forma previa a su emisi\\u00f3n.\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000431-SR-000874\",\"processing\":false,\"secondaryExternalCode\":\"4224\",\"secondary_external_code\":\"4224\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 21:06:41\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"tmercado@emba.com\",\"enabled\":true,\"fullName\":\"Teddy Alberto Mercado Carrion\",\"id\":12,\"locale\":\"es\",\"shortName\":\"tmercado\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"tmercado@emba.com\"},\"customer\":{\"id\":\"611\",\"name\":\"UNIVERSIDAD PRIVADA FRANZ TAMAYO S.A.\",\"primary_external_code\":\"431\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-12 19:53:08\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000189-SR-001120 - Disoluci\\u00f3n y Liquidaci\\u00f3n - tr\\u00e1mites finales\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000189-SR-001120\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2693\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Son horas no facturables, al tratarse de un proyecto que fue pagado al inicio del mismo en su totalidad y quedaron solamente pendientes algunos tr\\u00e1mites.\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000189-SR-001120\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 19:53:34\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"595\",\"name\":\"TJC BOLIVIA S.A.\",\"primary_external_code\":\"189\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-25 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-25 18:17:11\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000597-SR-001141 - Implementaci\\u00f3n de Sistema de Cumplimiento - UIF\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000597-SR-001141\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2743\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000597-SR-001141\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-02 20:35:55\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"613\",\"name\":\"Urbanizaciones del Norte S.A.\",\"primary_external_code\":\"597\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"4\",\"externalCode\":\"AR16\",\"name\":\"Der.Mercantil-Banca\\u0026Finanzas\\n\"}}]}}}\n","time":"2025-07-30T10:51:05-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: POST https://apinewtm.com/graphql/\nHeaders: map[Accept:[application/json] Authorization:[Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJpYXQiOjE3NTM4ODY1MjIsImV4cCI6MTc1Mzk2NjUyMiwiaWQiOjEwNSwidXNlcm5hbWUiOiJpbnRlZ3JhY2lvbmVzQGVtYmEuYm8iLCJhcGlrZXkiOiI5Yzg0ZjYzZTRlMzk2ZGZmOWU5ZjU3NDI5OGRmZWUzOSIsImFwaWtleUNyZWF0ZWRBdCI6eyJkYXRlIjoiMjAyNS0wNy0xNyAxMDo0MToyNS4wMDAwMDAiLCJ0aW1lem9uZV90eXBlIjozLCJ0aW1lem9uZSI6IkFtZXJpY2EvQm9nb3RhIn0sImZ1bGxOYW1lIjoiSW50ZWdyYWNpw7NuIEVNQkEiLCJlbWFpbCI6ImludGVncmFjaW9uZXNAZW1iYS5ibyIsImxvY2FsZSI6ImVzIiwiZGF5c0FsbG93ZWQiOjMwLCJpc0Nvb3JkaW5hdG9yIjpmYWxzZSwidHlwZVRhc2tWaWV3IjoibGlzdHMiLCJkYXlzYWxsb3ciOjMwLCJyb2xlcyI6e30sInNob3J0X25hbWUiOiJJTi5FTUJBIiwicGVybWlzc2lvbnMiOlsic3luY19leHRlcm5hbF9idXNpbmVzcyIsInN5bmNfZXh0ZXJuYWxfY3VzdG9tZXIiLCJzeW5jX2V4dGVybmFsX21pbGVzdG9uZSIsImFic2VuY2VfYXBwcm92ZSIsImFic2VuY2VfY3JlYXRlX2FsbCIsImFic2VuY2VfY3JlYXRlX293biIsImFic2VuY2VfbWVudSIsImFjY291bnRpbmdfYnVzaW5lc3NfbGlzdCIsImFjY291bnRpbmdfY3VzdG9tZXJfbGlzdCIsImJpbGxpbmdfcGVyaW9kX2RlbGV0ZV9hbGwiLCJiaWxsaW5nX3BlcmlvZF9lZGl0X2FsbCIsImJpbGxpbmdfcGVyaW9kX2xpc3QiLCJiaWxsaW5nX3BlcmlvZF9yZWFjdGl2YXRlIiwiYm9hcmRfcmF0ZV91c2VyX2NyZWF0ZSIsImJvYXJkX3JhdGVfdXNlcl9lZGl0IiwiYnVzaW5lc3NfY3JlYXRlIiwiYnVzaW5lc3NfZGVzY3JpcHRpb25fc2F2ZSIsImJ1c2luZXNzX2VkaXQiLCJidXNpbmVzc19saXN0X2FsbCIsImJ1c2luZXNzX21lbnUiLCJidXNpbmVzc19yZXNwb25zaWJsZV9saXN0X2FsbCIsImJ1c2luZXNzX3NlZV9iaWxsaW5nX2luZm8iLCJidXNpbmVzc2VzX2FsbG93ZWRfdXNlcl9jcmVhdGUiLCJidXNpbmVzc2VzX2FsbG93ZWRfdXNlcl9kZWxldGUiLCJjb21wYW55X2Rpc2FibGUiLCJjb21wYW55X2VkaXQiLCJjb21wYW55X2xpc3QiLCJjb25jZXB0X2NyZWF0ZSIsImNvbmNlcHRfZWRpdCIsImNvbmNlcHRfbWVudSIsImNvbnRhY3RfY3JlYXRlIiwiY29udGFjdF9jcmVhdGVfZmFzdCIsImNvbnRhY3RfZWRpdCIsImNvbnRhY3RfbGlzdCIsImNvbnRhY3RfbWVudSIsImN1c3RvbWVyX2NyZWF0ZSIsImN1c3RvbWVyX2NyZWF0ZV9mYXN0IiwiY3VzdG9tZXJfZWRpdCIsImN1c3RvbWVyX2xpc3QiLCJjdXN0b21lcl9saXN0X2FsbCIsImN1c3RvbWVyX21lbnUiLCJleHBlbnNlX2NyZWF0ZV9hbGwiLCJleHBlbnNlX2RlbGV0ZV9hbGwiLCJleHBlbnNlX2R1cGxpY2F0ZSIsImV4cGVuc2VfZWRpdF9hbGwiLCJleHBlbnNlX2xpc3RfYWxsIiwiZXhwZW5zZV9tZW51IiwiZXhwZW5zZV9yZWplY3RfYWxsIiwiZmFiX3Nob3ciLCJmaWxlX21lbnUiLCJnZW9yZWZlcmVuY2VfY3JlYXRlIiwiZ2VvcmVmZXJlbmNlX2VkaXQiLCJnZW9yZWZlcmVuY2VfbWVudSIsImdvX3RvX2xlZ2FjeSIsImluZGljYXRvcnNfbWVudSIsImludm9pY2VfY3JlYXRlIiwiaW52b2ljZV9kZXRhaWxfbGlzdF9hbGwiLCJpbnZvaWNlX2ZpeF90aW1lc19jdXN0b21fdmFsdWUiLCJpbnZvaWNlX2xpc3RfYWxsIiwiaW52b2ljZWFkdmFuY2VfY3JlYXRlIiwiaW52b2ljZWFkdmFuY2VfbGlzdCIsImludm9pY2VhZHZhbmNlX3VwZGF0ZSIsImxvZ19saXN0X2FsbCIsImxvZ19saXN0X293biIsIm1pbGVzdG9uZV9jcmVhdGUiLCJtaWxlc3RvbmVfZGVsZXRlIiwibWlsZXN0b25lX2VkaXQiLCJtb250aGx5X2ZpeF9yYXRlX2dyb3VwX2NyZWF0ZSIsIm1vbnRobHlfZml4X3JhdGVfZ3JvdXBfZWRpdCIsIm1vbnRobHlfdXNlcl9jb3N0X2NyZWF0ZSIsIm1vbnRobHlfdXNlcl9jb3N0X2VkaXQiLCJwYXltZW50X2NyZWF0ZSIsInBheW1lbnRfZGVsZXRlIiwicGF5bWVudF9lZGl0IiwicGF5bWVudF9tZW51IiwicHJvY2VkdXJlX21lbnUiLCJwcm9jZWR1cmVfcmF0ZV9jcmVhdGUiLCJwcm9jZWR1cmVfcmF0ZV9kZXRhaWxfY3JlYXRlIiwicHJvY2VkdXJlX3JhdGVfZGV0YWlsX2VkaXQiLCJwcm9jZWR1cmVfcmF0ZV9kZXRhaWxfbGlzdCIsInByb2NlZHVyZV9yYXRlX2VkaXQiLCJwcm9jZWR1cmVfcmF0ZV9saXN0IiwicHJvY2VkdXJlX3JhdGVfbWVudSIsInByb2NlZHVyZV90cmFuc2FjdGlvbl9saXN0IiwicHJvamVjdF9hcmNoaXZlX2Nhc2NhZGVfYWxsIiwicHJvamVjdF9kZWxldGVfY2FzY2FkZV9hbGwiLCJwcm9qZWN0X3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInJhdGVfYnVzaW5lc3NfY2F0ZWdvcnlfY3JlYXRlIiwicmF0ZV9idXNpbmVzc19jYXRlZ29yeV9lZGl0IiwicmF0ZV9idXNpbmVzc191c2VyX2NyZWF0ZSIsInJhdGVfYnVzaW5lc3NfdXNlcl9lZGl0IiwicmF0ZV9leGNoYW5nZV9jcmVhdGUiLCJyYXRlX2V4Y2hhbmdlX2VkaXQiLCJyYXRlX2V4Y2hhbmdlX2xpc3QiLCJyYXRlX3VzZXJfY3JlYXRlIiwicmF0ZV91c2VyX2VkaXQiLCJyb2xlX2NyZWF0ZSIsInJvbGVfZWRpdF9hbGwiLCJyb2xlX2xpc3RfYWxsIiwic2VjdGlvbl9hcmNoaXZlX2Nhc2NhZGVfYWxsIiwic2VjdGlvbl9kZWxldGVfY2FzY2FkZV9hbGwiLCJzZWN0aW9uX3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInNlZV9tZW51X3JhdGVfZXhjaGFuZ2UiLCJzZXJpZV9jcmVhdGUiLCJzZXJpZV9lZGl0Iiwic2VyaWVfbWVudSIsInNldHRpbmdzX3ZpZXciLCJzdXBwbGllcl9jcmVhdGUiLCJ0YXNrX2FkZF90aW1lX2FsbCIsInRhc2tfYWRkX3RpbWVfb3duIiwidGFza19hc3NpZ25lZF91c2VyX2VtYWlsIiwidGFza19jbG9zZWRfZW1haWwiLCJ0YXNrX2NyZWF0ZV9hbGwiLCJ0YXNrX2NyZWF0ZV9jb21tZW50X2VtYWlsIiwidGFza19jcmVhdGVfc2VsZiIsInRhc2tfY3JlYXRlX3RlYW0iLCJ0YXNrX2RlbGV0ZV9hbGwiLCJ0YXNrX2RlbGV0ZV9vd24iLCJ0YXNrX2RlbGV0ZV90ZWFtIiwidGFza19lZGl0X2FsbCIsInRhc2tfZWRpdF9kdWVfZGF0ZSIsInRhc2tfZWRpdF9vd24iLCJ0YXNrX2VkaXRfdGVhbSIsInRhc2tfbGlzdF9hbGwiLCJ0YXNrX2xpc3Rfb3duIiwidGFza19saXN0X3RlYW0iLCJ0YXNrX21hc3NpdmVpbXBvcnQiLCJ0YXNrX21lbnUiLCJ0YXNrX21pZ3JhdGlvbiIsInRhc2tfc2V0X2FkZGl0aW9uYWxfYXNzaWduZWVzIiwidGFza19zZXRfZHVlX2RhdGUiLCJ0YXNrX3NldF9lc3RpbWF0ZWRfdGltZSIsInRhc2tfc2V0X3ByaW9yaXR5IiwidGFza19zZXRfcHJvZ3Jlc3MiLCJ0YXhfZWRpdF9hbGwiLCJ0YXhfbGlzdF9hbGwiLCJ0ZWFtX2FyY2hpdmVfY2FzY2FkZV9hbGwiLCJ0ZWFtX2NyZWF0ZV9hbGwiLCJ0ZWFtX2RlbGV0ZV9hbGwiLCJ0ZWFtX2VkaXRfYWxsIiwidGVhbV9saXN0X2FsbCIsInRlYW1fbGlzdF9vd24iLCJ0ZWFtX3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInRpbWVfYWNjZXB0X2FsbCIsInRpbWVfYWNjZXB0X293biIsInRpbWVfYXBwcm92ZV9hbGwiLCJ0aW1lX2FwcHJvdmVfb3duIiwidGltZV9jcmVhdGVfYWxsIiwidGltZV9jcmVhdGVfb3duIiwidGltZV9kZWxldGVfYWxsIiwidGltZV9kZWxldGVfb3duIiwidGltZV9kZW55X2FsbCIsInRpbWVfZGVueV9vd24iLCJ0aW1lX2Rvd25sb2FkZmlsZV9hbGwiLCJ0aW1lX2Rvd25sb2FkZmlsZV9vd24iLCJ0aW1lX2VkaXRfYWxsIiwidGltZV9lZGl0X2Nsb3NlX3BlcmlvZF9hbGwiLCJ0aW1lX2VkaXRfY2xvc2VfcGVyaW9kX293biIsInRpbWVfZWRpdF9vd24iLCJ0aW1lX2xpc3RfYWxsIiwidGltZV9saXN0X293biIsInRpbWVfbWVudSIsInRpbWVfbWludXRlc196ZXJvIiwidGltZV9yZWplY3RfYWxsIiwidGltZV9yZXN0cmljdGVkX3BlcmlvZF9jcmVhdGUiLCJ0aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX2VkaXQiLCJ0aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX21lbnUiLCJ0aW1lX3NoYXJlX2FsbCIsInRpbWVfc2hhcmVfb3duIiwidGltZV9zaG93X2NhbGVuZGFyX3ZpZXciLCJ0aW1lX3VwbG9hZGZpbGVfYWxsIiwidGltZV91cGxvYWRmaWxlX293biIsInRyYW5zYWN0aW9uX2FkYXB0ZXJfbGlzdCIsInRyYW5zYWN0aW9uX2xpc3QiLCJ1c2VyX2Fic2VuY2VzX3Nob3ciLCJ1c2VyX2Nvc3RfY3JlYXRlIiwidXNlcl9jb3N0X2VkaXQiLCJ1c2VyX2Nvc3RfbGlzdCIsInVzZXJfY29zdF9tZW51IiwidXNlcl9jb3N0X3JhdGVfY3JlYXRlIiwidXNlcl9jb3N0X3JhdGVfZWRpdCIsInVzZXJfY29zdF9yYXRlX2xpc3QiLCJ1c2VyX2NyZWF0ZSIsInVzZXJfZGlzYWJsZSIsInVzZXJfZWRpdCIsInVzZXJfZWRpdF9kYXlzX2FsbG93X29ubHkiLCJ1c2VyX2dyb3VwX3JvbGVfY3JlYXRlX2FsbCIsInVzZXJfZ3JvdXBfcm9sZV9kZWxldGVfYWxsIiwidXNlcl9ncm91cF9yb2xlX2VkaXRfYWxsIiwidXNlcl9ncm91cF9yb2xlc19saXN0X2FsbCIsInVzZXJfbGlzdCIsInVzZXJfbGlzdF9hbGwiLCJ1c2VyX21hc3NfYWN0aXZhdGlvbiIsInVzZXJfcHJvZHVjdGl2aXR5X2NyZWF0ZSIsInVzZXJfcHJvZHVjdGl2aXR5X2Rpc2FibGUiLCJ1c2VyX3Byb2R1Y3Rpdml0eV9lZGl0IiwidXNlcl9wcm9kdWN0aXZpdHlfZW5hYmxlIiwidXNlcl9wcm9kdWN0aXZpdHlfbWVudSIsInVzZXJfdGltZV9yZXN0cmljdGVkX3BlcmlvZF9jcmVhdGUiLCJ1c2VyX3RpbWVfcmVzdHJpY3RlZF9wZXJpb2RfZGVsZXRlIiwidXNlcl90aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX2VkaXQiLCJ1c2VyZ3JvdXBfY3JlYXRlX2FsbCIsInVzZXJncm91cF9kZWxldGVfYWxsIiwidXNlcmdyb3VwX2VkaXRfYWxsIiwidXNlcmdyb3VwX2xpc3RfYWxsIiwidXNlcmdyb3VwX21lbnUiLCJ1c2Vyc191c2VyX2dyb3VwX2NyZWF0ZV9hbGwiLCJ1c2Vyc191c2VyX2dyb3VwX2RlbGV0ZV9hbGwiLCJ1c2Vyc191c2VyX2dyb3VwX2VkaXRfYWxsIiwidXNlcnNfdXNlcl9ncm91cHNfbGlzdF9hbGwiXSwiaG9tZXBhZ2UiOm51bGx9.kShN7NXGoaz1oFro-yYNyIpIEcnNpo1GiB8SFGKFUJtDQoqyp1I1w-CMA8Kta3vWXnUZwx-y2z1yVSJaMpZbqQgKFlakpcf6351bZSL8IAUPExSfLz0HYYCWFx-Usx94BBTqosKsRhnT8PkPN3dGxs8-XTIEDi9gN-Pk9OSHmM5mPkTsaaxTY40M-F7Y0Up2y6s_lwFaX13CmstiYZSXzyKL9SUBBx-E6-8qQAfuKPIoZ_50jSGPW98-IkAcWwqO6yGf-M07dSfFZ2vLfwc3ulHm2p8jVSmRxJ_O43BEWQD5cvqGbVIvSMXkS4y98DL4Vencjjg27iu3CUJsDNBBTg] Content-Type:[application/json] Origin:[https://azure-function.timemanagerweb.com] Tenant-Name:[pruebas-dos] User-Agent:[Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36]]\nBody: map[query:query ($limit: Int, $orderBy: String, $orderDesc: Boolean, $page: Int) { BusinessMeta(limit: $limit, orderBy: $orderBy, orderDesc: $orderDesc, page: $page) { meta { hasNextPage hasPreviousPage limit next page pages previous total } rows { apply_procedures billable business_customer_code caseNumber closed_date confidential created_at discountAmount discountPercent displayName enableBusinessAllowedUsers expedient finishedDate fixRateValue fix_rate_value hourLimit hour_limit id internal_code isBillable limitAlert notes partialCharges partial_charges primary_external_code processing secondaryExternalCode secondary_external_code status statusMarking updated_at withIVA responsible { created_at daysAllow email enabled fullName id locale shortName superAdmin updated_at userType username } customer { id name primary_external_code company { id name } } practiceArea { id externalCode name } } } } variables:map[limit:100 orderBy:orderBy orderDesc:true page:14]]\n","time":"2025-07-30T10:51:05-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: POST https://apinewtm.com/graphql/ | Status: 200 | Duration: 1.5810921s\nHeaders: map[Access-Control-Allow-Credentials:[true] Access-Control-Allow-Origin:[https://azure-function.timemanagerweb.com] Access-Control-Expose-Headers:[link, access-control-allow-credentials] Cache-Control:[no-cache, private] Content-Type:[application/json] Date:[Wed, 30 Jul 2025 14:51:06 GMT] Server:[] Vary:[Authorization]]\nBody: {\"errors\":[{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",2,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",2,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",2,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",2,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",2,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",2,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",2,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",2,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",2,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",2,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",2,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",87,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",87,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",87,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",87,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",87,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",87,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",87,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",87,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",87,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",87,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",87,\"responsible\",\"username\"]}],\"data\":{\"BusinessMeta\":{\"meta\":{\"hasNextPage\":true,\"hasPreviousPage\":true,\"limit\":100,\"next\":15,\"page\":14,\"pages\":16,\"previous\":13,\"total\":1573},\"rows\":[{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-27 00:00:00\",\"confidential\":false,\"created_at\":\"2023-02-02 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000545-BK-000344 - Project Starlink\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000545-BK-000344\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"21\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Tarifa segun Engagement letter enviado a L. Chalco y M. Davila en 02\\/02\\/2023\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000545-BK-000344\",\"processing\":false,\"secondaryExternalCode\":\"3827\",\"secondary_external_code\":\"3827\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"amorenog@emba.com\",\"enabled\":true,\"fullName\":\"Andres Moreno Gutierrez\",\"id\":5,\"locale\":\"es\",\"shortName\":\"amoreno\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"amorenog@emba.com\"},\"customer\":{\"id\":\"574\",\"name\":\"Space X\",\"primary_external_code\":\"545\",\"company\":{\"id\":\"3\",\"name\":\"BKP\"}},\"practiceArea\":{\"id\":\"32\",\"externalCode\":\"AR35\",\"name\":\"Telecomunicaciones\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-21 00:00:00\",\"confidential\":false,\"created_at\":\"2022-02-02 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000471-SR-000465 - Servicios Legales Mensuales\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000471-SR-000465\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"26\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"A partir de Julio 2023 se cambio a tarifa por horas\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000471-SR-000465\",\"processing\":false,\"secondaryExternalCode\":\"3153\",\"secondary_external_code\":\"3153\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-21 21:37:59\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"622\",\"name\":\"VISI\\u00d3N MUNDIAL BOLIVIA\",\"primary_external_code\":\"471\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"30\",\"externalCode\":\"AR33\",\"name\":\"Servicios Legales Mensuales\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-06-22 00:00:00\",\"confidential\":false,\"created_at\":\"2018-10-31 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000743-BK-000362 - Cuestionario Minero\\/Ambiental\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000743-BK-000362\",\"finishedDate\":null,\"fixRateValue\":100,\"fix_rate_value\":100,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"33\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000743-BK-000362\",\"processing\":false,\"secondaryExternalCode\":\"855\",\"secondary_external_code\":\"855\",\"status\":1,\"statusMarking\":\"billed\",\"updated_at\":\"2024-06-22 03:37:26\",\"withIVA\":false,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":27,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"646\",\"name\":\"5CGroup Global Asset Management Co., Ltd.\",\"primary_external_code\":\"743\",\"company\":{\"id\":\"3\",\"name\":\"BKP\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2019-10-01 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000825-BK-000217 - Negociaci\\u00f3n Contrato YPFB\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000825-BK-000217\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"36\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Favor confirmar honorarios con Dr. AMG\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000825-BK-000217\",\"processing\":false,\"secondaryExternalCode\":\"1702\",\"secondary_external_code\":\"1702\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2025-03-13 13:59:44\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"amorenog@emba.com\",\"enabled\":true,\"fullName\":\"Andres Moreno Gutierrez\",\"id\":5,\"locale\":\"es\",\"shortName\":\"amoreno\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"amorenog@emba.com\"},\"customer\":{\"id\":\"649\",\"name\":\"ACRON\",\"primary_external_code\":\"825\",\"company\":{\"id\":\"3\",\"name\":\"BKP\"}},\"practiceArea\":{\"id\":\"11\",\"externalCode\":\"AR21\",\"name\":\"Der. Administrativo\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2020-03-03 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000739-BK-000236 - Servicios Legales por horas\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000739-BK-000236\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"38\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"USD 215 por hora, sin distinci\\u00f3n de jerarq\\u00faia\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000739-BK-000236\",\"processing\":false,\"secondaryExternalCode\":\"1981\",\"secondary_external_code\":\"1981\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-10-07 19:46:57\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"652\",\"name\":\"Airbus SAS\",\"primary_external_code\":\"739\",\"company\":{\"id\":\"3\",\"name\":\"BKP\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-05-26 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000875-BK-000296 - M\\u0026A Project Salar (por hora)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000875-BK-000296\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"40\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"OJO: Los precios por hora son los siguientes: Socio: USD. 275, Asociado Senior: USD. 220 y Asociado USD.170\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000875-BK-000296\",\"processing\":false,\"secondaryExternalCode\":\"200013\",\"secondary_external_code\":\"200013\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"amorenog@emba.com\",\"enabled\":true,\"fullName\":\"Andres Moreno Gutierrez\",\"id\":5,\"locale\":\"es\",\"shortName\":\"amoreno\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"amorenog@emba.com\"},\"customer\":{\"id\":\"658\",\"name\":\"ANDEAN PRECIOUS METALS CORP\",\"primary_external_code\":\"875\",\"company\":{\"id\":\"3\",\"name\":\"BKP\"}},\"practiceArea\":{\"id\":\"23\",\"externalCode\":\"AR28\",\"name\":\"M\\u0026A\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-08-16 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000875-BK-000331 - Trabajo por Horas - Manquiri\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000875-BK-000331\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"41\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"No hay iguala ni carta de contrataci\\u00f3n y aplicar\\u00e1 a solicitud de servicios puntuales por parte del cliente. No tiene plazo.\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000875-BK-000331\",\"processing\":false,\"secondaryExternalCode\":\"200064\",\"secondary_external_code\":\"200064\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"nicoln042001@gmail.com\",\"enabled\":true,\"fullName\":\"Daniel Marcelo Arredondo Zelada\",\"id\":6,\"locale\":\"es\",\"shortName\":\"darredon\",\"superAdmin\":false,\"updated_at\":\"2024-09-03 11:43:07\",\"userType\":1,\"username\":\"darredondo@emba.com.bo\"},\"customer\":{\"id\":\"658\",\"name\":\"ANDEAN PRECIOUS METALS CORP\",\"primary_external_code\":\"875\",\"company\":{\"id\":\"3\",\"name\":\"BKP\"}},\"practiceArea\":{\"id\":\"20\",\"externalCode\":\"AR25\",\"name\":\"Energ\\u00eda y Recursos Naturales\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2020-02-21 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000832-BK-000233 - Consultas sobre declaraci\\u00f3n de contenido cal\\u00f3rico en bebidas alcoh\\u00f3licas\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000832-BK-000233\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"44\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Socio: 180 \\/ Asociado Senior: USD 160 \\/ Asociado: USD 140\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000832-BK-000233\",\"processing\":false,\"secondaryExternalCode\":\"1956\",\"secondary_external_code\":\"1956\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"665\",\"name\":\"Banuet Arrache\",\"primary_external_code\":\"832\",\"company\":{\"id\":\"3\",\"name\":\"BKP\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2018-10-31 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000662-BK-000012 - Servicios legales por hora\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000662-BK-000012\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"48\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000662-BK-000012\",\"processing\":false,\"secondaryExternalCode\":\"702\",\"secondary_external_code\":\"702\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-09 10:27:14\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"671\",\"name\":\"BRINKS CORPORACION\",\"primary_external_code\":\"662\",\"company\":{\"id\":\"3\",\"name\":\"BKP\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-03 00:00:00\",\"confidential\":false,\"created_at\":\"2019-07-25 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000814-SR-000132 - Representacion Legal (FM)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000814-SR-000132\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"359\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000814-SR-000132\",\"processing\":false,\"secondaryExternalCode\":\"1518\",\"secondary_external_code\":\"1518\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 15:43:34\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"825\",\"name\":\"Farmex S.R.L.\",\"primary_external_code\":\"814\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-03 00:00:00\",\"confidential\":false,\"created_at\":\"2019-07-25 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000814-SR-000133 - Domicilio Legal (FM)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000814-SR-000133\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"360\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000814-SR-000133\",\"processing\":false,\"secondaryExternalCode\":\"1519\",\"secondary_external_code\":\"1519\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 15:06:58\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"825\",\"name\":\"Farmex S.R.L.\",\"primary_external_code\":\"814\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-03 00:00:00\",\"confidential\":false,\"created_at\":\"2023-05-30 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000814-SR-000643 - Outsourcing contable\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000814-SR-000643\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"362\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000814-SR-000643\",\"processing\":false,\"secondaryExternalCode\":\"4160\",\"secondary_external_code\":\"4160\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 15:27:49\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"cdelgado@emba.com\",\"enabled\":true,\"fullName\":\"Cristhian Delgado Ramirez\",\"id\":13,\"locale\":\"es\",\"shortName\":\"cdelgado\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"cdelgado@emba.com\"},\"customer\":{\"id\":\"825\",\"name\":\"Farmex S.R.L.\",\"primary_external_code\":\"814\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"24\",\"externalCode\":\"AR05\",\"name\":\"Outsourcing\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2021-03-26 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000782-SR-000342 - Servicio Legal Mensual Sociedad Accidental (FM)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000782-SR-000342\",\"finishedDate\":null,\"fixRateValue\":3800,\"fix_rate_value\":3800,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"498\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000782-SR-000342\",\"processing\":false,\"secondaryExternalCode\":\"2578\",\"secondary_external_code\":\"2578\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:25:59\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"amorenog@emba.com\",\"enabled\":true,\"fullName\":\"Andres Moreno Gutierrez\",\"id\":5,\"locale\":\"es\",\"shortName\":\"amoreno\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"amorenog@emba.com\"},\"customer\":{\"id\":\"826\",\"name\":\"SACYR\",\"primary_external_code\":\"782\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-07-19 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000666 - Actualizaci\\u00f3n corporativa 2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000666\",\"finishedDate\":null,\"fixRateValue\":1500,\"fix_rate_value\":1500,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"856\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000666\",\"processing\":false,\"secondaryExternalCode\":\"4221\",\"secondary_external_code\":\"4221\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2023-07-26 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-000676 - C\\u00c9DULA DE EXTRANJERO - DIEGO ALEJANDRO SANDOVAL RIVERA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-000676\",\"finishedDate\":null,\"fixRateValue\":273.13,\"fix_rate_value\":273.13,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"857\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1901.71 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-000676\",\"processing\":false,\"secondaryExternalCode\":\"4236\",\"secondary_external_code\":\"4236\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 15:41:07\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2023-04-17 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000569-SR-000616 - DD, an\\u00e1lisis estructura legal y constituci\\u00f3n NEWCO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000569-SR-000616\",\"finishedDate\":null,\"fixRateValue\":3900,\"fix_rate_value\":3900,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"858\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Propuesta enviada v\\u00eda correo el 13\\/4\\/2023 y aceptada el mismo d\\u00eda por el cliente. \\nLos honorarios deben ser facturados y cancelados a la conclusi\\u00f3n del servicio y constituci\\u00f3n de la NEWCO (emisi\\u00f3n de\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000569-SR-000616\",\"processing\":false,\"secondaryExternalCode\":\"4055\",\"secondary_external_code\":\"4055\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 15:43:48\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"paramayo@emba.com\",\"enabled\":true,\"fullName\":\"Paul Aramayo Salinas\",\"id\":9,\"locale\":\"es\",\"shortName\":\"paramayo\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"paramayo@emba.com\"},\"customer\":{\"id\":\"619\",\"name\":\"VICENTE SCAVONE \\u0026 CIA S.A.E. SUCURSAL BOLIVIA\",\"primary_external_code\":\"569\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-11-22 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000569-SR-000775 - Servicios de outsourcing contable, tributario, laboral y tesorer\\u00eda.\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000569-SR-000775\",\"finishedDate\":null,\"fixRateValue\":2997,\"fix_rate_value\":2997,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"865\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Honorario variable en base al vol\\u00famen de operaciones.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000569-SR-000775\",\"processing\":false,\"secondaryExternalCode\":\"4610\",\"secondary_external_code\":\"4610\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 14:17:18\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"cdelgado@emba.com\",\"enabled\":true,\"fullName\":\"Cristhian Delgado Ramirez\",\"id\":13,\"locale\":\"es\",\"shortName\":\"cdelgado\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"cdelgado@emba.com\"},\"customer\":{\"id\":\"619\",\"name\":\"VICENTE SCAVONE \\u0026 CIA S.A.E. SUCURSAL BOLIVIA\",\"primary_external_code\":\"569\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"24\",\"externalCode\":\"AR05\",\"name\":\"Outsourcing\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2019-09-27 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000519-SR-000193 - PROCESO LABORAL NICOLAS CHINO ct. VILTE Y FLORES\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000519-SR-000193\",\"finishedDate\":null,\"fixRateValue\":718.39,\"fix_rate_value\":718.39,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"866\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000519-SR-000193\",\"processing\":false,\"secondaryExternalCode\":\"1695\",\"secondary_external_code\":\"1695\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 15:52:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"nezegarra@emba.com\",\"enabled\":true,\"fullName\":\"Natalio Eduardo Zegarra Ribera\",\"id\":15,\"locale\":\"es\",\"shortName\":\"nzegarra\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"nezegarra@emba.com\"},\"customer\":{\"id\":\"621\",\"name\":\"VILTE \\u0026 FLORES ICC SRL\",\"primary_external_code\":\"519\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"17\",\"externalCode\":\"AR08\",\"name\":\"Der. Laboral y Seg. Soc.\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2022-08-23 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000519-SR-000522 - JUAN JOSE BALBOA ct. VILTE Y FLORES - DEMANDA LABORAL\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000519-SR-000522\",\"finishedDate\":null,\"fixRateValue\":718.39,\"fix_rate_value\":718.39,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"867\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"EL CLIENTE PAGAR\\u00c1 INICIALMENTE Bs. 5000 y posteriormente Bs. 2000 a la conclusi\\u00f3n del periodo probatorio en primera instancia.\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000519-SR-000522\",\"processing\":false,\"secondaryExternalCode\":\"3550\",\"secondary_external_code\":\"3550\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 15:47:03\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"nezegarra@emba.com\",\"enabled\":true,\"fullName\":\"Natalio Eduardo Zegarra Ribera\",\"id\":15,\"locale\":\"es\",\"shortName\":\"nzegarra\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"nezegarra@emba.com\"},\"customer\":{\"id\":\"621\",\"name\":\"VILTE \\u0026 FLORES ICC SRL\",\"primary_external_code\":\"519\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"17\",\"externalCode\":\"AR08\",\"name\":\"Der. Laboral y Seg. Soc.\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2022-09-21 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000519-SR-000530 - PROCESO COACTIVO SOCIAL - CAJA PETROLERA DE SALUD ct. VILTE BELLIDO INGENIEROS\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000519-SR-000530\",\"finishedDate\":null,\"fixRateValue\":718.39,\"fix_rate_value\":718.39,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"868\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE ESTE PROCESO Y DE OTROS SE PAGARAN CONFORME IGUALA PROFESIONAL\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000519-SR-000530\",\"processing\":false,\"secondaryExternalCode\":\"3590\",\"secondary_external_code\":\"3590\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 15:52:17\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"nezegarra@emba.com\",\"enabled\":true,\"fullName\":\"Natalio Eduardo Zegarra Ribera\",\"id\":15,\"locale\":\"es\",\"shortName\":\"nzegarra\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"nezegarra@emba.com\"},\"customer\":{\"id\":\"621\",\"name\":\"VILTE \\u0026 FLORES ICC SRL\",\"primary_external_code\":\"519\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"17\",\"externalCode\":\"AR08\",\"name\":\"Der. Laboral y Seg. Soc.\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2022-09-21 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000519-SR-000531 - PROCESO EJECUTIVO SOCIAL PROVIVIENDA ct. VILTE BELLIDO INGENIEROS - JUZGADO 9 TRABAJO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000519-SR-000531\",\"finishedDate\":null,\"fixRateValue\":718.39,\"fix_rate_value\":718.39,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"869\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"los honorarios se pagaran conforme iguala profesional\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000519-SR-000531\",\"processing\":false,\"secondaryExternalCode\":\"3591\",\"secondary_external_code\":\"3591\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 15:52:02\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"nezegarra@emba.com\",\"enabled\":true,\"fullName\":\"Natalio Eduardo Zegarra Ribera\",\"id\":15,\"locale\":\"es\",\"shortName\":\"nzegarra\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"nezegarra@emba.com\"},\"customer\":{\"id\":\"621\",\"name\":\"VILTE \\u0026 FLORES ICC SRL\",\"primary_external_code\":\"519\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"17\",\"externalCode\":\"AR08\",\"name\":\"Der. Laboral y Seg. Soc.\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2022-10-13 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000519-SR-000544 - PROCESO LABORAL - ANGEL JAVIER COTAJA Y OTROS ct. VILTE Y FLORES INGENIEROS\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000519-SR-000544\",\"finishedDate\":null,\"fixRateValue\":718.39,\"fix_rate_value\":718.39,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"870\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Los honorarios corresponden al 10% (Bs. Bs.63.282,73) del monto demandado que asciende a Bs. Bs.632.827,32. Sin embargo el Dr. Rene Claure establecer\\u00e1 la forma de pago.\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000519-SR-000544\",\"processing\":false,\"secondaryExternalCode\":\"3645\",\"secondary_external_code\":\"3645\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 15:51:46\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"nezegarra@emba.com\",\"enabled\":true,\"fullName\":\"Natalio Eduardo Zegarra Ribera\",\"id\":15,\"locale\":\"es\",\"shortName\":\"nzegarra\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"nezegarra@emba.com\"},\"customer\":{\"id\":\"621\",\"name\":\"VILTE \\u0026 FLORES ICC SRL\",\"primary_external_code\":\"519\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"17\",\"externalCode\":\"AR08\",\"name\":\"Der. Laboral y Seg. Soc.\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2022-10-15 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000519-SR-000546 - PROCESO COACTIVO SOCIAL - AFP PREVISI\\u00d3N ct. VILTE Y FLORES\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000519-SR-000546\",\"finishedDate\":null,\"fixRateValue\":718.39,\"fix_rate_value\":718.39,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"871\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"EL HONORARIO CORRESPONDE AL 10% DEL MONTO DEMANDADO (Bs. 91.789,95). El Dr. Claure se encuentra analizando los aspectos de la iguala profesional.\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000519-SR-000546\",\"processing\":false,\"secondaryExternalCode\":\"3648\",\"secondary_external_code\":\"3648\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 15:50:32\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"nezegarra@emba.com\",\"enabled\":true,\"fullName\":\"Natalio Eduardo Zegarra Ribera\",\"id\":15,\"locale\":\"es\",\"shortName\":\"nzegarra\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"nezegarra@emba.com\"},\"customer\":{\"id\":\"621\",\"name\":\"VILTE \\u0026 FLORES ICC SRL\",\"primary_external_code\":\"519\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"17\",\"externalCode\":\"AR08\",\"name\":\"Der. Laboral y Seg. Soc.\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2022-10-25 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000519-SR-000549 - PROVIVIENDA ct. VILTE Y FLORES - EJECUTIVO SOCIAL\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000519-SR-000549\",\"finishedDate\":null,\"fixRateValue\":718.39,\"fix_rate_value\":718.39,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"872\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"los honorarios se establecen mediante igual conjuntamente con otros procesos judiciales y ser\\u00e1n pagados de forma mensual.\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000519-SR-000549\",\"processing\":false,\"secondaryExternalCode\":\"3658\",\"secondary_external_code\":\"3658\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 15:50:19\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"nezegarra@emba.com\",\"enabled\":true,\"fullName\":\"Natalio Eduardo Zegarra Ribera\",\"id\":15,\"locale\":\"es\",\"shortName\":\"nzegarra\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"nezegarra@emba.com\"},\"customer\":{\"id\":\"621\",\"name\":\"VILTE \\u0026 FLORES ICC SRL\",\"primary_external_code\":\"519\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"17\",\"externalCode\":\"AR08\",\"name\":\"Der. Laboral y Seg. Soc.\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2022-10-25 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000519-SR-000550 - AFP PREVISI\\u00d3N ct. LUIS VILTE BELLIDO - EMPRESA UNIPERSONAL - COACTIVO SOCIAL\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000519-SR-000550\",\"finishedDate\":null,\"fixRateValue\":718.39,\"fix_rate_value\":718.39,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"873\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"los honorarios se pagan segun igual profesional conjuntamente con la tramitaci\\u00f3n de otros procesos judiciales.\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000519-SR-000550\",\"processing\":false,\"secondaryExternalCode\":\"3659\",\"secondary_external_code\":\"3659\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 15:50:05\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"nezegarra@emba.com\",\"enabled\":true,\"fullName\":\"Natalio Eduardo Zegarra Ribera\",\"id\":15,\"locale\":\"es\",\"shortName\":\"nzegarra\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"nezegarra@emba.com\"},\"customer\":{\"id\":\"621\",\"name\":\"VILTE \\u0026 FLORES ICC SRL\",\"primary_external_code\":\"519\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"17\",\"externalCode\":\"AR08\",\"name\":\"Der. Laboral y Seg. Soc.\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2022-11-15 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000519-SR-000556 - AFP FUTURO DE BOLIVIA ct. LUIS VILTE BELLIDO - COACTIVO SOCIAL\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000519-SR-000556\",\"finishedDate\":null,\"fixRateValue\":718.39,\"fix_rate_value\":718.39,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"874\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS SE PAGA MENSUAMENTE.\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000519-SR-000556\",\"processing\":false,\"secondaryExternalCode\":\"3712\",\"secondary_external_code\":\"3712\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 15:49:49\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"nezegarra@emba.com\",\"enabled\":true,\"fullName\":\"Natalio Eduardo Zegarra Ribera\",\"id\":15,\"locale\":\"es\",\"shortName\":\"nzegarra\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"nezegarra@emba.com\"},\"customer\":{\"id\":\"621\",\"name\":\"VILTE \\u0026 FLORES ICC SRL\",\"primary_external_code\":\"519\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"17\",\"externalCode\":\"AR08\",\"name\":\"Der. Laboral y Seg. Soc.\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2022-11-22 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000519-SR-000557 - SEGUNDO PROCESO - CAJA PETROLERA DE SALUD ct. VILTE BELLIDO INGENIEROS\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000519-SR-000557\",\"finishedDate\":null,\"fixRateValue\":718.39,\"fix_rate_value\":718.39,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"875\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"el cliente paga un honorario mensual a ser determinado en la iguala profesional\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000519-SR-000557\",\"processing\":false,\"secondaryExternalCode\":\"3724\",\"secondary_external_code\":\"3724\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 15:49:38\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"nezegarra@emba.com\",\"enabled\":true,\"fullName\":\"Natalio Eduardo Zegarra Ribera\",\"id\":15,\"locale\":\"es\",\"shortName\":\"nzegarra\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"nezegarra@emba.com\"},\"customer\":{\"id\":\"621\",\"name\":\"VILTE \\u0026 FLORES ICC SRL\",\"primary_external_code\":\"519\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"17\",\"externalCode\":\"AR08\",\"name\":\"Der. Laboral y Seg. Soc.\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2022-11-22 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000519-SR-000558 - PROCESO COACTIVO SOCIAL - CAJA PETROLERA DE SALUD ct. MEAN MACHINE - ANDRES FLORES\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000519-SR-000558\",\"finishedDate\":null,\"fixRateValue\":718.39,\"fix_rate_value\":718.39,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"876\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"el cliente paga un honorario mensual a ser determinado en la iguala profesional\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000519-SR-000558\",\"processing\":false,\"secondaryExternalCode\":\"3725\",\"secondary_external_code\":\"3725\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 15:49:25\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"nezegarra@emba.com\",\"enabled\":true,\"fullName\":\"Natalio Eduardo Zegarra Ribera\",\"id\":15,\"locale\":\"es\",\"shortName\":\"nzegarra\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"nezegarra@emba.com\"},\"customer\":{\"id\":\"621\",\"name\":\"VILTE \\u0026 FLORES ICC SRL\",\"primary_external_code\":\"519\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"17\",\"externalCode\":\"AR08\",\"name\":\"Der. Laboral y Seg. Soc.\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2023-10-18 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000519-SR-000743 - PROCESO COACTIVO SOCIAL - GESTORA PUBLICA ct. VILTE Y FLORES\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000519-SR-000743\",\"finishedDate\":null,\"fixRateValue\":718.39,\"fix_rate_value\":718.39,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"877\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000519-SR-000743\",\"processing\":false,\"secondaryExternalCode\":\"4524\",\"secondary_external_code\":\"4524\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 15:49:09\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"nezegarra@emba.com\",\"enabled\":true,\"fullName\":\"Natalio Eduardo Zegarra Ribera\",\"id\":15,\"locale\":\"es\",\"shortName\":\"nzegarra\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"nezegarra@emba.com\"},\"customer\":{\"id\":\"621\",\"name\":\"VILTE \\u0026 FLORES ICC SRL\",\"primary_external_code\":\"519\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"17\",\"externalCode\":\"AR08\",\"name\":\"Der. Laboral y Seg. Soc.\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2023-11-16 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000519-SR-000763 - PROCESO LABORAL BERNARDINO SUCASAYA ct. VILTE Y FLORES ICC SRL\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000519-SR-000763\",\"finishedDate\":null,\"fixRateValue\":718.39,\"fix_rate_value\":718.39,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"878\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"La propuesta sobre pago de honorarios continua siendo analizada por EMBA\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000519-SR-000763\",\"processing\":false,\"secondaryExternalCode\":\"4595\",\"secondary_external_code\":\"4595\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 15:48:49\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"nezegarra@emba.com\",\"enabled\":true,\"fullName\":\"Natalio Eduardo Zegarra Ribera\",\"id\":15,\"locale\":\"es\",\"shortName\":\"nzegarra\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"nezegarra@emba.com\"},\"customer\":{\"id\":\"621\",\"name\":\"VILTE \\u0026 FLORES ICC SRL\",\"primary_external_code\":\"519\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"17\",\"externalCode\":\"AR08\",\"name\":\"Der. Laboral y Seg. Soc.\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-06-05 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000548-SR-000649 - Regularizaci\\u00f3n Titanium y 515 Creative\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000548-SR-000649\",\"finishedDate\":null,\"fixRateValue\":2500,\"fix_rate_value\":2500,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"879\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Propuesta aceptada por el cliente v\\u00eda correo electr\\u00f3nico. Se debe proceder con la facturaci\\u00f3n del 50% inicial dada la confirmaci\\u00f3n del servicio. El restante 50% se notificar\\u00e1 para su facturaci\\u00f3n a la\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000548-SR-000649\",\"processing\":false,\"secondaryExternalCode\":\"4171\",\"secondary_external_code\":\"4171\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"iayala@emba.com\",\"enabled\":true,\"fullName\":\"Ines Ayala\",\"id\":19,\"locale\":\"es\",\"shortName\":\"iayala\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"iayala@emba.com\"},\"customer\":{\"id\":\"623\",\"name\":\"Vivian Aguirre\",\"primary_external_code\":\"548\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-11-22 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000617-SR-000776 - Outsourcing contable, tributario, laboral y de tesorer\\u00eda.\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000617-SR-000776\",\"finishedDate\":null,\"fixRateValue\":1695,\"fix_rate_value\":1695,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"882\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"El honorario es variable en base al vol\\u00famen de transacciones y se debe incluir un pago al inicio takeover por USD 1003\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000617-SR-000776\",\"processing\":false,\"secondaryExternalCode\":\"4611\",\"secondary_external_code\":\"4611\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 15:44:36\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"cdelgado@emba.com\",\"enabled\":true,\"fullName\":\"Cristhian Delgado Ramirez\",\"id\":13,\"locale\":\"es\",\"shortName\":\"cdelgado\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"cdelgado@emba.com\"},\"customer\":{\"id\":\"631\",\"name\":\"WESTLAND CONSTRUCTION BOLIVIA S.R.L.\",\"primary_external_code\":\"617\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"24\",\"externalCode\":\"AR05\",\"name\":\"Outsourcing\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2023-02-01 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000544-SR-000577 - Servicios de Outsourcing contable, tributario, laboral.\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000544-SR-000577\",\"finishedDate\":null,\"fixRateValue\":2075,\"fix_rate_value\":2075,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"884\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Los honorarios son variables en funci\\u00f3n al volumen de operaciones.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000544-SR-000577\",\"processing\":false,\"secondaryExternalCode\":\"3825\",\"secondary_external_code\":\"3825\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 15:46:14\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"cdelgado@emba.com\",\"enabled\":true,\"fullName\":\"Cristhian Delgado Ramirez\",\"id\":13,\"locale\":\"es\",\"shortName\":\"cdelgado\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"cdelgado@emba.com\"},\"customer\":{\"id\":\"638\",\"name\":\"YANGO DELIVERY BOLIVIA S.R.L.\",\"primary_external_code\":\"544\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"24\",\"externalCode\":\"AR05\",\"name\":\"Outsourcing\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-09-04 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000846-BK-000332 - Acciones Extrajudiciales de Cobro - Papel Principal S.A.\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000846-BK-000332\",\"finishedDate\":null,\"fixRateValue\":1200,\"fix_rate_value\":1200,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1040\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000846-BK-000332\",\"processing\":false,\"secondaryExternalCode\":\"200068\",\"secondary_external_code\":\"200068\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"atejerina@emba.com\",\"enabled\":true,\"fullName\":\"Andre Luis Tejerina Queiroz\",\"id\":25,\"locale\":\"es\",\"shortName\":\"atejerin\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"atejerina@emba.com\"},\"customer\":{\"id\":\"663\",\"name\":\"Bad Debt Management\",\"primary_external_code\":\"846\",\"company\":{\"id\":\"3\",\"name\":\"BKP\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-07-26 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000782-SR-001078 - Cesion VSM - AAC\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000782-SR-001078\",\"finishedDate\":null,\"fixRateValue\":8000,\"fix_rate_value\":8000,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1217\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000782-SR-001078\",\"processing\":false,\"secondaryExternalCode\":\"200059\",\"secondary_external_code\":\"200059\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 14:24:24\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"flanda@emba.com\",\"enabled\":true,\"fullName\":\"Carlos Fernando Landa Alejandro\",\"id\":18,\"locale\":\"es\",\"shortName\":\"flanda\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"flanda@emba.com\"},\"customer\":{\"id\":\"826\",\"name\":\"SACYR\",\"primary_external_code\":\"782\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"9\",\"externalCode\":\"AR20\",\"name\":\"Contrataci\\u00f3n P\\u00fablica\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-07-26 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000782-SR-001079 - Transferencia total de cuotas VSMBO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000782-SR-001079\",\"finishedDate\":null,\"fixRateValue\":1500,\"fix_rate_value\":1500,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1218\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000782-SR-001079\",\"processing\":false,\"secondaryExternalCode\":\"200060\",\"secondary_external_code\":\"200060\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"flanda@emba.com\",\"enabled\":true,\"fullName\":\"Carlos Fernando Landa Alejandro\",\"id\":18,\"locale\":\"es\",\"shortName\":\"flanda\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"flanda@emba.com\"},\"customer\":{\"id\":\"826\",\"name\":\"SACYR\",\"primary_external_code\":\"782\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"6\",\"externalCode\":\"AR17\",\"name\":\"Der.Comercial \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-09-14 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000782-SR-001080 - Cambio de denominaci\\u00f3n\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000782-SR-001080\",\"finishedDate\":null,\"fixRateValue\":1000,\"fix_rate_value\":1000,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1219\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000782-SR-001080\",\"processing\":false,\"secondaryExternalCode\":\"200070\",\"secondary_external_code\":\"200070\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"flanda@emba.com\",\"enabled\":true,\"fullName\":\"Carlos Fernando Landa Alejandro\",\"id\":18,\"locale\":\"es\",\"shortName\":\"flanda\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"flanda@emba.com\"},\"customer\":{\"id\":\"826\",\"name\":\"SACYR\",\"primary_external_code\":\"782\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"6\",\"externalCode\":\"AR17\",\"name\":\"Der.Comercial \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2019-08-20 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000820-BK-000345 - Amparo Constitucional Costa Beber\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000820-BK-000345\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1250\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Coordinar facturaci\\u00f3n con Dr. AMG\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000820-BK-000345\",\"processing\":false,\"secondaryExternalCode\":\"1582\",\"secondary_external_code\":\"1582\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-10-03 21:48:04\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"amorenog@emba.com\",\"enabled\":true,\"fullName\":\"Andres Moreno Gutierrez\",\"id\":5,\"locale\":\"es\",\"shortName\":\"amoreno\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"amorenog@emba.com\"},\"customer\":{\"id\":\"660\",\"name\":\"Archer Daniels Midland Company\",\"primary_external_code\":\"820\",\"company\":{\"id\":\"3\",\"name\":\"BKP\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2019-09-12 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000519-SR-000798 - PROCESO LABORAL - MARTIN ERAZO ct. VILTE Y FLORES\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000519-SR-000798\",\"finishedDate\":null,\"fixRateValue\":718.39,\"fix_rate_value\":718.39,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1344\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"El pago de honorarios ha sido establecido de la siguiente manera 40% con la respuesta a la demanda, 30% con el ofrecimiento de prueba y 30% a la conclusi\\u00f3n del periodo probatorio.\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000519-SR-000798\",\"processing\":false,\"secondaryExternalCode\":\"1663\",\"secondary_external_code\":\"1663\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 15:48:31\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"nezegarra@emba.com\",\"enabled\":true,\"fullName\":\"Natalio Eduardo Zegarra Ribera\",\"id\":15,\"locale\":\"es\",\"shortName\":\"nzegarra\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"nezegarra@emba.com\"},\"customer\":{\"id\":\"621\",\"name\":\"VILTE \\u0026 FLORES ICC SRL\",\"primary_external_code\":\"519\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"17\",\"externalCode\":\"AR08\",\"name\":\"Der. Laboral y Seg. Soc.\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2021-11-11 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000915-SR-000899 - Presentaci\\u00f3n de descargos ante C.N.S. para Baja Definitiva\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000915-SR-000899\",\"finishedDate\":null,\"fixRateValue\":1000,\"fix_rate_value\":1000,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1397\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"se recibir\\u00e1 el pago anticipadamente, porque enviar\\u00e1n una s\\u00f3la transferencia que incluir\\u00e1 el pago para los aportes de la Caja Nacional\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000915-SR-000899\",\"processing\":false,\"secondaryExternalCode\":\"3008\",\"secondary_external_code\":\"3008\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"cdelgado@emba.com\",\"enabled\":true,\"fullName\":\"Cristhian Delgado Ramirez\",\"id\":13,\"locale\":\"es\",\"shortName\":\"cdelgado\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"cdelgado@emba.com\"},\"customer\":{\"id\":\"820\",\"name\":\"AGROINDUSTRIAS BUNGE BOLIVIA S.A.\",\"primary_external_code\":\"915\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"24\",\"externalCode\":\"AR05\",\"name\":\"Outsourcing\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-12-21 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000917-SR-000918 - Honorarios por Servicios Legales.\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000917-SR-000918\",\"finishedDate\":null,\"fixRateValue\":3262.5,\"fix_rate_value\":3262.5,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1411\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":50,\"notes\":\"facturar lo siguiente: (i) Primera Fase: facturar el 50%, es decir USD 1500, (ii) Segunda Fase: facturar el 50% es decir, USD 2,250. Todo va en la misma factura, en total son USD 3,750.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000917-SR-000918\",\"processing\":false,\"secondaryExternalCode\":\"4677\",\"secondary_external_code\":\"4677\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"amorenog@emba.com\",\"enabled\":true,\"fullName\":\"Andres Moreno Gutierrez\",\"id\":5,\"locale\":\"es\",\"shortName\":\"amoreno\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"amorenog@emba.com\"},\"customer\":{\"id\":\"822\",\"name\":\"EDUCTRADE S.A. - SUCURSAL BOLIVIA\",\"primary_external_code\":\"917\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"2\",\"externalCode\":\"AR04\",\"name\":\"Arbitraje\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-06-21 00:00:00\",\"confidential\":false,\"created_at\":\"2020-02-01 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000918-SR-000921 - Outsourcing Declaracion Impositiva (FM)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000918-SR-000921\",\"finishedDate\":null,\"fixRateValue\":500,\"fix_rate_value\":500,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1414\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000918-SR-000921\",\"processing\":false,\"secondaryExternalCode\":\"\",\"secondary_external_code\":\"\",\"status\":1,\"statusMarking\":\"approved\",\"updated_at\":\"2024-06-22 03:40:19\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"cdelgado@emba.com\",\"enabled\":true,\"fullName\":\"Cristhian Delgado Ramirez\",\"id\":13,\"locale\":\"es\",\"shortName\":\"cdelgado\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"cdelgado@emba.com\"},\"customer\":{\"id\":\"823\",\"name\":\"AON CONSULTING SRL\",\"primary_external_code\":\"918\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"24\",\"externalCode\":\"AR05\",\"name\":\"Outsourcing\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-01-23 00:00:00\",\"confidential\":false,\"created_at\":\"2024-01-23 15:58:06\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000782-SR-000980 - Proceso Civil Har Hormigones\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000782-SR-000980\",\"finishedDate\":null,\"fixRateValue\":10000,\"fix_rate_value\":10000,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1503\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":50,\"notes\":\"Asunto pertenece a MB SRL\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000782-SR-000980\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"flanda@emba.com\",\"enabled\":true,\"fullName\":\"Carlos Fernando Landa Alejandro\",\"id\":18,\"locale\":\"es\",\"shortName\":\"flanda\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"flanda@emba.com\"},\"customer\":{\"id\":\"826\",\"name\":\"SACYR\",\"primary_external_code\":\"782\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-01-29 00:00:00\",\"confidential\":false,\"created_at\":\"2024-01-29 13:42:59\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000519-SR-000988 - Servicios legales mensuales (FM)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000519-SR-000988\",\"finishedDate\":null,\"fixRateValue\":718.39,\"fix_rate_value\":718.39,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1512\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000519-SR-000988\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 15:46:29\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"nezegarra@emba.com\",\"enabled\":true,\"fullName\":\"Natalio Eduardo Zegarra Ribera\",\"id\":15,\"locale\":\"es\",\"shortName\":\"nzegarra\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"nezegarra@emba.com\"},\"customer\":{\"id\":\"621\",\"name\":\"VILTE \\u0026 FLORES ICC SRL\",\"primary_external_code\":\"519\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"17\",\"externalCode\":\"AR08\",\"name\":\"Der. Laboral y Seg. Soc.\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2024-01-30 20:33:01\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000926-SR-000991 - Operaci\\u00f3n de Software Banco Fie\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000926-SR-000991\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2286\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000926-SR-000991\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"tmercado@emba.com\",\"enabled\":true,\"fullName\":\"Teddy Alberto Mercado Carrion\",\"id\":12,\"locale\":\"es\",\"shortName\":\"tmercado\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"tmercado@emba.com\"},\"customer\":{\"id\":\"828\",\"name\":\"JARDECOM S.A.\",\"primary_external_code\":\"926\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"6\",\"externalCode\":\"AR17\",\"name\":\"Der.Comercial \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":\"\",\"caseNumber\":null,\"closed_date\":\"2024-02-01 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-01 21:56:54\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000782-SR-001002 - Asesoramiento Laguna Colorada 2022 - 2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000782-SR-001002\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2302\",\"internal_code\":\"\",\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000782-SR-001002\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"flanda@emba.com\",\"enabled\":true,\"fullName\":\"Carlos Fernando Landa Alejandro\",\"id\":18,\"locale\":\"es\",\"shortName\":\"flanda\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"flanda@emba.com\"},\"customer\":{\"id\":\"826\",\"name\":\"SACYR\",\"primary_external_code\":\"782\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-03 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-01 22:13:57\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000782-SR-001003 - Asesoramiento renuncia mandatos - representaci\\u00f3n\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000782-SR-001003\",\"finishedDate\":null,\"fixRateValue\":3045,\"fix_rate_value\":3045,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2303\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000782-SR-001003\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 13:47:49\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"826\",\"name\":\"SACYR\",\"primary_external_code\":\"782\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"17\",\"externalCode\":\"AR08\",\"name\":\"Der. Laboral y Seg. Soc.\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-01 22:27:13\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000130-SR-001004 - VISA DE OBJETO DETERMINADO 30 D\\u00cdAS AEROPUERTO - RONALD JORDAN OLIVARES BARRAZA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000130-SR-001004\",\"finishedDate\":null,\"fixRateValue\":287.1,\"fix_rate_value\":287.1,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2304\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000130-SR-001004\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 16:32:54\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"618\",\"name\":\"VESTAS MEDITERRANEAN A\\/S SUCURSAL BOLIVIA\",\"primary_external_code\":\"130\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-05 19:02:25\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000929-SR-001010 - Constituci\\u00f3n Entidad Sin Fines de Lucro Nacional\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000929-SR-001010\",\"finishedDate\":null,\"fixRateValue\":1044,\"fix_rate_value\":1044,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2313\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000929-SR-001010\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 16:35:35\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"831\",\"name\":\"Asociaci\\u00f3n de L\\u00edderes Haggai Bolivia\",\"primary_external_code\":\"929\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-05 19:04:46\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000928-SR-001011 - Constituci\\u00f3n de Sociedad An\\u00f3nima\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000928-SR-001011\",\"finishedDate\":null,\"fixRateValue\":3000,\"fix_rate_value\":3000,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2314\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000928-SR-001011\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 16:36:26\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"830\",\"name\":\"BBA BARZALLO ABOGADOS\",\"primary_external_code\":\"928\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-16 19:20:54\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000933-SR-001018 - Procesos Contenciosos contra EMAVRA y Alcald\\u00eda de Cochabamba\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000933-SR-001018\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2330\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000933-SR-001018\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 16:18:55\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"836\",\"name\":\"SIERRA TRADING COMPANY S.R.L.\",\"primary_external_code\":\"933\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-16 20:19:11\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000934-SR-001019 - Informe Legal sobre regulaci\\u00f3n aplicable a Programas de Fidelizaci\\u00f3n\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000934-SR-001019\",\"finishedDate\":null,\"fixRateValue\":900,\"fix_rate_value\":900,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2331\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000934-SR-001019\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 21:11:16\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"837\",\"name\":\"Servicio de Intermediaci\\u00f3n Comercial Loyalty Club S.R.L.\",\"primary_external_code\":\"934\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"11\",\"externalCode\":\"AR21\",\"name\":\"Der. Administrativo\\n\"}},{\"apply_procedures\":null,\"billable\":1,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-19 23:19:53\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000935-SR-001023 - Conversatorios\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000935-SR-001023\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2340\",\"internal_code\":null,\"isBillable\":false,\"limitAlert\":null,\"notes\":\"PRO BONO\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000935-SR-001023\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 16:40:35\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"wrojo@emba.com\",\"enabled\":true,\"fullName\":\"Wilfredo Rojo\",\"id\":22,\"locale\":\"es\",\"shortName\":\"wrojo\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"wrojo@emba.com\"},\"customer\":{\"id\":\"838\",\"name\":\"La Asociaci\\u00f3n de Productores de Oleaginosas y Trigo- ANAPO\",\"primary_external_code\":\"935\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-20 19:02:55\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000936-SR-001025 - Asesor\\u00eda General por horas\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000936-SR-001025\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2343\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"150 $us x hora\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000936-SR-001025\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"839\",\"name\":\"Cl\\u00ednica Angel Foianini S.R.L\",\"primary_external_code\":\"936\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-20 22:04:55\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000569-SR-001029 - Acta para regularizaci\\u00f3n de situaci\\u00f3n patrimonial\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000569-SR-001029\",\"finishedDate\":null,\"fixRateValue\":3480,\"fix_rate_value\":3480,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2350\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"100 % al final\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000569-SR-001029\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"619\",\"name\":\"VICENTE SCAVONE \\u0026 CIA S.A.E. SUCURSAL BOLIVIA\",\"primary_external_code\":\"569\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-21 20:41:12\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000940-SR-001038 - Inscripci\\u00f3n corredor de reaseguro extranjero 2024\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000940-SR-001038\",\"finishedDate\":null,\"fixRateValue\":4000,\"fix_rate_value\":4000,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2351\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"100% al final\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000940-SR-001038\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"843\",\"name\":\"Ardonagh Specialty\",\"primary_external_code\":\"940\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"29\",\"externalCode\":\"AR32\",\"name\":\"Seguros y Reaseguros\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-23 19:45:22\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000941-SR-001058 - Consultas Laborales\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000941-SR-001058\",\"finishedDate\":null,\"fixRateValue\":220,\"fix_rate_value\":220,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2385\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Facturar 100% al Final del servicio\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000941-SR-001058\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 20:17:15\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"atejerina@emba.com\",\"enabled\":true,\"fullName\":\"Andre Luis Tejerina Queiroz\",\"id\":25,\"locale\":\"es\",\"shortName\":\"atejerin\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"atejerina@emba.com\"},\"customer\":{\"id\":\"844\",\"name\":\"COSAPI S.A. - SUCURSAL BOLIVIA\",\"primary_external_code\":\"941\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"17\",\"externalCode\":\"AR08\",\"name\":\"Der. Laboral y Seg. Soc.\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-28 21:46:42\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000546-SR-001081 - Arbitraje Zurich Insurance Company Ltd v. Estado Plurinacional de Bolivia\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000546-SR-001081\",\"finishedDate\":null,\"fixRateValue\":103686.21,\"fix_rate_value\":103686.21,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2548\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000546-SR-001081\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 21:58:58\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"amorenog@emba.com\",\"enabled\":true,\"fullName\":\"Andres Moreno Gutierrez\",\"id\":5,\"locale\":\"es\",\"shortName\":\"amoreno\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"amorenog@emba.com\"},\"customer\":{\"id\":\"645\",\"name\":\"Zurich Insurance Company Ltd\",\"primary_external_code\":\"546\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"2\",\"externalCode\":\"AR04\",\"name\":\"Arbitraje\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-29 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-29 21:19:22\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000949-SR-001085 - SERVICIO PRO BONO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000949-SR-001085\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2562\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000949-SR-001085\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"847\",\"name\":\"RENACER BOLIVIA\",\"primary_external_code\":\"949\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-07-23 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-29 21:25:58\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000950-SR-001086 - SERVICIO PRO BONO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000950-SR-001086\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2563\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000950-SR-001086\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-07-23 19:20:04\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"wrojo@emba.com\",\"enabled\":true,\"fullName\":\"Wilfredo Rojo\",\"id\":22,\"locale\":\"es\",\"shortName\":\"wrojo\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"wrojo@emba.com\"},\"customer\":{\"id\":\"848\",\"name\":\"AB CREA BOLIVIA\",\"primary_external_code\":\"950\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-05 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-05 18:23:55\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000617-SR-001108 - Representacion legal\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000617-SR-001108\",\"finishedDate\":null,\"fixRateValue\":800,\"fix_rate_value\":800,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2642\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000617-SR-001108\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:25:59\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"tmercado@emba.com\",\"enabled\":true,\"fullName\":\"Teddy Alberto Mercado Carrion\",\"id\":12,\"locale\":\"es\",\"shortName\":\"tmercado\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"tmercado@emba.com\"},\"customer\":{\"id\":\"631\",\"name\":\"WESTLAND CONSTRUCTION BOLIVIA S.R.L.\",\"primary_external_code\":\"617\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"30\",\"externalCode\":\"AR33\",\"name\":\"Servicios Legales Mensuales\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-06 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-06 15:02:52\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000953-SR-001109 - SERVICIO PRO BONO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000953-SR-001109\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2643\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000953-SR-001109\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 10:02:53\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"851\",\"name\":\"Orquesta Filarm\\u00f3nica de Santa Cruz de la Sierra\",\"primary_external_code\":\"953\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-07 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-07 22:43:23\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000954-SR-001110 - Elaboraci\\u00f3n de carta notariada Jair Jorge Mezzomo\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000954-SR-001110\",\"finishedDate\":null,\"fixRateValue\":650,\"fix_rate_value\":650,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2644\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"El cliente es parte del grupo Brasil Agro \\/ 100% al final\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000954-SR-001110\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-07 16:43:23\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"852\",\"name\":\"Yuchan Agropecuaria S.A.\",\"primary_external_code\":\"954\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-11 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-11 18:25:53\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000632-BK-000349 - Adenda Sartawi IFD (Fusi\\u00f3n Idepro IFD) \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000632-BK-000349\",\"finishedDate\":null,\"fixRateValue\":1500,\"fix_rate_value\":1500,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2656\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":100,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000632-BK-000349\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-11 12:25:54\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"tmercado@emba.com\",\"enabled\":true,\"fullName\":\"Teddy Alberto Mercado Carrion\",\"id\":12,\"locale\":\"es\",\"shortName\":\"tmercado\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"tmercado@emba.com\"},\"customer\":{\"id\":\"290\",\"name\":\"GLOBAL PARTNERSHIPS\",\"primary_external_code\":\"632\",\"company\":{\"id\":\"3\",\"name\":\"BKP\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-22 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-11 22:51:15\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000952-SR-001116 - Tr\\u00e1mites sucesorios\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000952-SR-001116\",\"finishedDate\":null,\"fixRateValue\":2500,\"fix_rate_value\":2500,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2659\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":50,\"notes\":\"Acordamos que puede pagar en D\\u00f3lares o en Bolivianos al tipo de cambio oficial a la fecha de pago \\/ 50% Inicio\\/50% Final\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000952-SR-001116\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-22 17:52:02\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"850\",\"name\":\"Mar\\u00eda Inmaculada Pintos V\\u00e1zquez Figueroa\",\"primary_external_code\":\"952\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"5\",\"externalCode\":\"AR02\",\"name\":\"Der.Civil \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-12 19:50:39\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000934-SR-001119 - Elaboraci\\u00f3n y revisi\\u00f3n de Documentos Programa Permanente Itacamba\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000934-SR-001119\",\"finishedDate\":null,\"fixRateValue\":1431,\"fix_rate_value\":1431,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2692\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"100% al final\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000934-SR-001119\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 14:50:40\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"837\",\"name\":\"Servicio de Intermediaci\\u00f3n Comercial Loyalty Club S.R.L.\",\"primary_external_code\":\"934\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"11\",\"externalCode\":\"AR21\",\"name\":\"Der. Administrativo\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-15 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-15 18:43:09\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000956-SR-001133 - B\\u00fasqueda corporativa\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000956-SR-001133\",\"finishedDate\":null,\"fixRateValue\":600,\"fix_rate_value\":600,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2709\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"El honorario incluye impuestos y gastos, por lo que los gastos que ser\\u00e1n de aprox. Bs. 200.- no deber\\u00e1n cobrarse al cliente.100% Final\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000956-SR-001133\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-26 18:27:40\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"854\",\"name\":\"OLC Ingenieros EIRL\",\"primary_external_code\":\"956\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-15 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-15 18:54:50\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000957-SR-001134 - Revisi\\u00f3n de Contrato de Arrendamiento\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000957-SR-001134\",\"finishedDate\":null,\"fixRateValue\":600,\"fix_rate_value\":600,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2710\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"100% Final\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000957-SR-001134\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-15 12:54:51\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"855\",\"name\":\"Industrias Alimenticias Colombina de Bolivia S.A.\",\"primary_external_code\":\"957\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"5\",\"externalCode\":\"AR02\",\"name\":\"Der.Civil \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-20 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-19 19:08:29\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000958-SR-001136 - Informe Legal Corporativo y Tributario\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000958-SR-001136\",\"finishedDate\":null,\"fixRateValue\":4500,\"fix_rate_value\":4500,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2731\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":50,\"notes\":\"50% Inicio\\/50% Final\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000958-SR-001136\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-20 16:09:51\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"856\",\"name\":\"CERVECER\\u00cdA BOLIVIANA NACIONAL S.A.\",\"primary_external_code\":\"958\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-11 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-25 16:46:49\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000959-SR-001140 - Servicios legales mensuales (FM)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000959-SR-001140\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2742\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"USD. 1000 es de: Socio 180, Asociado Senior 140 y Asociado 100. Horas extras a los USD. 1000 que debe autorizar el cliente: 150 Socio, USD. 120 Asociado Senior y USD. 90 Asociado\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000959-SR-001140\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-21 14:09:21\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"tmercado@emba.com\",\"enabled\":true,\"fullName\":\"Teddy Alberto Mercado Carrion\",\"id\":12,\"locale\":\"es\",\"shortName\":\"tmercado\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"tmercado@emba.com\"},\"customer\":{\"id\":\"857\",\"name\":\"TECNOLOGIA EN PREFABRICADOS PARA LA CONSTRUCCION TECNOPRECO S.R.L\",\"primary_external_code\":\"959\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"6\",\"externalCode\":\"AR17\",\"name\":\"Der.Comercial \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-25 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-25 22:35:58\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000963-SR-001143 - FINANCIAMIENTO YPFB\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000963-SR-001143\",\"finishedDate\":null,\"fixRateValue\":3500,\"fix_rate_value\":3500,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2748\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"100% Final\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000963-SR-001143\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-25 16:35:58\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"amorenog@emba.com\",\"enabled\":true,\"fullName\":\"Andres Moreno Gutierrez\",\"id\":5,\"locale\":\"es\",\"shortName\":\"amoreno\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"amorenog@emba.com\"},\"customer\":{\"id\":\"861\",\"name\":\"RPC PAR\",\"primary_external_code\":\"963\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"4\",\"externalCode\":\"AR16\",\"name\":\"Der.Mercantil-Banca\\u0026Finanzas\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-26 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-26 19:59:47\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000964-SR-001144 - La Francesa - Venta de Activos\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000964-SR-001144\",\"finishedDate\":null,\"fixRateValue\":5000,\"fix_rate_value\":5000,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2758\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"100% Final - El honorario est\\u00e1 sujeto a ajustes.\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000964-SR-001144\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-26 19:59:47\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"nicoln042001@gmail.com\",\"enabled\":true,\"fullName\":\"Daniel Marcelo Arredondo Zelada\",\"id\":6,\"locale\":\"es\",\"shortName\":\"darredon\",\"superAdmin\":false,\"updated_at\":\"2024-09-03 11:43:07\",\"userType\":1,\"username\":\"darredondo@emba.com.bo\"},\"customer\":{\"id\":\"862\",\"name\":\"Alejandro Yaffar\",\"primary_external_code\":\"964\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"23\",\"externalCode\":\"AR28\",\"name\":\"M\\u0026A\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-27 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-27 13:27:28\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000966-SR-001145 - Revisi\\u00f3n Contrato de Distribuci\\u00f3n\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000966-SR-001145\",\"finishedDate\":null,\"fixRateValue\":420,\"fix_rate_value\":420,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2760\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000966-SR-001145\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-27 13:30:47\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"atejerina@emba.com\",\"enabled\":true,\"fullName\":\"Andre Luis Tejerina Queiroz\",\"id\":25,\"locale\":\"es\",\"shortName\":\"atejerin\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"atejerina@emba.com\"},\"customer\":{\"id\":\"864\",\"name\":\"EXPOCEAVET S.R.L.\",\"primary_external_code\":\"966\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"6\",\"externalCode\":\"AR17\",\"name\":\"Der.Comercial \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-27 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-27 16:42:01\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000617-SR-001146 - Adaptaci\\u00f3n de Contrato de Obra\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000617-SR-001146\",\"finishedDate\":null,\"fixRateValue\":2500,\"fix_rate_value\":2500,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2762\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"100% Final\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000617-SR-001146\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-27 11:42:01\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"tmercado@emba.com\",\"enabled\":true,\"fullName\":\"Teddy Alberto Mercado Carrion\",\"id\":12,\"locale\":\"es\",\"shortName\":\"tmercado\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"tmercado@emba.com\"},\"customer\":{\"id\":\"631\",\"name\":\"WESTLAND CONSTRUCTION BOLIVIA S.R.L.\",\"primary_external_code\":\"617\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"6\",\"externalCode\":\"AR17\",\"name\":\"Der.Comercial \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-01 00:00:00\",\"confidential\":false,\"created_at\":\"2024-04-01 15:21:48\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000828-BK-000357 - CONSTITUCION SOCIEDAD REGULADA FINANCIERA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000828-BK-000357\",\"finishedDate\":null,\"fixRateValue\":3000,\"fix_rate_value\":3000,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2768\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"3000 USD Y GASTOS REEMBOLSABLES 700 USD\\/100% Final\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000828-BK-000357\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-01 10:21:49\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"amorenog@emba.com\",\"enabled\":true,\"fullName\":\"Andres Moreno Gutierrez\",\"id\":5,\"locale\":\"es\",\"shortName\":\"amoreno\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"amorenog@emba.com\"},\"customer\":{\"id\":\"654\",\"name\":\"Allende \\u0026 Brea\",\"primary_external_code\":\"828\",\"company\":{\"id\":\"3\",\"name\":\"BKP\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-01 00:00:00\",\"confidential\":false,\"created_at\":\"2024-04-01 15:59:14\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000813-BK-000358 - INFORME LEGAL : NDA Y PROTOCOLO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000813-BK-000358\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2769\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000813-BK-000358\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-01 10:59:14\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"amorenog@emba.com\",\"enabled\":true,\"fullName\":\"Andres Moreno Gutierrez\",\"id\":5,\"locale\":\"es\",\"shortName\":\"amoreno\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"amorenog@emba.com\"},\"customer\":{\"id\":\"626\",\"name\":\"Votorantin Cimentos\",\"primary_external_code\":\"813\",\"company\":{\"id\":\"3\",\"name\":\"BKP\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-01 00:00:00\",\"confidential\":false,\"created_at\":\"2024-04-01 18:13:59\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000814-SR-001149 - CIERRE CORPORATIVO ANUAL GESTI\\u00d3N 2023\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000814-SR-001149\",\"finishedDate\":null,\"fixRateValue\":680,\"fix_rate_value\":680,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2772\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000814-SR-001149\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-01 22:00:16\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"fsanchez@emba.com\",\"enabled\":true,\"fullName\":\"Fernando Jose Sanchez Pe\\u00f1a Von Nagy\",\"id\":23,\"locale\":\"es\",\"shortName\":\"fsanchez\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"fsanchez@emba.com\"},\"customer\":{\"id\":\"825\",\"name\":\"Farmex S.R.L.\",\"primary_external_code\":\"814\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"28\",\"externalCode\":\"AR31\",\"name\":\"Registros Sanitarios-Regul.\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-01 00:00:00\",\"confidential\":false,\"created_at\":\"2024-04-01 21:16:20\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000968-SR-001156 - Ampliaci\\u00f3n de Objeto Social\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000968-SR-001156\",\"finishedDate\":null,\"fixRateValue\":500,\"fix_rate_value\":500,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2779\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":50,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000968-SR-001156\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-01 16:16:20\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"cmerino@emba.com\",\"enabled\":true,\"fullName\":\"Carlos Merino Troche\",\"id\":14,\"locale\":\"es\",\"shortName\":\"cmerino\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"cmerino@emba.com\"},\"customer\":{\"id\":\"866\",\"name\":\"RADIO FIDES TARIJA S.R.L.\",\"primary_external_code\":\"968\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"5\",\"externalCode\":\"AR02\",\"name\":\"Der.Civil \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-01 00:00:00\",\"confidential\":false,\"created_at\":\"2024-04-01 22:00:28\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000969-SR-001157 - Regularizaci\\u00f3n De Datos T\\u00e9cnicos Y Derecho Propietario De Un Departamento, Parqueo Y Baulera Edificio Ergueta\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000969-SR-001157\",\"finishedDate\":null,\"fixRateValue\":1005,\"fix_rate_value\":1005,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2785\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":50,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000969-SR-001157\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-01 17:03:19\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"cmerino@emba.com\",\"enabled\":true,\"fullName\":\"Carlos Merino Troche\",\"id\":14,\"locale\":\"es\",\"shortName\":\"cmerino\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"cmerino@emba.com\"},\"customer\":{\"id\":\"867\",\"name\":\"KARIN MARIA EUGENIA EULERT VON NAGY\",\"primary_external_code\":\"969\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"5\",\"externalCode\":\"AR02\",\"name\":\"Der.Civil \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-08 00:00:00\",\"confidential\":false,\"created_at\":\"2024-04-04 20:06:53\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000782-SR-001160 - Representacion legal\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000782-SR-001160\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2822\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"100% al final\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000782-SR-001160\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-08 13:51:41\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"flanda@emba.com\",\"enabled\":true,\"fullName\":\"Carlos Fernando Landa Alejandro\",\"id\":18,\"locale\":\"es\",\"shortName\":\"flanda\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"flanda@emba.com\"},\"customer\":{\"id\":\"826\",\"name\":\"SACYR\",\"primary_external_code\":\"782\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"9\",\"externalCode\":\"AR20\",\"name\":\"Contrataci\\u00f3n P\\u00fablica\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-05 00:00:00\",\"confidential\":false,\"created_at\":\"2024-04-05 14:55:24\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000958-SR-001161 - Informe Divisas\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000958-SR-001161\",\"finishedDate\":null,\"fixRateValue\":1800,\"fix_rate_value\":1800,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2824\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":0,\"notes\":\"50% Inicio\\/50% Final\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000958-SR-001161\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-05 09:55:25\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"lmorenog@emba.com\",\"enabled\":true,\"fullName\":\"Luis Moreno Gutierrez\",\"id\":8,\"locale\":\"es\",\"shortName\":\"lmoreno\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"lmorenog@emba.com\"},\"customer\":{\"id\":\"856\",\"name\":\"CERVECER\\u00cdA BOLIVIANA NACIONAL S.A.\",\"primary_external_code\":\"958\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-05 00:00:00\",\"confidential\":false,\"created_at\":\"2024-04-05 18:25:58\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000970-SR-001162 - Due Diligence Mini\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000970-SR-001162\",\"finishedDate\":null,\"fixRateValue\":100,\"fix_rate_value\":100,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2825\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"100% Final\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000970-SR-001162\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-05 13:25:59\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"lmorenog@emba.com\",\"enabled\":true,\"fullName\":\"Luis Moreno Gutierrez\",\"id\":8,\"locale\":\"es\",\"shortName\":\"lmoreno\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"lmorenog@emba.com\"},\"customer\":{\"id\":\"868\",\"name\":\"MARCELINO\",\"primary_external_code\":\"970\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-05 00:00:00\",\"confidential\":false,\"created_at\":\"2024-04-05 18:39:56\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000971-SR-001163 - PROCESO LABORAL MARCO ANTONIO HURTADO BAUER\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000971-SR-001163\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2826\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000971-SR-001163\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-05 13:39:56\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"paramayo@emba.com\",\"enabled\":true,\"fullName\":\"Paul Aramayo Salinas\",\"id\":9,\"locale\":\"es\",\"shortName\":\"paramayo\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"paramayo@emba.com\"},\"customer\":{\"id\":\"869\",\"name\":\"ROGHUR S.A.\",\"primary_external_code\":\"971\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"17\",\"externalCode\":\"AR08\",\"name\":\"Der. Laboral y Seg. Soc.\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-08 00:00:00\",\"confidential\":false,\"created_at\":\"2024-04-08 14:12:29\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000972-SR-001164 - Constituci\\u00f3n SRL\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000972-SR-001164\",\"finishedDate\":null,\"fixRateValue\":1800,\"fix_rate_value\":1800,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2827\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"50% Inicio\\/50% Final\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000972-SR-001164\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-08 17:51:13\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"870\",\"name\":\"GRAMAR S.A.\",\"primary_external_code\":\"972\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-08 00:00:00\",\"confidential\":false,\"created_at\":\"2024-04-08 21:55:03\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000973-SR-001168 - Proceso Judicial Tributario (Primera Instancia)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000973-SR-001168\",\"finishedDate\":null,\"fixRateValue\":800,\"fix_rate_value\":800,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2831\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"50% Inicio\\/50% Final\\/ facturar 50% ahora y 50% cuando se presente el recurso de primera instancia (Mois\\u00e9s confirmar).\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000973-SR-001168\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-08 21:55:40\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"tmercado@emba.com\",\"enabled\":true,\"fullName\":\"Teddy Alberto Mercado Carrion\",\"id\":12,\"locale\":\"es\",\"shortName\":\"tmercado\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"tmercado@emba.com\"},\"customer\":{\"id\":\"871\",\"name\":\"MISTURA S.R.L.\",\"primary_external_code\":\"973\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"19\",\"externalCode\":\"AR09\",\"name\":\"Der. Tributario\\u0026 Plan.Fiscal\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-05-20 00:00:00\",\"confidential\":false,\"created_at\":\"2024-05-20 21:53:40\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000987-RE-000688 - Ventas Nacionales\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000987-RE-000688\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2846\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":null,\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"pending_completion\",\"updated_at\":\"2024-05-20 21:53:40\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2024-03-19 13:50:44\",\"daysAllow\":302,\"email\":\"agomez@timemanagerweb.com\",\"enabled\":true,\"fullName\":\"Andrea Gomez\",\"id\":84,\"locale\":\"es\",\"shortName\":\"AG\",\"superAdmin\":false,\"updated_at\":\"2024-08-29 14:19:23\",\"userType\":4,\"username\":\"agomez@timemanagerweb.com\"},\"customer\":{\"id\":\"885\",\"name\":\"TOTTO COL\",\"primary_external_code\":\"987\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-05-22 00:00:00\",\"confidential\":false,\"created_at\":\"2024-05-22 20:16:47\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000989-SR-001173 - PERMANENCIA DE TRES A\\u00d1OS CON CONTRATO EXTRANJERO- STEFAN MICHAEL KOSEL\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000989-SR-001173\",\"finishedDate\":null,\"fixRateValue\":530,\"fix_rate_value\":530,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2848\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"AF\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":null,\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"pending_completion\",\"updated_at\":\"2024-05-22 20:16:47\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2012-05-08 14:49:53\",\"daysAllow\":302,\"email\":\"ihurtado@emba.com\",\"enabled\":true,\"fullName\":\"Ingrid Hurtado\",\"id\":1,\"locale\":\"es\",\"shortName\":\"ihurtado\",\"superAdmin\":true,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":0,\"username\":\"ihurtado@emba.com\"},\"customer\":{\"id\":\"887\",\"name\":\"PACE\\u00d1A\",\"primary_external_code\":\"989\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-07-05 00:00:00\",\"confidential\":false,\"created_at\":\"2024-07-05 15:54:56\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"001001-SR-001174 - Test Any prueba\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"001001-SR-001174\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2851\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":null,\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-07-05 15:57:03\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":27,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"899\",\"name\":\"Davivienda\",\"primary_external_code\":\"1001\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-07-26 00:00:00\",\"confidential\":false,\"created_at\":\"2024-07-26 21:28:38\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"001004-RE-000692 - prueba gravamenes\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"001004-RE-000692\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2854\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":null,\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-07-26 21:32:07\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2021-05-11 23:40:08\",\"daysAllow\":70,\"email\":\"nicoln042001@gmail.com\",\"enabled\":true,\"fullName\":\"Soporte QA timekeeper\",\"id\":87,\"locale\":\"es\",\"shortName\":\"QA\",\"superAdmin\":false,\"updated_at\":\"2025-04-07 12:03:19\",\"userType\":1,\"username\":\"nicoln042001@gmail.com\"},\"customer\":{\"id\":\"902\",\"name\":\"pruebas\",\"primary_external_code\":\"1004\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":null},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-08-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-08-12 13:10:38\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"001004-BK-000367 - redondeo horas\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"001004-BK-000367\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2855\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":null,\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-08-12 16:28:17\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2021-05-11 23:40:08\",\"daysAllow\":70,\"email\":\"nicoln042001@gmail.com\",\"enabled\":true,\"fullName\":\"Soporte QA timekeeper\",\"id\":87,\"locale\":\"es\",\"shortName\":\"QA\",\"superAdmin\":false,\"updated_at\":\"2025-04-07 12:03:19\",\"userType\":1,\"username\":\"nicoln042001@gmail.com\"},\"customer\":{\"id\":\"902\",\"name\":\"pruebas\",\"primary_external_code\":\"1004\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":null},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-08-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-08-12 16:37:01\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"001004-BK-000368 - redondeo monto fijo asunto\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"001004-BK-000368\",\"finishedDate\":null,\"fixRateValue\":100000,\"fix_rate_value\":100000,\"hourLimit\":10,\"hour_limit\":10,\"id\":\"2856\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":null,\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-08-12 16:37:09\",\"withIVA\":true,\"responsible\":null,\"customer\":{\"id\":\"902\",\"name\":\"pruebas\",\"primary_external_code\":\"1004\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-08-16 00:00:00\",\"confidential\":false,\"created_at\":\"2024-08-16 21:55:07\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"001001-RE-000696 - Pruebas Agosto\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"001001-RE-000696\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2865\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":null,\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-08-16 22:02:49\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2021-05-11 23:40:08\",\"daysAllow\":70,\"email\":\"nicoln042001@gmail.com\",\"enabled\":true,\"fullName\":\"Soporte QA timekeeper\",\"id\":87,\"locale\":\"es\",\"shortName\":\"QA\",\"superAdmin\":false,\"updated_at\":\"2025-04-07 12:03:19\",\"userType\":1,\"username\":\"nicoln042001@gmail.com\"},\"customer\":{\"id\":\"899\",\"name\":\"Davivienda\",\"primary_external_code\":\"1001\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-09-02 00:00:00\",\"confidential\":false,\"created_at\":\"2024-09-02 15:11:24\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"001005-RE-000699 - Capacitaciones internas o externas.\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"001005-RE-000699\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2875\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Notas\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":null,\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"pending_completion\",\"updated_at\":\"2024-09-02 15:11:24\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2021-05-11 23:40:08\",\"daysAllow\":302,\"email\":\"pcorredor26@gmail.com\",\"enabled\":true,\"fullName\":\"AMTM Pruebas\",\"id\":77,\"locale\":\"es\",\"shortName\":\"AM\",\"superAdmin\":true,\"updated_at\":\"2025-07-21 10:12:54\",\"userType\":1,\"username\":\"pcorredor26@gmail.com\"},\"customer\":{\"id\":\"903\",\"name\":\"PRUEBAS QA PAOLITA\",\"primary_external_code\":\"1005\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"2\",\"externalCode\":\"AR04\",\"name\":\"Arbitraje\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-09-10 00:00:00\",\"confidential\":false,\"created_at\":\"2024-09-03 11:46:54\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"001006-RE-000700 - PRUEBA DE RESPONSABLES\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"001006-RE-000700\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2876\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"prueba\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":null,\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-09-10 10:01:11\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"nicoln042001@gmail.com\",\"enabled\":true,\"fullName\":\"Daniel Marcelo Arredondo Zelada\",\"id\":6,\"locale\":\"es\",\"shortName\":\"darredon\",\"superAdmin\":false,\"updated_at\":\"2024-09-03 11:43:07\",\"userType\":1,\"username\":\"darredondo@emba.com.bo\"},\"customer\":{\"id\":\"904\",\"name\":\"PRUEBA DE RESPONSABLES\",\"primary_external_code\":\"1006\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-09-04 00:00:00\",\"confidential\":false,\"created_at\":\"2024-09-04 12:40:07\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"001019-RE-000701 - Consultas Legales por hora\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"001019-RE-000701\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2877\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":null,\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"pending_completion\",\"updated_at\":\"2024-09-04 21:47:13\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2021-05-11 23:40:08\",\"daysAllow\":302,\"email\":\"pcorredor26@gmail.com\",\"enabled\":true,\"fullName\":\"AMTM Pruebas\",\"id\":77,\"locale\":\"es\",\"shortName\":\"AM\",\"superAdmin\":true,\"updated_at\":\"2025-07-21 10:12:54\",\"userType\":1,\"username\":\"pcorredor26@gmail.com\"},\"customer\":{\"id\":\"917\",\"name\":\"LOLIS S.A\",\"primary_external_code\":\"1019\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-09-04 00:00:00\",\"confidential\":false,\"created_at\":\"2024-09-04 12:41:28\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"001019-RE-000702 - ASPECTOS GENERALES DEL SISTEMA DE SEGURIDAD SOCIAL EN BOLIVIA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"001019-RE-000702\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2878\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":null,\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"pending_completion\",\"updated_at\":\"2024-09-04 12:41:28\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2021-05-11 23:40:08\",\"daysAllow\":302,\"email\":\"pcorredor26@gmail.com\",\"enabled\":true,\"fullName\":\"AMTM Pruebas\",\"id\":77,\"locale\":\"es\",\"shortName\":\"AM\",\"superAdmin\":true,\"updated_at\":\"2025-07-21 10:12:54\",\"userType\":1,\"username\":\"pcorredor26@gmail.com\"},\"customer\":{\"id\":\"917\",\"name\":\"LOLIS S.A\",\"primary_external_code\":\"1019\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-09-04 00:00:00\",\"confidential\":false,\"created_at\":\"2024-09-04 12:51:42\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"001005-RE-000703 - Test Any prueba\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"001005-RE-000703\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2879\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":null,\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"pending_completion\",\"updated_at\":\"2024-09-04 12:51:42\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2021-05-11 23:40:08\",\"daysAllow\":302,\"email\":\"pcorredor26@gmail.com\",\"enabled\":true,\"fullName\":\"AMTM Pruebas\",\"id\":77,\"locale\":\"es\",\"shortName\":\"AM\",\"superAdmin\":true,\"updated_at\":\"2025-07-21 10:12:54\",\"userType\":1,\"username\":\"pcorredor26@gmail.com\"},\"customer\":{\"id\":\"903\",\"name\":\"PRUEBAS QA PAOLITA\",\"primary_external_code\":\"1005\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"2\",\"externalCode\":\"AR04\",\"name\":\"Arbitraje\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-09-10 00:00:00\",\"confidential\":false,\"created_at\":\"2024-09-10 10:28:04\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"001020-RE-000706 - Consultas Legales por hora\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"001020-RE-000706\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2884\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"pruebas\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"001020-RE-000706\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-09-10 15:33:24\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2021-05-11 23:40:08\",\"daysAllow\":302,\"email\":\"pcorredor26@gmail.com\",\"enabled\":true,\"fullName\":\"AMTM Pruebas\",\"id\":77,\"locale\":\"es\",\"shortName\":\"AM\",\"superAdmin\":true,\"updated_at\":\"2025-07-21 10:12:54\",\"userType\":1,\"username\":\"pcorredor26@gmail.com\"},\"customer\":{\"id\":\"918\",\"name\":\"ESIKA\",\"primary_external_code\":\"1020\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-09-10 00:00:00\",\"confidential\":false,\"created_at\":\"2024-09-10 11:24:04\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"001021-RE-000707 - Servicios legales por hora\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"001021-RE-000707\",\"finishedDate\":null,\"fixRateValue\":5000,\"fix_rate_value\":5000,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2885\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":0,\"notes\":\"Notas\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":null,\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"pending_completion\",\"updated_at\":\"2024-09-10 11:24:04\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2021-05-11 23:40:08\",\"daysAllow\":302,\"email\":\"pcorredor26@gmail.com\",\"enabled\":true,\"fullName\":\"AMTM Pruebas\",\"id\":77,\"locale\":\"es\",\"shortName\":\"AM\",\"superAdmin\":true,\"updated_at\":\"2025-07-21 10:12:54\",\"userType\":1,\"username\":\"pcorredor26@gmail.com\"},\"customer\":{\"id\":\"919\",\"name\":\"LENOVO\",\"primary_external_code\":\"1021\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"2\",\"externalCode\":\"AR04\",\"name\":\"Arbitraje\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2025-03-13 00:00:00\",\"confidential\":false,\"created_at\":\"2025-03-13 15:11:37\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"001029 - Asesor\\u00eda legal por horas\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"001029\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2944\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":null,\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2025-03-13 15:11:37\",\"withIVA\":true,\"responsible\":null,\"customer\":{\"id\":\"927\",\"name\":\"MARCELO DAVILA\",\"primary_external_code\":\"1029\",\"company\":{\"id\":\"2\",\"name\":\"MORENO BALDIVIESO SRL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}}]}}}\n","time":"2025-07-30T10:51:07-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: POST https://apinewtm.com/graphql/\nHeaders: map[Accept:[application/json] Authorization:[Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJpYXQiOjE3NTM4ODY1MjIsImV4cCI6MTc1Mzk2NjUyMiwiaWQiOjEwNSwidXNlcm5hbWUiOiJpbnRlZ3JhY2lvbmVzQGVtYmEuYm8iLCJhcGlrZXkiOiI5Yzg0ZjYzZTRlMzk2ZGZmOWU5ZjU3NDI5OGRmZWUzOSIsImFwaWtleUNyZWF0ZWRBdCI6eyJkYXRlIjoiMjAyNS0wNy0xNyAxMDo0MToyNS4wMDAwMDAiLCJ0aW1lem9uZV90eXBlIjozLCJ0aW1lem9uZSI6IkFtZXJpY2EvQm9nb3RhIn0sImZ1bGxOYW1lIjoiSW50ZWdyYWNpw7NuIEVNQkEiLCJlbWFpbCI6ImludGVncmFjaW9uZXNAZW1iYS5ibyIsImxvY2FsZSI6ImVzIiwiZGF5c0FsbG93ZWQiOjMwLCJpc0Nvb3JkaW5hdG9yIjpmYWxzZSwidHlwZVRhc2tWaWV3IjoibGlzdHMiLCJkYXlzYWxsb3ciOjMwLCJyb2xlcyI6e30sInNob3J0X25hbWUiOiJJTi5FTUJBIiwicGVybWlzc2lvbnMiOlsic3luY19leHRlcm5hbF9idXNpbmVzcyIsInN5bmNfZXh0ZXJuYWxfY3VzdG9tZXIiLCJzeW5jX2V4dGVybmFsX21pbGVzdG9uZSIsImFic2VuY2VfYXBwcm92ZSIsImFic2VuY2VfY3JlYXRlX2FsbCIsImFic2VuY2VfY3JlYXRlX293biIsImFic2VuY2VfbWVudSIsImFjY291bnRpbmdfYnVzaW5lc3NfbGlzdCIsImFjY291bnRpbmdfY3VzdG9tZXJfbGlzdCIsImJpbGxpbmdfcGVyaW9kX2RlbGV0ZV9hbGwiLCJiaWxsaW5nX3BlcmlvZF9lZGl0X2FsbCIsImJpbGxpbmdfcGVyaW9kX2xpc3QiLCJiaWxsaW5nX3BlcmlvZF9yZWFjdGl2YXRlIiwiYm9hcmRfcmF0ZV91c2VyX2NyZWF0ZSIsImJvYXJkX3JhdGVfdXNlcl9lZGl0IiwiYnVzaW5lc3NfY3JlYXRlIiwiYnVzaW5lc3NfZGVzY3JpcHRpb25fc2F2ZSIsImJ1c2luZXNzX2VkaXQiLCJidXNpbmVzc19saXN0X2FsbCIsImJ1c2luZXNzX21lbnUiLCJidXNpbmVzc19yZXNwb25zaWJsZV9saXN0X2FsbCIsImJ1c2luZXNzX3NlZV9iaWxsaW5nX2luZm8iLCJidXNpbmVzc2VzX2FsbG93ZWRfdXNlcl9jcmVhdGUiLCJidXNpbmVzc2VzX2FsbG93ZWRfdXNlcl9kZWxldGUiLCJjb21wYW55X2Rpc2FibGUiLCJjb21wYW55X2VkaXQiLCJjb21wYW55X2xpc3QiLCJjb25jZXB0X2NyZWF0ZSIsImNvbmNlcHRfZWRpdCIsImNvbmNlcHRfbWVudSIsImNvbnRhY3RfY3JlYXRlIiwiY29udGFjdF9jcmVhdGVfZmFzdCIsImNvbnRhY3RfZWRpdCIsImNvbnRhY3RfbGlzdCIsImNvbnRhY3RfbWVudSIsImN1c3RvbWVyX2NyZWF0ZSIsImN1c3RvbWVyX2NyZWF0ZV9mYXN0IiwiY3VzdG9tZXJfZWRpdCIsImN1c3RvbWVyX2xpc3QiLCJjdXN0b21lcl9saXN0X2FsbCIsImN1c3RvbWVyX21lbnUiLCJleHBlbnNlX2NyZWF0ZV9hbGwiLCJleHBlbnNlX2RlbGV0ZV9hbGwiLCJleHBlbnNlX2R1cGxpY2F0ZSIsImV4cGVuc2VfZWRpdF9hbGwiLCJleHBlbnNlX2xpc3RfYWxsIiwiZXhwZW5zZV9tZW51IiwiZXhwZW5zZV9yZWplY3RfYWxsIiwiZmFiX3Nob3ciLCJmaWxlX21lbnUiLCJnZW9yZWZlcmVuY2VfY3JlYXRlIiwiZ2VvcmVmZXJlbmNlX2VkaXQiLCJnZW9yZWZlcmVuY2VfbWVudSIsImdvX3RvX2xlZ2FjeSIsImluZGljYXRvcnNfbWVudSIsImludm9pY2VfY3JlYXRlIiwiaW52b2ljZV9kZXRhaWxfbGlzdF9hbGwiLCJpbnZvaWNlX2ZpeF90aW1lc19jdXN0b21fdmFsdWUiLCJpbnZvaWNlX2xpc3RfYWxsIiwiaW52b2ljZWFkdmFuY2VfY3JlYXRlIiwiaW52b2ljZWFkdmFuY2VfbGlzdCIsImludm9pY2VhZHZhbmNlX3VwZGF0ZSIsImxvZ19saXN0X2FsbCIsImxvZ19saXN0X293biIsIm1pbGVzdG9uZV9jcmVhdGUiLCJtaWxlc3RvbmVfZGVsZXRlIiwibWlsZXN0b25lX2VkaXQiLCJtb250aGx5X2ZpeF9yYXRlX2dyb3VwX2NyZWF0ZSIsIm1vbnRobHlfZml4X3JhdGVfZ3JvdXBfZWRpdCIsIm1vbnRobHlfdXNlcl9jb3N0X2NyZWF0ZSIsIm1vbnRobHlfdXNlcl9jb3N0X2VkaXQiLCJwYXltZW50X2NyZWF0ZSIsInBheW1lbnRfZGVsZXRlIiwicGF5bWVudF9lZGl0IiwicGF5bWVudF9tZW51IiwicHJvY2VkdXJlX21lbnUiLCJwcm9jZWR1cmVfcmF0ZV9jcmVhdGUiLCJwcm9jZWR1cmVfcmF0ZV9kZXRhaWxfY3JlYXRlIiwicHJvY2VkdXJlX3JhdGVfZGV0YWlsX2VkaXQiLCJwcm9jZWR1cmVfcmF0ZV9kZXRhaWxfbGlzdCIsInByb2NlZHVyZV9yYXRlX2VkaXQiLCJwcm9jZWR1cmVfcmF0ZV9saXN0IiwicHJvY2VkdXJlX3JhdGVfbWVudSIsInByb2NlZHVyZV90cmFuc2FjdGlvbl9saXN0IiwicHJvamVjdF9hcmNoaXZlX2Nhc2NhZGVfYWxsIiwicHJvamVjdF9kZWxldGVfY2FzY2FkZV9hbGwiLCJwcm9qZWN0X3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInJhdGVfYnVzaW5lc3NfY2F0ZWdvcnlfY3JlYXRlIiwicmF0ZV9idXNpbmVzc19jYXRlZ29yeV9lZGl0IiwicmF0ZV9idXNpbmVzc191c2VyX2NyZWF0ZSIsInJhdGVfYnVzaW5lc3NfdXNlcl9lZGl0IiwicmF0ZV9leGNoYW5nZV9jcmVhdGUiLCJyYXRlX2V4Y2hhbmdlX2VkaXQiLCJyYXRlX2V4Y2hhbmdlX2xpc3QiLCJyYXRlX3VzZXJfY3JlYXRlIiwicmF0ZV91c2VyX2VkaXQiLCJyb2xlX2NyZWF0ZSIsInJvbGVfZWRpdF9hbGwiLCJyb2xlX2xpc3RfYWxsIiwic2VjdGlvbl9hcmNoaXZlX2Nhc2NhZGVfYWxsIiwic2VjdGlvbl9kZWxldGVfY2FzY2FkZV9hbGwiLCJzZWN0aW9uX3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInNlZV9tZW51X3JhdGVfZXhjaGFuZ2UiLCJzZXJpZV9jcmVhdGUiLCJzZXJpZV9lZGl0Iiwic2VyaWVfbWVudSIsInNldHRpbmdzX3ZpZXciLCJzdXBwbGllcl9jcmVhdGUiLCJ0YXNrX2FkZF90aW1lX2FsbCIsInRhc2tfYWRkX3RpbWVfb3duIiwidGFza19hc3NpZ25lZF91c2VyX2VtYWlsIiwidGFza19jbG9zZWRfZW1haWwiLCJ0YXNrX2NyZWF0ZV9hbGwiLCJ0YXNrX2NyZWF0ZV9jb21tZW50X2VtYWlsIiwidGFza19jcmVhdGVfc2VsZiIsInRhc2tfY3JlYXRlX3RlYW0iLCJ0YXNrX2RlbGV0ZV9hbGwiLCJ0YXNrX2RlbGV0ZV9vd24iLCJ0YXNrX2RlbGV0ZV90ZWFtIiwidGFza19lZGl0X2FsbCIsInRhc2tfZWRpdF9kdWVfZGF0ZSIsInRhc2tfZWRpdF9vd24iLCJ0YXNrX2VkaXRfdGVhbSIsInRhc2tfbGlzdF9hbGwiLCJ0YXNrX2xpc3Rfb3duIiwidGFza19saXN0X3RlYW0iLCJ0YXNrX21hc3NpdmVpbXBvcnQiLCJ0YXNrX21lbnUiLCJ0YXNrX21pZ3JhdGlvbiIsInRhc2tfc2V0X2FkZGl0aW9uYWxfYXNzaWduZWVzIiwidGFza19zZXRfZHVlX2RhdGUiLCJ0YXNrX3NldF9lc3RpbWF0ZWRfdGltZSIsInRhc2tfc2V0X3ByaW9yaXR5IiwidGFza19zZXRfcHJvZ3Jlc3MiLCJ0YXhfZWRpdF9hbGwiLCJ0YXhfbGlzdF9hbGwiLCJ0ZWFtX2FyY2hpdmVfY2FzY2FkZV9hbGwiLCJ0ZWFtX2NyZWF0ZV9hbGwiLCJ0ZWFtX2RlbGV0ZV9hbGwiLCJ0ZWFtX2VkaXRfYWxsIiwidGVhbV9saXN0X2FsbCIsInRlYW1fbGlzdF9vd24iLCJ0ZWFtX3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInRpbWVfYWNjZXB0X2FsbCIsInRpbWVfYWNjZXB0X293biIsInRpbWVfYXBwcm92ZV9hbGwiLCJ0aW1lX2FwcHJvdmVfb3duIiwidGltZV9jcmVhdGVfYWxsIiwidGltZV9jcmVhdGVfb3duIiwidGltZV9kZWxldGVfYWxsIiwidGltZV9kZWxldGVfb3duIiwidGltZV9kZW55X2FsbCIsInRpbWVfZGVueV9vd24iLCJ0aW1lX2Rvd25sb2FkZmlsZV9hbGwiLCJ0aW1lX2Rvd25sb2FkZmlsZV9vd24iLCJ0aW1lX2VkaXRfYWxsIiwidGltZV9lZGl0X2Nsb3NlX3BlcmlvZF9hbGwiLCJ0aW1lX2VkaXRfY2xvc2VfcGVyaW9kX293biIsInRpbWVfZWRpdF9vd24iLCJ0aW1lX2xpc3RfYWxsIiwidGltZV9saXN0X293biIsInRpbWVfbWVudSIsInRpbWVfbWludXRlc196ZXJvIiwidGltZV9yZWplY3RfYWxsIiwidGltZV9yZXN0cmljdGVkX3BlcmlvZF9jcmVhdGUiLCJ0aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX2VkaXQiLCJ0aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX21lbnUiLCJ0aW1lX3NoYXJlX2FsbCIsInRpbWVfc2hhcmVfb3duIiwidGltZV9zaG93X2NhbGVuZGFyX3ZpZXciLCJ0aW1lX3VwbG9hZGZpbGVfYWxsIiwidGltZV91cGxvYWRmaWxlX293biIsInRyYW5zYWN0aW9uX2FkYXB0ZXJfbGlzdCIsInRyYW5zYWN0aW9uX2xpc3QiLCJ1c2VyX2Fic2VuY2VzX3Nob3ciLCJ1c2VyX2Nvc3RfY3JlYXRlIiwidXNlcl9jb3N0X2VkaXQiLCJ1c2VyX2Nvc3RfbGlzdCIsInVzZXJfY29zdF9tZW51IiwidXNlcl9jb3N0X3JhdGVfY3JlYXRlIiwidXNlcl9jb3N0X3JhdGVfZWRpdCIsInVzZXJfY29zdF9yYXRlX2xpc3QiLCJ1c2VyX2NyZWF0ZSIsInVzZXJfZGlzYWJsZSIsInVzZXJfZWRpdCIsInVzZXJfZWRpdF9kYXlzX2FsbG93X29ubHkiLCJ1c2VyX2dyb3VwX3JvbGVfY3JlYXRlX2FsbCIsInVzZXJfZ3JvdXBfcm9sZV9kZWxldGVfYWxsIiwidXNlcl9ncm91cF9yb2xlX2VkaXRfYWxsIiwidXNlcl9ncm91cF9yb2xlc19saXN0X2FsbCIsInVzZXJfbGlzdCIsInVzZXJfbGlzdF9hbGwiLCJ1c2VyX21hc3NfYWN0aXZhdGlvbiIsInVzZXJfcHJvZHVjdGl2aXR5X2NyZWF0ZSIsInVzZXJfcHJvZHVjdGl2aXR5X2Rpc2FibGUiLCJ1c2VyX3Byb2R1Y3Rpdml0eV9lZGl0IiwidXNlcl9wcm9kdWN0aXZpdHlfZW5hYmxlIiwidXNlcl9wcm9kdWN0aXZpdHlfbWVudSIsInVzZXJfdGltZV9yZXN0cmljdGVkX3BlcmlvZF9jcmVhdGUiLCJ1c2VyX3RpbWVfcmVzdHJpY3RlZF9wZXJpb2RfZGVsZXRlIiwidXNlcl90aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX2VkaXQiLCJ1c2VyZ3JvdXBfY3JlYXRlX2FsbCIsInVzZXJncm91cF9kZWxldGVfYWxsIiwidXNlcmdyb3VwX2VkaXRfYWxsIiwidXNlcmdyb3VwX2xpc3RfYWxsIiwidXNlcmdyb3VwX21lbnUiLCJ1c2Vyc191c2VyX2dyb3VwX2NyZWF0ZV9hbGwiLCJ1c2Vyc191c2VyX2dyb3VwX2RlbGV0ZV9hbGwiLCJ1c2Vyc191c2VyX2dyb3VwX2VkaXRfYWxsIiwidXNlcnNfdXNlcl9ncm91cHNfbGlzdF9hbGwiXSwiaG9tZXBhZ2UiOm51bGx9.kShN7NXGoaz1oFro-yYNyIpIEcnNpo1GiB8SFGKFUJtDQoqyp1I1w-CMA8Kta3vWXnUZwx-y2z1yVSJaMpZbqQgKFlakpcf6351bZSL8IAUPExSfLz0HYYCWFx-Usx94BBTqosKsRhnT8PkPN3dGxs8-XTIEDi9gN-Pk9OSHmM5mPkTsaaxTY40M-F7Y0Up2y6s_lwFaX13CmstiYZSXzyKL9SUBBx-E6-8qQAfuKPIoZ_50jSGPW98-IkAcWwqO6yGf-M07dSfFZ2vLfwc3ulHm2p8jVSmRxJ_O43BEWQD5cvqGbVIvSMXkS4y98DL4Vencjjg27iu3CUJsDNBBTg] Content-Type:[application/json] Origin:[https://azure-function.timemanagerweb.com] Tenant-Name:[pruebas-dos] User-Agent:[Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36]]\nBody: map[query:query ($limit: Int, $orderBy: String, $orderDesc: Boolean, $page: Int) { BusinessMeta(limit: $limit, orderBy: $orderBy, orderDesc: $orderDesc, page: $page) { meta { hasNextPage hasPreviousPage limit next page pages previous total } rows { apply_procedures billable business_customer_code caseNumber closed_date confidential created_at discountAmount discountPercent displayName enableBusinessAllowedUsers expedient finishedDate fixRateValue fix_rate_value hourLimit hour_limit id internal_code isBillable limitAlert notes partialCharges partial_charges primary_external_code processing secondaryExternalCode secondary_external_code status statusMarking updated_at withIVA responsible { created_at daysAllow email enabled fullName id locale shortName superAdmin updated_at userType username } customer { id name primary_external_code company { id name } } practiceArea { id externalCode name } } } } variables:map[limit:100 orderBy:orderBy orderDesc:true page:15]]\n","time":"2025-07-30T10:51:07-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: POST https://apinewtm.com/graphql/ | Status: 200 | Duration: 3.7922352s\nHeaders: map[Access-Control-Allow-Credentials:[true] Access-Control-Allow-Origin:[https://azure-function.timemanagerweb.com] Access-Control-Expose-Headers:[link, access-control-allow-credentials] Cache-Control:[no-cache, private] Content-Type:[application/json] Date:[Wed, 30 Jul 2025 14:51:10 GMT] Server:[] Vary:[Authorization]]\nBody: {\"errors\":[{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",16,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",16,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",16,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",16,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",16,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",16,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",16,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",16,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",16,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",16,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",16,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",32,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",32,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",32,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",32,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",32,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",32,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",32,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",32,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",32,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",32,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",32,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",33,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",33,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",33,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",33,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",33,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",33,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",33,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",33,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",33,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",33,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",33,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",34,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",34,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",34,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",34,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",34,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",34,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",34,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",34,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",34,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",34,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",34,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",35,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",35,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",35,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",35,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",35,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",35,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",35,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",35,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",35,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",35,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",35,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",38,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",38,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",38,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",38,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",38,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",38,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",38,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",38,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",38,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",38,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",38,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",39,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",39,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",39,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",39,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",39,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",39,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",39,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",39,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",39,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",39,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",39,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",50,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",50,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",50,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",50,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",50,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",50,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",50,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",50,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",50,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",50,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",50,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",51,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",51,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",51,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",51,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",51,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",51,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",51,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",51,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",51,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",51,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",51,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",52,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",52,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",52,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",52,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",52,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",52,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",52,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",52,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",52,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",52,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",52,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",53,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",53,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",53,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",53,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",53,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",53,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",53,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",53,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",53,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",53,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",53,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",54,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",54,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",54,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",54,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",54,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",54,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",54,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",54,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",54,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",54,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",54,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",55,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",55,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",55,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",55,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",55,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",55,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",55,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",55,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",55,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",55,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",55,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",57,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",57,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",57,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",57,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",57,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",57,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",57,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",57,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",57,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",57,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",57,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",58,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",58,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",58,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",58,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",58,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",58,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",58,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",58,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",58,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",58,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",58,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",59,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",59,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",59,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",59,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",59,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",59,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",59,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",59,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",59,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",59,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",59,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",60,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",60,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",60,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",60,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",60,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",60,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",60,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",60,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",60,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",60,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",60,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",61,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",61,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",61,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",61,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",61,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",61,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",61,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",61,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",61,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",61,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",61,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",62,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",62,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",62,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",62,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",62,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",62,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",62,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",62,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",62,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",62,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",62,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",63,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",63,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",63,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",63,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",63,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",63,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",63,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",63,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",63,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",63,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",63,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",64,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",64,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",64,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",64,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",64,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",64,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",64,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",64,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",64,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",64,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",64,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",65,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",65,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",65,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",65,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",65,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",65,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",65,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",65,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",65,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",65,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",65,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",66,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",66,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",66,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",66,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",66,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",66,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",66,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",66,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",66,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",66,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",66,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",67,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",67,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",67,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",67,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",67,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",67,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",67,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",67,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",67,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",67,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",67,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",72,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",72,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",72,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",72,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",72,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",72,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",72,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",72,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",72,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",72,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",72,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",73,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",73,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",73,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",73,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",73,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",73,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",73,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",73,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",73,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",73,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",73,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",74,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",74,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",74,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",74,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",74,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",74,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",74,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",74,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",74,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",74,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",74,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",75,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",75,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",75,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",75,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",75,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",75,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",75,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",75,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",75,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",75,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",75,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",76,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",76,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",76,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",76,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",76,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",76,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",76,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",76,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",76,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",76,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",76,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",77,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",77,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",77,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",77,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",77,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",77,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",77,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",77,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",77,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",77,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",77,\"responsible\",\"username\"]}],\"data\":{\"BusinessMeta\":{\"meta\":{\"hasNextPage\":true,\"hasPreviousPage\":true,\"limit\":100,\"next\":16,\"page\":15,\"pages\":16,\"previous\":14,\"total\":1573},\"rows\":[{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-06-12 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000756-BK-000325 - Review of Agreement with UMSS\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000756-BK-000325\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"49\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000756-BK-000325\",\"processing\":false,\"secondaryExternalCode\":\"200054\",\"secondary_external_code\":\"200054\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"674\",\"name\":\"Chapman University\",\"primary_external_code\":\"756\",\"company\":{\"id\":\"3\",\"name\":\"BKP\"}},\"practiceArea\":{\"id\":\"5\",\"externalCode\":\"AR02\",\"name\":\"Der.Civil \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-07-27 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000889-BK-000329 - LaMia (Stewarts claim): Aon \\/ Bolivian law Opinion [CMCK-UK.FID119255698]\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000889-BK-000329\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"50\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"(I) Partner Usd 300, (iI) Senior Associate: USD 250, (iii) Associate: USD 200.\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000889-BK-000329\",\"processing\":false,\"secondaryExternalCode\":\"200061\",\"secondary_external_code\":\"200061\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"amorenog@emba.com\",\"enabled\":true,\"fullName\":\"Andres Moreno Gutierrez\",\"id\":5,\"locale\":\"es\",\"shortName\":\"amoreno\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"amorenog@emba.com\"},\"customer\":{\"id\":\"678\",\"name\":\"CMS\",\"primary_external_code\":\"889\",\"company\":{\"id\":\"3\",\"name\":\"BKP\"}},\"practiceArea\":{\"id\":\"29\",\"externalCode\":\"AR32\",\"name\":\"Seguros y Reaseguros\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2019-06-28 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000765-BK-000203 - Asesor\\u00eda por horas - Caso Masivos\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000765-BK-000203\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"58\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"El honorario acordado es de USD 170 por hora. Esta opci\\u00f3n no figura en el tarifario\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000765-BK-000203\",\"processing\":false,\"secondaryExternalCode\":\"1457\",\"secondary_external_code\":\"1457\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"699\",\"name\":\"Empresas Carozzi S.A.\",\"primary_external_code\":\"765\",\"company\":{\"id\":\"3\",\"name\":\"BKP\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2018-12-17 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000796-BK-000176 - Asesor\\u00eda General por horas\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000796-BK-000176\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"69\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"VERIFICAR IMPORTE DE CATEGORIAS ANTES DE LIQUIDAR\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000796-BK-000176\",\"processing\":false,\"secondaryExternalCode\":\"979\",\"secondary_external_code\":\"979\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"713\",\"name\":\"GIESECKE \\u0026 DEVRIENT AMERICA INC\",\"primary_external_code\":\"796\",\"company\":{\"id\":\"3\",\"name\":\"BKP\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2018-10-31 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000701-BK-000059 - Servicios Legales Mensuales por hora (FM)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000701-BK-000059\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"70\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000701-BK-000059\",\"processing\":false,\"secondaryExternalCode\":\"759\",\"secondary_external_code\":\"759\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"amorenog@emba.com\",\"enabled\":true,\"fullName\":\"Andres Moreno Gutierrez\",\"id\":5,\"locale\":\"es\",\"shortName\":\"amoreno\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"amorenog@emba.com\"},\"customer\":{\"id\":\"718\",\"name\":\"GOOGLE\",\"primary_external_code\":\"701\",\"company\":{\"id\":\"3\",\"name\":\"BKP\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-06-30 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000885-BK-000326 - Servicios Legales por horas\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000885-BK-000326\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"76\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Confirmar tarifas por hora con Dr. AMG\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000885-BK-000326\",\"processing\":false,\"secondaryExternalCode\":\"200056\",\"secondary_external_code\":\"200056\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"731\",\"name\":\"Johnson \\u0026 Johnson MedTech Southern Cluster\",\"primary_external_code\":\"885\",\"company\":{\"id\":\"3\",\"name\":\"BKP\"}},\"practiceArea\":{\"id\":\"30\",\"externalCode\":\"AR33\",\"name\":\"Servicios Legales Mensuales\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-05-22 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000883-BK-000323 - Servicios Legales Tributarios y Regulatorios (Por Hora)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000883-BK-000323\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"87\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000883-BK-000323\",\"processing\":false,\"secondaryExternalCode\":\"200051\",\"secondary_external_code\":\"200051\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"tmercado@emba.com\",\"enabled\":true,\"fullName\":\"Teddy Alberto Mercado Carrion\",\"id\":12,\"locale\":\"es\",\"shortName\":\"tmercado\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"tmercado@emba.com\"},\"customer\":{\"id\":\"755\",\"name\":\"MLU AFRICA B.V.\",\"primary_external_code\":\"883\",\"company\":{\"id\":\"3\",\"name\":\"BKP\"}},\"practiceArea\":{\"id\":\"19\",\"externalCode\":\"AR09\",\"name\":\"Der. Tributario\\u0026 Plan.Fiscal\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-05-13 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000874-BK-000294 - YPFB Licitacion\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000874-BK-000294\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"112\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Favor confirmar tarifa con A. Moreno.\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000874-BK-000294\",\"processing\":false,\"secondaryExternalCode\":\"200011\",\"secondary_external_code\":\"200011\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"amorenog@emba.com\",\"enabled\":true,\"fullName\":\"Andres Moreno Gutierrez\",\"id\":5,\"locale\":\"es\",\"shortName\":\"amoreno\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"amorenog@emba.com\"},\"customer\":{\"id\":\"782\",\"name\":\"S\\u0026P Global Inc. (Platts)\",\"primary_external_code\":\"874\",\"company\":{\"id\":\"3\",\"name\":\"BKP\"}},\"practiceArea\":{\"id\":\"11\",\"externalCode\":\"AR21\",\"name\":\"Der. Administrativo\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-09-04 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000890-BK-000333 - Due Diligence + Estructuraci\\u00f3n de Negocio\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000890-BK-000333\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"113\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000890-BK-000333\",\"processing\":false,\"secondaryExternalCode\":\"200067\",\"secondary_external_code\":\"200067\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"nicoln042001@gmail.com\",\"enabled\":true,\"fullName\":\"Daniel Marcelo Arredondo Zelada\",\"id\":6,\"locale\":\"es\",\"shortName\":\"darredon\",\"superAdmin\":false,\"updated_at\":\"2024-09-03 11:43:07\",\"userType\":1,\"username\":\"darredondo@emba.com.bo\"},\"customer\":{\"id\":\"784\",\"name\":\"SAF Group\",\"primary_external_code\":\"890\",\"company\":{\"id\":\"3\",\"name\":\"BKP\"}},\"practiceArea\":{\"id\":\"20\",\"externalCode\":\"AR25\",\"name\":\"Energ\\u00eda y Recursos Naturales\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-08-05 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000877-BK-000310 - PTI\\/Scotia - Refinancing\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000877-BK-000310\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"120\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"i) Partner: USD 275 p\\/hour, (ii) Senior Associate: USD 200 p\\/hour,(iii) Associate: USD 150 p\\/hour.\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000877-BK-000310\",\"processing\":false,\"secondaryExternalCode\":\"200028\",\"secondary_external_code\":\"200028\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"tmercado@emba.com\",\"enabled\":true,\"fullName\":\"Teddy Alberto Mercado Carrion\",\"id\":12,\"locale\":\"es\",\"shortName\":\"tmercado\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"tmercado@emba.com\"},\"customer\":{\"id\":\"801\",\"name\":\"The Bank of Nova Scotia\",\"primary_external_code\":\"877\",\"company\":{\"id\":\"3\",\"name\":\"BKP\"}},\"practiceArea\":{\"id\":\"4\",\"externalCode\":\"AR16\",\"name\":\"Der.Mercantil-Banca\\u0026Finanzas\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2018-10-31 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000761-BK-000156 - Servicios Legales Mensuales por hora (FM)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000761-BK-000156\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"122\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000761-BK-000156\",\"processing\":false,\"secondaryExternalCode\":\"877\",\"secondary_external_code\":\"877\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"amorenog@emba.com\",\"enabled\":true,\"fullName\":\"Andres Moreno Gutierrez\",\"id\":5,\"locale\":\"es\",\"shortName\":\"amoreno\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"amorenog@emba.com\"},\"customer\":{\"id\":\"802\",\"name\":\"The Richline Group , A Berkshire Hathaway Company\",\"primary_external_code\":\"761\",\"company\":{\"id\":\"3\",\"name\":\"BKP\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":\"\",\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2018-10-31 05:00:00\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000644-BK-000165 - Asesoramiento Legal General por Horas\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000644-BK-000165\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"126\",\"internal_code\":\"\",\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000644-BK-000165\",\"processing\":false,\"secondaryExternalCode\":\"677\",\"secondary_external_code\":\"677\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-21 19:56:46\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"809\",\"name\":\"WESTERN UNION\",\"primary_external_code\":\"644\",\"company\":{\"id\":\"3\",\"name\":\"BKP\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2020-03-12 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000192-SC-000898 - CERTIFICACI\\u00d3N DE NO ARRAIGO - PHILIPPE MARIE RENE MAURICE GROUEIX\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000192-SC-000898\",\"finishedDate\":null,\"fixRateValue\":250,\"fix_rate_value\":250,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"764\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE 250.- USD.- INCLUYEN GASTOS E IMPUESTOS DE LEY. SE ACLARA QUE SE FACTURA ESTE ITEM CON LA SRL.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000192-SC-000898\",\"processing\":false,\"secondaryExternalCode\":\"2000\",\"secondary_external_code\":\"2000\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"600\",\"name\":\"Total Energies EP Bolivie Sucursal Bolivia\",\"primary_external_code\":\"192\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2021-12-15 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000192-SC-000899 - CERTIFICADO DE FLUJO MIGRATORIO - KATERINE GUTIERREZ A\\u00d1EZ\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000192-SC-000899\",\"finishedDate\":null,\"fixRateValue\":141.52,\"fix_rate_value\":141.52,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"769\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 985.75 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000192-SC-000899\",\"processing\":false,\"secondaryExternalCode\":\"3059\",\"secondary_external_code\":\"3059\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 16:35:29\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"600\",\"name\":\"Total Energies EP Bolivie Sucursal Bolivia\",\"primary_external_code\":\"192\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2022-02-16 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000192-SC-000900 - PERMANENCIA TEMPORAL DE 2 A\\u00d1OS SIN CONTRATO EXTANJERO - ELSA BONNAY\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000192-SC-000900\",\"finishedDate\":null,\"fixRateValue\":1540.94,\"fix_rate_value\":1540.94,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"770\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 10725.29 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000192-SC-000900\",\"processing\":false,\"secondaryExternalCode\":\"3181\",\"secondary_external_code\":\"3181\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 16:36:21\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"600\",\"name\":\"Total Energies EP Bolivie Sucursal Bolivia\",\"primary_external_code\":\"192\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2022-03-08 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000192-SC-000901 - PERMANENCIA TEMPORAL DE 2 A\\u00d1OS POR FAMILIA PARA MENOR DE EDAD - JOAO PEDRO VIEIRA RIBEIRO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000192-SC-000901\",\"finishedDate\":null,\"fixRateValue\":965.23,\"fix_rate_value\":965.23,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"771\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LO HONORARIOS DE BS. 6718 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000192-SC-000901\",\"processing\":false,\"secondaryExternalCode\":\"3200\",\"secondary_external_code\":\"3200\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 16:37:17\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"600\",\"name\":\"Total Energies EP Bolivie Sucursal Bolivia\",\"primary_external_code\":\"192\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2022-04-11 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000192-SC-000902 - C\\u00c9DULA DE EXTRANJERO - ELSA BONNAY\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000192-SC-000902\",\"finishedDate\":null,\"fixRateValue\":275.71,\"fix_rate_value\":275.71,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"772\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS.1919.23 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000192-SC-000902\",\"processing\":false,\"secondaryExternalCode\":\"3289\",\"secondary_external_code\":\"3289\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 16:38:16\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"600\",\"name\":\"Total Energies EP Bolivie Sucursal Bolivia\",\"primary_external_code\":\"192\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2022-04-11 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000192-SC-000903 - C\\u00c9DULA DE EXTRANJERO - JOAO PEDRO VIEIRA RIBEIRO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000192-SC-000903\",\"finishedDate\":null,\"fixRateValue\":275.71,\"fix_rate_value\":275.71,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"773\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1919.23 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000192-SC-000903\",\"processing\":false,\"secondaryExternalCode\":\"3290\",\"secondary_external_code\":\"3290\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 16:47:55\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"600\",\"name\":\"Total Energies EP Bolivie Sucursal Bolivia\",\"primary_external_code\":\"192\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-05-09 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000699-BK-000293 - Registro de Empresa Certificadora - AJ 2022\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000699-BK-000293\",\"finishedDate\":null,\"fixRateValue\":3000,\"fix_rate_value\":3000,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1094\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Fee por traducci\\u00f3n USD 25 por hoja pendiente de definici\\u00f3n\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000699-BK-000293\",\"processing\":false,\"secondaryExternalCode\":\"200009\",\"secondary_external_code\":\"200009\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"nicoln042001@gmail.com\",\"enabled\":true,\"fullName\":\"Daniel Marcelo Arredondo Zelada\",\"id\":6,\"locale\":\"es\",\"shortName\":\"darredon\",\"superAdmin\":false,\"updated_at\":\"2024-09-03 11:43:07\",\"userType\":1,\"username\":\"darredondo@emba.com.bo\"},\"customer\":{\"id\":\"710\",\"name\":\"GAMMING LABORATORIES INTERNATIONAL LLC (GLI)\",\"primary_external_code\":\"699\",\"company\":{\"id\":\"3\",\"name\":\"BKP\"}},\"practiceArea\":{\"id\":\"11\",\"externalCode\":\"AR21\",\"name\":\"Der. Administrativo\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-10-31 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000861-BK-000336 - Proceso Ejecutivo c\\/ Constructora Da Vinci\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000861-BK-000336\",\"finishedDate\":null,\"fixRateValue\":18000,\"fix_rate_value\":18000,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1116\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Se cobrar\\u00e1 por etapas que ser\\u00e1n consensuada con el cliente.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000861-BK-000336\",\"processing\":false,\"secondaryExternalCode\":\"200074\",\"secondary_external_code\":\"200074\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"atejerina@emba.com\",\"enabled\":true,\"fullName\":\"Andre Luis Tejerina Queiroz\",\"id\":25,\"locale\":\"es\",\"shortName\":\"atejerin\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"atejerina@emba.com\"},\"customer\":{\"id\":\"720\",\"name\":\"GRECO VITALI ASSOCIATI - STUDIO LEGALE\",\"primary_external_code\":\"861\",\"company\":{\"id\":\"3\",\"name\":\"BKP\"}},\"practiceArea\":{\"id\":\"27\",\"externalCode\":\"AR30\",\"name\":\"Procesal Civil\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-08-01 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000887-BK-000330 - Outsourcing for general financial and data analysis support including ad hoc deliverables\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000887-BK-000330\",\"finishedDate\":null,\"fixRateValue\":1400,\"fix_rate_value\":1400,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1214\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Variable en funci\\u00f3n al volumen de operaciones y tiempo insumido\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000887-BK-000330\",\"processing\":false,\"secondaryExternalCode\":\"200063\",\"secondary_external_code\":\"200063\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"cdelgado@emba.com\",\"enabled\":true,\"fullName\":\"Cristhian Delgado Ramirez\",\"id\":13,\"locale\":\"es\",\"shortName\":\"cdelgado\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"cdelgado@emba.com\"},\"customer\":{\"id\":\"773\",\"name\":\"Priority Build, LLC\",\"primary_external_code\":\"887\",\"company\":{\"id\":\"3\",\"name\":\"BKP\"}},\"practiceArea\":{\"id\":\"24\",\"externalCode\":\"AR05\",\"name\":\"Outsourcing\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2020-08-03 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000761-BK-000250 - PROCESO LABORAL - JUAN CARLOS MIRANDA ct. EXBOL\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000761-BK-000250\",\"finishedDate\":null,\"fixRateValue\":25000,\"fix_rate_value\":25000,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1235\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"PARA EL COBRO DE HONORARIOS SE DEBE REMITIR A LA IGUAL PROFESIONAL (ANDRES MORENO)\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000761-BK-000250\",\"processing\":false,\"secondaryExternalCode\":\"2200\",\"secondary_external_code\":\"2200\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"nezegarra@emba.com\",\"enabled\":true,\"fullName\":\"Natalio Eduardo Zegarra Ribera\",\"id\":15,\"locale\":\"es\",\"shortName\":\"nzegarra\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"nezegarra@emba.com\"},\"customer\":{\"id\":\"802\",\"name\":\"The Richline Group , A Berkshire Hathaway Company\",\"primary_external_code\":\"761\",\"company\":{\"id\":\"3\",\"name\":\"BKP\"}},\"practiceArea\":{\"id\":\"17\",\"externalCode\":\"AR08\",\"name\":\"Der. Laboral y Seg. Soc.\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2021-08-04 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000863-BK-000271 - Constituci\\u00f3n sociedad local\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000863-BK-000271\",\"finishedDate\":null,\"fixRateValue\":2500,\"fix_rate_value\":2500,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1239\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Favor coordinar facturaci\\u00f3n con Dr. AMG\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000863-BK-000271\",\"processing\":false,\"secondaryExternalCode\":\"2866\",\"secondary_external_code\":\"2866\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"amorenog@emba.com\",\"enabled\":true,\"fullName\":\"Andres Moreno Gutierrez\",\"id\":5,\"locale\":\"es\",\"shortName\":\"amoreno\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"amorenog@emba.com\"},\"customer\":{\"id\":\"806\",\"name\":\"Unosquare\",\"primary_external_code\":\"863\",\"company\":{\"id\":\"3\",\"name\":\"BKP\"}},\"practiceArea\":{\"id\":\"6\",\"externalCode\":\"AR17\",\"name\":\"Der.Comercial \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-10-04 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000891-BK-000335 - Constituci\\u00f3n de Sociedad\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000891-BK-000335\",\"finishedDate\":null,\"fixRateValue\":2200,\"fix_rate_value\":2200,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1245\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000891-BK-000335\",\"processing\":false,\"secondaryExternalCode\":\"200071\",\"secondary_external_code\":\"200071\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"tmercado@emba.com\",\"enabled\":true,\"fullName\":\"Teddy Alberto Mercado Carrion\",\"id\":12,\"locale\":\"es\",\"shortName\":\"tmercado\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"tmercado@emba.com\"},\"customer\":{\"id\":\"810\",\"name\":\"Westland Construction Inc.\",\"primary_external_code\":\"891\",\"company\":{\"id\":\"3\",\"name\":\"BKP\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2019-06-28 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000765-BK-000202 - Seguimiento de Acciones Judiciales en La Paz y Santa Cruz\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000765-BK-000202\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1346\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000765-BK-000202\",\"processing\":false,\"secondaryExternalCode\":\"1456\",\"secondary_external_code\":\"1456\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2025-01-15 16:14:05\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"699\",\"name\":\"Empresas Carozzi S.A.\",\"primary_external_code\":\"765\",\"company\":{\"id\":\"3\",\"name\":\"BKP\"}},\"practiceArea\":{\"id\":\"5\",\"externalCode\":\"AR02\",\"name\":\"Der.Civil \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-05-26 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000876-BK-000324 - Proyecto EDL\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000876-BK-000324\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1347\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Honorarios por confirmar.\\nProyecto EDL incluye temas corporativos de su subsidiaria en Bolivia y\\/o culaquier otro veh\\u00edculo societario que requieran para el proyecto.\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000876-BK-000324\",\"processing\":false,\"secondaryExternalCode\":\"200052\",\"secondary_external_code\":\"200052\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-10-09 19:47:21\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"nicoln042001@gmail.com\",\"enabled\":true,\"fullName\":\"Daniel Marcelo Arredondo Zelada\",\"id\":6,\"locale\":\"es\",\"shortName\":\"darredon\",\"superAdmin\":false,\"updated_at\":\"2024-09-03 11:43:07\",\"userType\":1,\"username\":\"darredondo@emba.com.bo\"},\"customer\":{\"id\":\"743\",\"name\":\"Lilac Solutions, Inc.\",\"primary_external_code\":\"876\",\"company\":{\"id\":\"3\",\"name\":\"BKP\"}},\"practiceArea\":{\"id\":\"20\",\"externalCode\":\"AR25\",\"name\":\"Energ\\u00eda y Recursos Naturales\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-09-26 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000866-BK-000315 - Project Beam II\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000866-BK-000315\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1348\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000866-BK-000315\",\"processing\":false,\"secondaryExternalCode\":\"200035\",\"secondary_external_code\":\"200035\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"tmercado@emba.com\",\"enabled\":true,\"fullName\":\"Teddy Alberto Mercado Carrion\",\"id\":12,\"locale\":\"es\",\"shortName\":\"tmercado\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"tmercado@emba.com\"},\"customer\":{\"id\":\"753\",\"name\":\"Milicom International Services LLC\",\"primary_external_code\":\"866\",\"company\":{\"id\":\"3\",\"name\":\"BKP\"}},\"practiceArea\":{\"id\":\"23\",\"externalCode\":\"AR28\",\"name\":\"M\\u0026A\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-06-22 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000872-BK-000298 - Proceso Penal\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000872-BK-000298\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1351\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"El cliente ha depositado USD 2000 por adelantado para gastos.\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000872-BK-000298\",\"processing\":false,\"secondaryExternalCode\":\"200015\",\"secondary_external_code\":\"200015\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"flanda@emba.com\",\"enabled\":true,\"fullName\":\"Carlos Fernando Landa Alejandro\",\"id\":18,\"locale\":\"es\",\"shortName\":\"flanda\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"flanda@emba.com\"},\"customer\":{\"id\":\"792\",\"name\":\"Solomon Bokchin\",\"primary_external_code\":\"872\",\"company\":{\"id\":\"3\",\"name\":\"BKP\"}},\"practiceArea\":{\"id\":\"34\",\"externalCode\":\"AR03\",\"name\":\"Der. Penal\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2018-10-31 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000147-SC-000050 - Proceso penales y civil Terreno AMETEX\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000147-SC-000050\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1554\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000147-SC-000050\",\"processing\":false,\"secondaryExternalCode\":\"189\",\"secondary_external_code\":\"189\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":7,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"92\",\"name\":\"BISA SEGUROS Y REASEGUROS S.A.\",\"primary_external_code\":\"147\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"34\",\"externalCode\":\"AR03\",\"name\":\"Der. Penal\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2018-10-31 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000186-SC-000086 - Servicios Legales Corporativos (por Hora) (FM)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000186-SC-000086\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1555\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000186-SC-000086\",\"processing\":false,\"secondaryExternalCode\":\"249\",\"secondary_external_code\":\"249\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-05 19:56:27\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"paramayo@emba.com\",\"enabled\":true,\"fullName\":\"Paul Aramayo Salinas\",\"id\":9,\"locale\":\"es\",\"shortName\":\"paramayo\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"paramayo@emba.com\"},\"customer\":{\"id\":\"313\",\"name\":\"HALLIBURTON LATIN AMERICA S.R.L. (Sucursal Bolivia).\",\"primary_external_code\":\"186\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-02-14 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000191-SC-000677 - VISA MERCOSUR 2 A\\u00d1OS CONSULADO DE BRASIL MENOR DE EDAD - LUCAS RAFAEL MALPARTIDA RIVERO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000191-SC-000677\",\"finishedDate\":null,\"fixRateValue\":250,\"fix_rate_value\":250,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1604\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 250 INCLUYEN IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000191-SC-000677\",\"processing\":false,\"secondaryExternalCode\":\"3169\",\"secondary_external_code\":\"3169\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"328\",\"name\":\"HRS Relocation\",\"primary_external_code\":\"191\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-02-14 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000191-SC-000678 - VISA MERCOSUR 2 A\\u00d1OS CONSULADO DE BRASIL MENOR DE EDAD - BENJAMIN MALPARTIDA RIVERO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000191-SC-000678\",\"finishedDate\":null,\"fixRateValue\":250,\"fix_rate_value\":250,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1605\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 250 INCLUYEN IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000191-SC-000678\",\"processing\":false,\"secondaryExternalCode\":\"3170\",\"secondary_external_code\":\"3170\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"328\",\"name\":\"HRS Relocation\",\"primary_external_code\":\"191\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-02-14 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000191-SC-000679 - VISA MERCOSUR 2 A\\u00d1OS CONSULADO DE BRASIL MENOR DE EDAD - ALEJANDRA MALPARTIDA RIVERO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000191-SC-000679\",\"finishedDate\":null,\"fixRateValue\":250,\"fix_rate_value\":250,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1606\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS USD. 250 INCLUYEN IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000191-SC-000679\",\"processing\":false,\"secondaryExternalCode\":\"3171\",\"secondary_external_code\":\"3171\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"328\",\"name\":\"HRS Relocation\",\"primary_external_code\":\"191\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-02-14 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000191-SC-000680 - VISA MERCOSUR 2 A\\u00d1OS CONSULADO DE BRASIL - VERA LUCIA RIVERO SOLARES\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000191-SC-000680\",\"finishedDate\":null,\"fixRateValue\":250,\"fix_rate_value\":250,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1607\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 250 INCLUYEN IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000191-SC-000680\",\"processing\":false,\"secondaryExternalCode\":\"3172\",\"secondary_external_code\":\"3172\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"328\",\"name\":\"HRS Relocation\",\"primary_external_code\":\"191\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2022-02-14 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000191-SC-000681 - VISA MERCOSUR 2 A\\u00d1OS CONSULADO DE BRASIL - GONZALO BERTIZ MALPARTIDA CAMARGO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000191-SC-000681\",\"finishedDate\":null,\"fixRateValue\":250,\"fix_rate_value\":250,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1608\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 250 INCLUYEN IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000191-SC-000681\",\"processing\":false,\"secondaryExternalCode\":\"3173\",\"secondary_external_code\":\"3173\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"328\",\"name\":\"HRS Relocation\",\"primary_external_code\":\"191\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-02-28 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000192-SC-000730 - CERTIFICADO DE RESIDENCIA Y CAMBIO DE DOMICILIO EN D.N.I. - JOSE PABLO RISO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000192-SC-000730\",\"finishedDate\":null,\"fixRateValue\":380,\"fix_rate_value\":380,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1890\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 380 INCLUYEN GASTO E IMPUESTO DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000192-SC-000730\",\"processing\":false,\"secondaryExternalCode\":\"3943\",\"secondary_external_code\":\"3943\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"600\",\"name\":\"Total Energies EP Bolivie Sucursal Bolivia\",\"primary_external_code\":\"192\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2019-12-12 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000315-SC-000586 - Demanda contra SECOYA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000315-SC-000586\",\"finishedDate\":null,\"fixRateValue\":100,\"fix_rate_value\":100,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1920\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"FALTA CONFIRACION DE NATARIO ZAGARRA PARA FACTURAR EL MONTO FINAL\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000315-SC-000586\",\"processing\":false,\"secondaryExternalCode\":\"1830\",\"secondary_external_code\":\"1830\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"nezegarra@emba.com\",\"enabled\":true,\"fullName\":\"Natalio Eduardo Zegarra Ribera\",\"id\":15,\"locale\":\"es\",\"shortName\":\"nzegarra\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"nezegarra@emba.com\"},\"customer\":{\"id\":\"387\",\"name\":\"JOSE MU\\u00d1OZ\",\"primary_external_code\":\"315\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"5\",\"externalCode\":\"AR02\",\"name\":\"Der.Civil \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":\"\",\"caseNumber\":null,\"closed_date\":\"2024-03-13 00:00:00\",\"confidential\":false,\"created_at\":\"2018-10-31 05:00:00\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000136-SC-000124 - Servicios legales mensuales (FM)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000136-SC-000124\",\"finishedDate\":null,\"fixRateValue\":800,\"fix_rate_value\":800,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1928\",\"internal_code\":\"\",\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000136-SC-000124\",\"processing\":false,\"secondaryExternalCode\":\"147\",\"secondary_external_code\":\"147\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-13 14:51:06\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"atejerina@emba.com\",\"enabled\":true,\"fullName\":\"Andre Luis Tejerina Queiroz\",\"id\":25,\"locale\":\"es\",\"shortName\":\"atejerin\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"atejerina@emba.com\"},\"customer\":{\"id\":\"515\",\"name\":\"PRODUCTORA Y COMERCIALIZADORA DE CAF\\u00c9 AGRICAFE S.A.\",\"primary_external_code\":\"136\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2022-11-09 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000192-SC-000712 - PERMISO DE VIAJE ONANFA - JOAO PEDRO VIEIRA RIBEIRO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000192-SC-000712\",\"finishedDate\":null,\"fixRateValue\":187.64,\"fix_rate_value\":187.64,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2174\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORIOS DE BS. 1306.85 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000192-SC-000712\",\"processing\":false,\"secondaryExternalCode\":\"3688\",\"secondary_external_code\":\"3688\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 21:07:40\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"600\",\"name\":\"Total Energies EP Bolivie Sucursal Bolivia\",\"primary_external_code\":\"192\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2023-01-05 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000192-SC-000718 - TERCER PERMISO DE VIAJE AL EXTERIOR - JOAO PEDRO VIEIRA RIBEIRO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000192-SC-000718\",\"finishedDate\":null,\"fixRateValue\":187.64,\"fix_rate_value\":187.64,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2179\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1306.85 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000192-SC-000718\",\"processing\":false,\"secondaryExternalCode\":\"3801\",\"secondary_external_code\":\"3801\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 21:09:15\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"600\",\"name\":\"Total Energies EP Bolivie Sucursal Bolivia\",\"primary_external_code\":\"192\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2023-01-05 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000192-SC-000719 - OTORGACION DE PODER Y LEGALIZACION DIRNOPLU - JOAO PEDRO VIEIRA RIBEIRO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000192-SC-000719\",\"finishedDate\":null,\"fixRateValue\":108.47,\"fix_rate_value\":108.47,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2180\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 755.17 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000192-SC-000719\",\"processing\":false,\"secondaryExternalCode\":\"3802\",\"secondary_external_code\":\"3802\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 21:09:46\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"600\",\"name\":\"Total Energies EP Bolivie Sucursal Bolivia\",\"primary_external_code\":\"192\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2023-01-19 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000192-SC-000720 - PERMANENCIA TEMPORAL DE 1 A\\u00d1OS SIN CONTRATO EXTANJERO - KARINE NATAKIE ORSKI EP. PAMBOU.\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000192-SC-000720\",\"finishedDate\":null,\"fixRateValue\":1185.76,\"fix_rate_value\":1185.76,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2181\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 8252,87 INCLUYEN GASTOS E IMPUESTOS DE LEY\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000192-SC-000720\",\"processing\":false,\"secondaryExternalCode\":\"3810\",\"secondary_external_code\":\"3810\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 21:10:40\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"600\",\"name\":\"Total Energies EP Bolivie Sucursal Bolivia\",\"primary_external_code\":\"192\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2023-01-24 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000192-SC-000721 - PERMANENCIA TEMPORAL DE 2 A\\u00d1OS BOLIVIA-ARGENTINA - VICENTE MANDARA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000192-SC-000721\",\"finishedDate\":null,\"fixRateValue\":1540.94,\"fix_rate_value\":1540.94,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2182\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 10725, 29 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000192-SC-000721\",\"processing\":false,\"secondaryExternalCode\":\"3819\",\"secondary_external_code\":\"3819\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 21:11:15\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"600\",\"name\":\"Total Energies EP Bolivie Sucursal Bolivia\",\"primary_external_code\":\"192\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2023-01-24 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000192-SC-000722 - PERMANENCIA TEMPORAL DE 2 A\\u00d1OS BOLIVIA-ARGENTINA - JUAN PEDRO MANDARA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000192-SC-000722\",\"finishedDate\":null,\"fixRateValue\":1540.95,\"fix_rate_value\":1540.95,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2183\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 10725,29 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000192-SC-000722\",\"processing\":false,\"secondaryExternalCode\":\"3820\",\"secondary_external_code\":\"3820\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 21:11:56\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"600\",\"name\":\"Total Energies EP Bolivie Sucursal Bolivia\",\"primary_external_code\":\"192\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2023-01-24 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000192-SC-000723 - PERMANENCIA TEMPORAL DE 2 A\\u00d1OS BOLIVIA-ARGENTINA - SILVINA EDITH MAINELLA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000192-SC-000723\",\"finishedDate\":null,\"fixRateValue\":1540.94,\"fix_rate_value\":1540.94,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2184\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 10725.29 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000192-SC-000723\",\"processing\":false,\"secondaryExternalCode\":\"3821\",\"secondary_external_code\":\"3821\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 21:15:00\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"600\",\"name\":\"Total Energies EP Bolivie Sucursal Bolivia\",\"primary_external_code\":\"192\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2023-02-06 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000192-SC-000724 - PERMANENCIA TEMPORAL DE 1 A\\u00d1OS POR FAMILIA PARA MENOR DE EDAD - PASCAL PAUL TALIANE PAMBOU ORSKI\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000192-SC-000724\",\"finishedDate\":null,\"fixRateValue\":696.83,\"fix_rate_value\":696.83,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2185\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 4850.69 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000192-SC-000724\",\"processing\":false,\"secondaryExternalCode\":\"3830\",\"secondary_external_code\":\"3830\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 21:26:31\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"600\",\"name\":\"Total Energies EP Bolivie Sucursal Bolivia\",\"primary_external_code\":\"192\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2023-02-06 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000192-SC-000725 - PERMANENCIA TEMPORAL DE 1 A\\u00d1OS POR FAMILIA CONYUGE - HUGUES-ANDOCHE PAMBOU\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000192-SC-000725\",\"finishedDate\":null,\"fixRateValue\":1611.06,\"fix_rate_value\":1611.06,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2186\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 11213.95 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000192-SC-000725\",\"processing\":false,\"secondaryExternalCode\":\"3831\",\"secondary_external_code\":\"3831\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 21:27:29\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"600\",\"name\":\"Total Energies EP Bolivie Sucursal Bolivia\",\"primary_external_code\":\"192\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2023-02-23 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000192-SC-000726 - C\\u00c9DULA DE EXTRANJERO - KARINE NATALIE ORSKI EP. PAMBOU\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000192-SC-000726\",\"finishedDate\":null,\"fixRateValue\":275.71,\"fix_rate_value\":275.71,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2187\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1919.23 INCLUYEN GASTO E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000192-SC-000726\",\"processing\":false,\"secondaryExternalCode\":\"3925\",\"secondary_external_code\":\"3925\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 21:28:05\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"600\",\"name\":\"Total Energies EP Bolivie Sucursal Bolivia\",\"primary_external_code\":\"192\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2023-02-28 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000192-SC-000727 - C\\u00c9DULA DE EXTRANJERO - SILVINA EDITH MAINELLA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000192-SC-000727\",\"finishedDate\":null,\"fixRateValue\":275.72,\"fix_rate_value\":275.72,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2188\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1919.23 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000192-SC-000727\",\"processing\":false,\"secondaryExternalCode\":\"3940\",\"secondary_external_code\":\"3940\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 21:30:09\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"600\",\"name\":\"Total Energies EP Bolivie Sucursal Bolivia\",\"primary_external_code\":\"192\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2023-02-28 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000192-SC-000728 - C\\u00c9DULA DE EXTRANJERO - JUAN PEDRO MANDARA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000192-SC-000728\",\"finishedDate\":null,\"fixRateValue\":275.72,\"fix_rate_value\":275.72,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2189\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1919.23 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000192-SC-000728\",\"processing\":false,\"secondaryExternalCode\":\"3941\",\"secondary_external_code\":\"3941\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 21:32:25\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"600\",\"name\":\"Total Energies EP Bolivie Sucursal Bolivia\",\"primary_external_code\":\"192\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2023-02-28 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000192-SC-000729 - C\\u00c9DULA DE EXTRANJERO - VICENTE MANDARA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000192-SC-000729\",\"finishedDate\":null,\"fixRateValue\":275.72,\"fix_rate_value\":275.72,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2190\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1919.23 INCLUYEN GASTO E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000192-SC-000729\",\"processing\":false,\"secondaryExternalCode\":\"3942\",\"secondary_external_code\":\"3942\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 21:32:56\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"600\",\"name\":\"Total Energies EP Bolivie Sucursal Bolivia\",\"primary_external_code\":\"192\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2023-04-12 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000192-SC-000734 - C\\u00c9DULA DE EXTRANJERO - HUGUES-ANDOCHE PAMBOU\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000192-SC-000734\",\"finishedDate\":null,\"fixRateValue\":275.72,\"fix_rate_value\":275.72,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2191\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1919.23 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000192-SC-000734\",\"processing\":false,\"secondaryExternalCode\":\"4047\",\"secondary_external_code\":\"4047\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 21:33:30\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"600\",\"name\":\"Total Energies EP Bolivie Sucursal Bolivia\",\"primary_external_code\":\"192\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2023-04-12 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000192-SC-000735 - CEDULA DE EXTRANJERO - PASCAL PAUL TALIANE PAMBOU ORSKI\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000192-SC-000735\",\"finishedDate\":null,\"fixRateValue\":275.72,\"fix_rate_value\":275.72,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2192\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1919.23 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000192-SC-000735\",\"processing\":false,\"secondaryExternalCode\":\"4048\",\"secondary_external_code\":\"4048\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 21:36:38\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"600\",\"name\":\"Total Energies EP Bolivie Sucursal Bolivia\",\"primary_external_code\":\"192\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2023-04-12 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000192-SC-000736 - PERMANENCIA TEMPORAL DE 1 A\\u00d1OS POR FAMILIA MENOR DE EDAD - NATHALIE EMMANUELLE PAMBOU\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000192-SC-000736\",\"finishedDate\":null,\"fixRateValue\":808.07,\"fix_rate_value\":808.07,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2193\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 5624.14 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000192-SC-000736\",\"processing\":false,\"secondaryExternalCode\":\"4049\",\"secondary_external_code\":\"4049\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 21:37:30\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"600\",\"name\":\"Total Energies EP Bolivie Sucursal Bolivia\",\"primary_external_code\":\"192\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2023-05-02 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000192-SC-000737 - CEDULA EXTRANJERA - SONIA MARINA CONSTANTINO VIEIRA RIBEIRO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000192-SC-000737\",\"finishedDate\":null,\"fixRateValue\":275.72,\"fix_rate_value\":275.72,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2194\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1919.23 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000192-SC-000737\",\"processing\":false,\"secondaryExternalCode\":\"4075\",\"secondary_external_code\":\"4075\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 21:38:07\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"600\",\"name\":\"Total Energies EP Bolivie Sucursal Bolivia\",\"primary_external_code\":\"192\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2023-05-02 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000192-SC-000738 - AUTORIZACI\\u00d3N EXTRAORDINARIA DE SALIDA DEL PAIS - DAMIAN AGUSTIN LOPEZ\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000192-SC-000738\",\"finishedDate\":null,\"fixRateValue\":126.87,\"fix_rate_value\":126.87,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2195\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 883.45 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000192-SC-000738\",\"processing\":false,\"secondaryExternalCode\":\"4076\",\"secondary_external_code\":\"4076\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 21:38:47\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"600\",\"name\":\"Total Energies EP Bolivie Sucursal Bolivia\",\"primary_external_code\":\"192\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2023-06-13 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000192-SC-000740 - PERMANENCIA INDEFINIDA POR TRABAJO - PEDRO CAETANO DIAS RIBEIRO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000192-SC-000740\",\"finishedDate\":null,\"fixRateValue\":1811.21,\"fix_rate_value\":1811.21,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2197\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 12606.90 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000192-SC-000740\",\"processing\":false,\"secondaryExternalCode\":\"4185\",\"secondary_external_code\":\"4185\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 21:39:23\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"600\",\"name\":\"Total Energies EP Bolivie Sucursal Bolivia\",\"primary_external_code\":\"192\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2023-07-06 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000192-SC-000742 - C\\u00c9DULA DE EXTRANJERO - NATHALIE EMMANUELLE PAMBOU\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000192-SC-000742\",\"finishedDate\":null,\"fixRateValue\":275.72,\"fix_rate_value\":275.72,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2199\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1919.23 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000192-SC-000742\",\"processing\":false,\"secondaryExternalCode\":\"4215\",\"secondary_external_code\":\"4215\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 21:39:58\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"600\",\"name\":\"Total Energies EP Bolivie Sucursal Bolivia\",\"primary_external_code\":\"192\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2023-07-12 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000192-SC-000743 - C\\u00c9DULA DE EXTRANJERO INDEFINIDO - PEDRO CAETANO D\\u00cdAS RIBEIRO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000192-SC-000743\",\"finishedDate\":null,\"fixRateValue\":275.72,\"fix_rate_value\":275.72,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2200\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1919.23 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000192-SC-000743\",\"processing\":false,\"secondaryExternalCode\":\"4218\",\"secondary_external_code\":\"4218\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 21:40:33\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"600\",\"name\":\"Total Energies EP Bolivie Sucursal Bolivia\",\"primary_external_code\":\"192\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2023-08-09 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000192-SC-000744 - SEGUNDA RENOVACI\\u00d3N LICENCIA DE CONDUCIR - PEDRO CAETANO DIAS RIBEIRO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000192-SC-000744\",\"finishedDate\":null,\"fixRateValue\":319.25,\"fix_rate_value\":319.25,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2201\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 2222 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000192-SC-000744\",\"processing\":false,\"secondaryExternalCode\":\"4253\",\"secondary_external_code\":\"4253\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 21:41:05\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"600\",\"name\":\"Total Energies EP Bolivie Sucursal Bolivia\",\"primary_external_code\":\"192\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2023-08-10 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000192-SC-000745 - PERMANENCIA INDEFINIDA POR FAMILIA MENOR DE EDAD - CAMILA ALEJANDRA GONCALVES LEON\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000192-SC-000745\",\"finishedDate\":null,\"fixRateValue\":1383.62,\"fix_rate_value\":1383.62,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2202\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 9630.57 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000192-SC-000745\",\"processing\":false,\"secondaryExternalCode\":\"4254\",\"secondary_external_code\":\"4254\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 21:41:51\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"600\",\"name\":\"Total Energies EP Bolivie Sucursal Bolivia\",\"primary_external_code\":\"192\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2023-08-10 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000192-SC-000746 - PERMANENCIA INDEFINIDA POR FAMILIA HIJA - ISABELLA VIRGINIA GONCALVES LEON\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000192-SC-000746\",\"finishedDate\":null,\"fixRateValue\":2139.65,\"fix_rate_value\":2139.65,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2203\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 14892.64 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000192-SC-000746\",\"processing\":false,\"secondaryExternalCode\":\"4255\",\"secondary_external_code\":\"4255\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 21:42:27\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"600\",\"name\":\"Total Energies EP Bolivie Sucursal Bolivia\",\"primary_external_code\":\"192\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2023-08-10 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000192-SC-000747 - PERMANENCIA INDEFINIDA POR FAMILIA C\\u00d3NYUGE - ROSA VIRGINIA LEON DE GONCALVES\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000192-SC-000747\",\"finishedDate\":null,\"fixRateValue\":2139.65,\"fix_rate_value\":2139.65,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2204\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 14892.64 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000192-SC-000747\",\"processing\":false,\"secondaryExternalCode\":\"4256\",\"secondary_external_code\":\"4256\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 21:42:52\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"600\",\"name\":\"Total Energies EP Bolivie Sucursal Bolivia\",\"primary_external_code\":\"192\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2023-09-13 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000192-SC-000748 - C\\u00c9DULA DE EXTRANJERO INDEFINIDAD - ROSA VIRGINIA LE\\u00d3N DE GONCALVES\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000192-SC-000748\",\"finishedDate\":null,\"fixRateValue\":275.72,\"fix_rate_value\":275.72,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2205\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1919.23 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000192-SC-000748\",\"processing\":false,\"secondaryExternalCode\":\"4346\",\"secondary_external_code\":\"4346\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 21:43:26\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"600\",\"name\":\"Total Energies EP Bolivie Sucursal Bolivia\",\"primary_external_code\":\"192\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2023-09-13 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000192-SC-000749 - C\\u00c9DULA DE EXTRANJERO INDEFINIDA - CAMILA ALEJANDRA GONCALVES LEON\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000192-SC-000749\",\"finishedDate\":null,\"fixRateValue\":275.72,\"fix_rate_value\":275.72,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2206\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1919.23 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000192-SC-000749\",\"processing\":false,\"secondaryExternalCode\":\"4347\",\"secondary_external_code\":\"4347\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 21:44:00\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"600\",\"name\":\"Total Energies EP Bolivie Sucursal Bolivia\",\"primary_external_code\":\"192\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2023-10-31 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000192-SC-000750 - ANTECEDENTES FELCC - LILIANA GABRIELA LEGUIZAMON\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000192-SC-000750\",\"finishedDate\":null,\"fixRateValue\":33.76,\"fix_rate_value\":33.76,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2207\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 235 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000192-SC-000750\",\"processing\":false,\"secondaryExternalCode\":\"4567\",\"secondary_external_code\":\"4567\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 21:44:29\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"600\",\"name\":\"Total Energies EP Bolivie Sucursal Bolivia\",\"primary_external_code\":\"192\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2023-10-31 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000192-SC-000751 - CERTIFICADO DE ANTECEDENTES FELCN- LILIANA GABRIELA LEGUIZAMON\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000192-SC-000751\",\"finishedDate\":null,\"fixRateValue\":32.33,\"fix_rate_value\":32.33,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2208\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 225 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000192-SC-000751\",\"processing\":false,\"secondaryExternalCode\":\"4568\",\"secondary_external_code\":\"4568\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 21:45:04\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"600\",\"name\":\"Total Energies EP Bolivie Sucursal Bolivia\",\"primary_external_code\":\"192\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2023-10-31 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000192-SC-000752 - CERTIFICADO DE ANTECEDENTES REJAP - LILIANA GABRIELA LEGUIZAMON\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000192-SC-000752\",\"finishedDate\":null,\"fixRateValue\":31.53,\"fix_rate_value\":31.53,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2209\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 210 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000192-SC-000752\",\"processing\":false,\"secondaryExternalCode\":\"4569\",\"secondary_external_code\":\"4569\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 21:45:33\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"600\",\"name\":\"Total Energies EP Bolivie Sucursal Bolivia\",\"primary_external_code\":\"192\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2023-10-31 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000192-SC-000753 - CERTIFICADO DE ANTECEDENTES FELCN- SERGIO MARTIN MENGONI\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000192-SC-000753\",\"finishedDate\":null,\"fixRateValue\":32.32,\"fix_rate_value\":32.32,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2210\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 225 INCLUYEN GASTOS E IMPUESTOS DE LEY\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000192-SC-000753\",\"processing\":false,\"secondaryExternalCode\":\"4570\",\"secondary_external_code\":\"4570\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 21:46:03\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"600\",\"name\":\"Total Energies EP Bolivie Sucursal Bolivia\",\"primary_external_code\":\"192\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2023-10-31 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000192-SC-000754 - CERTIFICADO DE ANTECEDENTES FELCC- SERGIO MARTIN MENGONI\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000192-SC-000754\",\"finishedDate\":null,\"fixRateValue\":33.76,\"fix_rate_value\":33.76,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2211\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 235 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000192-SC-000754\",\"processing\":false,\"secondaryExternalCode\":\"4571\",\"secondary_external_code\":\"4571\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 21:46:36\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"600\",\"name\":\"Total Energies EP Bolivie Sucursal Bolivia\",\"primary_external_code\":\"192\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2023-10-31 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000192-SC-000755 - CERTIFICADO DE ANTECEDENTES REJAP - SERGIO MARTIN MENGONI\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000192-SC-000755\",\"finishedDate\":null,\"fixRateValue\":31.53,\"fix_rate_value\":31.53,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2212\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 210 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000192-SC-000755\",\"processing\":false,\"secondaryExternalCode\":\"4572\",\"secondary_external_code\":\"4572\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 21:49:19\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"600\",\"name\":\"Total Energies EP Bolivie Sucursal Bolivia\",\"primary_external_code\":\"192\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2023-11-14 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000192-SC-000756 - CUARTA VISA DE OBJETO DETERMINADO 30 D\\u00cdAS AEROPUERTO - FRANCISCO JAVIER RIELO AMEIJIDE\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000192-SC-000756\",\"finishedDate\":null,\"fixRateValue\":24.64,\"fix_rate_value\":24.64,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2213\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 171.49 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000192-SC-000756\",\"processing\":false,\"secondaryExternalCode\":\"4580\",\"secondary_external_code\":\"4580\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 21:50:21\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"600\",\"name\":\"Total Energies EP Bolivie Sucursal Bolivia\",\"primary_external_code\":\"192\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2023-11-15 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000192-SC-000757 - CERTIFICACION DE FLUJO MIGRATORIO - SERGIO MARTIN MENGONI\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000192-SC-000757\",\"finishedDate\":null,\"fixRateValue\":141.53,\"fix_rate_value\":141.53,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2214\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 985.75 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000192-SC-000757\",\"processing\":false,\"secondaryExternalCode\":\"4592\",\"secondary_external_code\":\"4592\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 21:51:37\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"600\",\"name\":\"Total Energies EP Bolivie Sucursal Bolivia\",\"primary_external_code\":\"192\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2023-12-08 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000192-SC-000759 - Segundo flujo migratorio - Sergio Martin Mengoni\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000192-SC-000759\",\"finishedDate\":null,\"fixRateValue\":102.73,\"fix_rate_value\":102.73,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2215\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"los honorarios de bs. 715,92 incluyen gastos e impuestos de ley.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000192-SC-000759\",\"processing\":false,\"secondaryExternalCode\":\"4643\",\"secondary_external_code\":\"4643\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 21:52:12\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"600\",\"name\":\"Total Energies EP Bolivie Sucursal Bolivia\",\"primary_external_code\":\"192\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2023-12-08 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000192-SC-000760 - Flujo migratorio - Liliana Gabriela Leguizamon\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000192-SC-000760\",\"finishedDate\":null,\"fixRateValue\":141.53,\"fix_rate_value\":141.53,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2216\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"los honorarios de bs. 985,75 incluyen gastos e impuestos de ley.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000192-SC-000760\",\"processing\":false,\"secondaryExternalCode\":\"4644\",\"secondary_external_code\":\"4644\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 21:54:47\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"600\",\"name\":\"Total Energies EP Bolivie Sucursal Bolivia\",\"primary_external_code\":\"192\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2023-12-08 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000192-SC-000761 - Segundo flujo migratorio - Liliana Gabriela Leguizamon\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000192-SC-000761\",\"finishedDate\":null,\"fixRateValue\":141.52,\"fix_rate_value\":141.52,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2217\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Los honorarios de bs. 985.75 incluyen gastos e impuestos de ley.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000192-SC-000761\",\"processing\":false,\"secondaryExternalCode\":\"4645\",\"secondary_external_code\":\"4645\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 21:55:08\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"600\",\"name\":\"Total Energies EP Bolivie Sucursal Bolivia\",\"primary_external_code\":\"192\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2023-12-08 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000192-SC-000762 - C\\u00c9DULA DE EXTRANJERO - Liliana Gabriela Leguizamon\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000192-SC-000762\",\"finishedDate\":null,\"fixRateValue\":275.72,\"fix_rate_value\":275.72,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2218\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Los honorarios de bs. 1919.75 incluyen gastos e impuestos de ley.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000192-SC-000762\",\"processing\":false,\"secondaryExternalCode\":\"4646\",\"secondary_external_code\":\"4646\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 21:56:03\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"600\",\"name\":\"Total Energies EP Bolivie Sucursal Bolivia\",\"primary_external_code\":\"192\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2023-12-08 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000192-SC-000763 - PERMANENCIA DE DOS A\\u00d1OS CONVENIO BILATERAL - SERGIO MARTIN MENGONI\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000192-SC-000763\",\"finishedDate\":null,\"fixRateValue\":1540.95,\"fix_rate_value\":1540.95,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2219\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Los honorarios de bs. 10725.29 incluyen gastos e impuestos de ley.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000192-SC-000763\",\"processing\":false,\"secondaryExternalCode\":\"4647\",\"secondary_external_code\":\"4647\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 21:56:31\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"600\",\"name\":\"Total Energies EP Bolivie Sucursal Bolivia\",\"primary_external_code\":\"192\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2025-02-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-01-31 19:21:27\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000927-BK-000338 - Constitucion de Sociedad\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000927-BK-000338\",\"finishedDate\":null,\"fixRateValue\":2500,\"fix_rate_value\":2500,\"hourLimit\":10,\"hour_limit\":10,\"id\":\"2287\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000927-BK-000338\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":4,\"statusMarking\":\"billed\",\"updated_at\":\"2025-02-12 12:51:08\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"829\",\"name\":\"COLOMBINA\",\"primary_external_code\":\"927\",\"company\":{\"id\":\"3\",\"name\":\"BKP\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":\"\",\"caseNumber\":null,\"closed_date\":\"2024-01-31 00:00:00\",\"confidential\":false,\"created_at\":\"2024-01-31 19:27:50\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000927-BK-000339 - Rep Legal - Actas Anuales - Domicilio\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000927-BK-000339\",\"finishedDate\":null,\"fixRateValue\":500,\"fix_rate_value\":500,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2288\",\"internal_code\":\"\",\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000927-BK-000339\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2025-01-15 15:56:40\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rcuellar@emba.com\",\"enabled\":true,\"fullName\":\"Rene Cuellar Miranda\",\"id\":11,\"locale\":\"es\",\"shortName\":\"rcuellar\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rcuellar@emba.com\"},\"customer\":{\"id\":\"829\",\"name\":\"COLOMBINA\",\"primary_external_code\":\"927\",\"company\":{\"id\":\"3\",\"name\":\"BKP\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-05 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-05 18:53:36\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000930-BK-000340 - Informe Legal Esquema Contractual Contratraci\\u00f3n en Bolivia\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000930-BK-000340\",\"finishedDate\":null,\"fixRateValue\":1400,\"fix_rate_value\":1400,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2310\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000930-BK-000340\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-01 15:15:34\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"amorenog@emba.com\",\"enabled\":true,\"fullName\":\"Andres Moreno Gutierrez\",\"id\":5,\"locale\":\"es\",\"shortName\":\"amoreno\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"amorenog@emba.com\"},\"customer\":{\"id\":\"832\",\"name\":\"TUPEMESA - Tubos y perfiles met\\u00e1licos S.A.\",\"primary_external_code\":\"930\",\"company\":{\"id\":\"3\",\"name\":\"BKP\"}},\"practiceArea\":{\"id\":\"17\",\"externalCode\":\"AR08\",\"name\":\"Der. Laboral y Seg. Soc.\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-29 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-05 18:56:07\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000921-BK-000341 - Constituci\\u00f3n de Agencia de Bolsa\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000921-BK-000341\",\"finishedDate\":null,\"fixRateValue\":1500,\"fix_rate_value\":1500,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2311\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000921-BK-000341\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 20:14:45\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"tmercado@emba.com\",\"enabled\":true,\"fullName\":\"Teddy Alberto Mercado Carrion\",\"id\":12,\"locale\":\"es\",\"shortName\":\"tmercado\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"tmercado@emba.com\"},\"customer\":{\"id\":\"834\",\"name\":\"PUENTE\",\"primary_external_code\":\"921\",\"company\":{\"id\":\"3\",\"name\":\"BKP\"}},\"practiceArea\":{\"id\":\"4\",\"externalCode\":\"AR16\",\"name\":\"Der.Mercantil-Banca\\u0026Finanzas\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-07 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-07 21:46:08\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000931-BK-000343 - Arbtraje YPFB\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000931-BK-000343\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2323\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000931-BK-000343\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-08-30 23:31:24\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"amorenog@emba.com\",\"enabled\":true,\"fullName\":\"Andres Moreno Gutierrez\",\"id\":5,\"locale\":\"es\",\"shortName\":\"amoreno\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"amorenog@emba.com\"},\"customer\":{\"id\":\"835\",\"name\":\"Aditya Global Trading\",\"primary_external_code\":\"931\",\"company\":{\"id\":\"3\",\"name\":\"BKP\"}},\"practiceArea\":{\"id\":\"2\",\"externalCode\":\"AR04\",\"name\":\"Arbitraje\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":\"\",\"caseNumber\":null,\"closed_date\":\"2024-02-20 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-20 20:09:57\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"000937-BK-000342 - NICE - Retainer Mensual\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000937-BK-000342\",\"finishedDate\":null,\"fixRateValue\":1838,\"fix_rate_value\":1838,\"hourLimit\":10,\"hour_limit\":10,\"id\":\"2344\",\"internal_code\":\"\",\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000937-BK-000342\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-08 21:40:23\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"nicoln042001@gmail.com\",\"enabled\":true,\"fullName\":\"Daniel Marcelo Arredondo Zelada\",\"id\":6,\"locale\":\"es\",\"shortName\":\"darredon\",\"superAdmin\":false,\"updated_at\":\"2024-09-03 11:43:07\",\"userType\":1,\"username\":\"darredondo@emba.com.bo\"},\"customer\":{\"id\":\"840\",\"name\":\"inContact, Inc.\",\"primary_external_code\":\"937\",\"company\":{\"id\":\"3\",\"name\":\"BKP\"}},\"practiceArea\":{\"id\":\"10\",\"externalCode\":\"AR01\",\"name\":\"Corporativo (Societario)\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-29 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-20 21:46:21\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000938-BK-000343 - Informe Emisi\\u00f3n de Bonos TCO MOSETEN\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000938-BK-000343\",\"finishedDate\":null,\"fixRateValue\":2500,\"fix_rate_value\":2500,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2348\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"100% al final\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000938-BK-000343\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-06 20:13:02\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"tmercado@emba.com\",\"enabled\":true,\"fullName\":\"Teddy Alberto Mercado Carrion\",\"id\":12,\"locale\":\"es\",\"shortName\":\"tmercado\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"tmercado@emba.com\"},\"customer\":{\"id\":\"841\",\"name\":\"Cambium Earth SL\",\"primary_external_code\":\"938\",\"company\":{\"id\":\"3\",\"name\":\"BKP\"}},\"practiceArea\":{\"id\":\"12\",\"externalCode\":null,\"name\":\"Der. Constitucional\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-27 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-28 15:19:34\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000942-BK-000346 - PAE Proyecto Litio\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000942-BK-000346\",\"finishedDate\":null,\"fixRateValue\":6500,\"fix_rate_value\":6500,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2547\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Se factura cada dos meses desde febrero 2024\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000942-BK-000346\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-04 15:55:38\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"amorenog@emba.com\",\"enabled\":true,\"fullName\":\"Andres Moreno Gutierrez\",\"id\":5,\"locale\":\"es\",\"shortName\":\"amoreno\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"amorenog@emba.com\"},\"customer\":{\"id\":\"845\",\"name\":\"Li 3 Energy Holding S.L.\",\"primary_external_code\":\"942\",\"company\":{\"id\":\"3\",\"name\":\"BKP\"}},\"practiceArea\":{\"id\":\"20\",\"externalCode\":\"AR25\",\"name\":\"Energ\\u00eda y Recursos Naturales\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-10-07 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-29 15:04:57\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000948-BK-000347 - Actualizaci\\u00f3n de cuestionario 2009 y nuevo cuestionario 2024 (55 preguntas)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000948-BK-000347\",\"finishedDate\":null,\"fixRateValue\":8300,\"fix_rate_value\":8300,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2549\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":100,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000948-BK-000347\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"approved\",\"updated_at\":\"2024-10-07 20:13:40\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"tmercado@emba.com\",\"enabled\":true,\"fullName\":\"Teddy Alberto Mercado Carrion\",\"id\":12,\"locale\":\"es\",\"shortName\":\"tmercado\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"tmercado@emba.com\"},\"customer\":{\"id\":\"846\",\"name\":\"Cisco Systems M\\u00e9xico\",\"primary_external_code\":\"948\",\"company\":{\"id\":\"3\",\"name\":\"BKP\"}},\"practiceArea\":{\"id\":\"4\",\"externalCode\":\"AR16\",\"name\":\"Der.Mercantil-Banca\\u0026Finanzas\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-04 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-04 16:52:19\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000951-BK-000348 - Representaci\\u00f3n en Juntas Bancosol S.A. \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000951-BK-000348\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2621\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Partner: USD 195\\nSenior Associate: USD 150\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000951-BK-000348\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-27 16:24:45\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"tmercado@emba.com\",\"enabled\":true,\"fullName\":\"Teddy Alberto Mercado Carrion\",\"id\":12,\"locale\":\"es\",\"shortName\":\"tmercado\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"tmercado@emba.com\"},\"customer\":{\"id\":\"849\",\"name\":\"Investment Fund for Developing Countries (IFU)\",\"primary_external_code\":\"951\",\"company\":{\"id\":\"3\",\"name\":\"BKP\"}},\"practiceArea\":{\"id\":\"4\",\"externalCode\":\"AR16\",\"name\":\"Der.Mercantil-Banca\\u0026Finanzas\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-14 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-14 18:57:43\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000955-BK-000350 - Contrato de Agencia - Hartree\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000955-BK-000350\",\"finishedDate\":null,\"fixRateValue\":3500,\"fix_rate_value\":3500,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2695\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"100% Final\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000955-BK-000350\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-14 13:57:44\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"nicoln042001@gmail.com\",\"enabled\":true,\"fullName\":\"Daniel Marcelo Arredondo Zelada\",\"id\":6,\"locale\":\"es\",\"shortName\":\"darredon\",\"superAdmin\":false,\"updated_at\":\"2024-09-03 11:43:07\",\"userType\":1,\"username\":\"darredondo@emba.com.bo\"},\"customer\":{\"id\":\"853\",\"name\":\"HARTREE METALS LLC\",\"primary_external_code\":\"955\",\"company\":{\"id\":\"3\",\"name\":\"BKP\"}},\"practiceArea\":{\"id\":\"6\",\"externalCode\":\"AR17\",\"name\":\"Der.Comercial \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-25 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-25 21:04:58\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000930-BK-000351 - Elaboracion de modelo de contrato de prestacion de servicios \",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000930-BK-000351\",\"finishedDate\":null,\"fixRateValue\":900,\"fix_rate_value\":900,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2744\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000930-BK-000351\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-01 15:13:55\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"amorenog@emba.com\",\"enabled\":true,\"fullName\":\"Andres Moreno Gutierrez\",\"id\":5,\"locale\":\"es\",\"shortName\":\"amoreno\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"amorenog@emba.com\"},\"customer\":{\"id\":\"832\",\"name\":\"TUPEMESA - Tubos y perfiles met\\u00e1licos S.A.\",\"primary_external_code\":\"930\",\"company\":{\"id\":\"3\",\"name\":\"BKP\"}},\"practiceArea\":{\"id\":\"5\",\"externalCode\":\"AR02\",\"name\":\"Der.Civil \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-25 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-25 21:40:54\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000961-BK-000352 - BONO SOBERANO YPFB\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000961-BK-000352\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2746\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"SOCIO USD 275\\nASOCIADO SENIOR USD 210\\nASOCIADO USD 140\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000961-BK-000352\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-25 15:40:55\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"amorenog@emba.com\",\"enabled\":true,\"fullName\":\"Andres Moreno Gutierrez\",\"id\":5,\"locale\":\"es\",\"shortName\":\"amoreno\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"amorenog@emba.com\"},\"customer\":{\"id\":\"859\",\"name\":\"GOLDMAN SACHS CO\",\"primary_external_code\":\"961\",\"company\":{\"id\":\"3\",\"name\":\"BKP\"}},\"practiceArea\":{\"id\":\"4\",\"externalCode\":\"AR16\",\"name\":\"Der.Mercantil-Banca\\u0026Finanzas\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-10-03 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-25 21:44:59\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000962-BK-000353 - REPO GESTORA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000962-BK-000353\",\"finishedDate\":null,\"fixRateValue\":13000,\"fix_rate_value\":13000,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2747\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"100% Final\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000962-BK-000353\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"approved\",\"updated_at\":\"2024-10-03 21:39:23\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"amorenog@emba.com\",\"enabled\":true,\"fullName\":\"Andres Moreno Gutierrez\",\"id\":5,\"locale\":\"es\",\"shortName\":\"amoreno\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"amorenog@emba.com\"},\"customer\":{\"id\":\"860\",\"name\":\"BANCTRUST CO\",\"primary_external_code\":\"962\",\"company\":{\"id\":\"3\",\"name\":\"BKP\"}},\"practiceArea\":{\"id\":\"4\",\"externalCode\":\"AR16\",\"name\":\"Der.Mercantil-Banca\\u0026Finanzas\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-03 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-26 20:03:47\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000965-BK-000354 - Procesos en Bolivia - Fase 1\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000965-BK-000354\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2759\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000965-BK-000354\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-10-09 22:51:33\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"flanda@emba.com\",\"enabled\":true,\"fullName\":\"Carlos Fernando Landa Alejandro\",\"id\":18,\"locale\":\"es\",\"shortName\":\"flanda\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"flanda@emba.com\"},\"customer\":{\"id\":\"863\",\"name\":\"Marcela Maldonado\",\"primary_external_code\":\"965\",\"company\":{\"id\":\"3\",\"name\":\"BKP\"}},\"practiceArea\":{\"id\":\"5\",\"externalCode\":\"AR02\",\"name\":\"Der.Civil \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-27 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-27 16:39:09\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000967-BK-000355 - Questionnaire of Engineering Services in Bolivia\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000967-BK-000355\",\"finishedDate\":null,\"fixRateValue\":1600,\"fix_rate_value\":1600,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2761\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"1600 + IVA\\/100% Final\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000967-BK-000355\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-27 11:39:10\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"tmercado@emba.com\",\"enabled\":true,\"fullName\":\"Teddy Alberto Mercado Carrion\",\"id\":12,\"locale\":\"es\",\"shortName\":\"tmercado\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"tmercado@emba.com\"},\"customer\":{\"id\":\"865\",\"name\":\"SIMPSON GUMPERTZ \\u0026 HEGER\",\"primary_external_code\":\"967\",\"company\":{\"id\":\"3\",\"name\":\"BKP\"}},\"practiceArea\":{\"id\":\"6\",\"externalCode\":\"AR17\",\"name\":\"Der.Comercial \\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-01 00:00:00\",\"confidential\":false,\"created_at\":\"2024-04-01 15:15:33\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000720-BK-000356 - MEMO ACTIVIDADES FINANCIERAS PERMITIDAS (SEMAFORO)\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000720-BK-000356\",\"finishedDate\":null,\"fixRateValue\":3500,\"fix_rate_value\":3500,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2767\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"100% Final\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000720-BK-000356\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-01 10:15:34\",\"withIVA\":false,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"amorenog@emba.com\",\"enabled\":true,\"fullName\":\"Andres Moreno Gutierrez\",\"id\":5,\"locale\":\"es\",\"shortName\":\"amoreno\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"amorenog@emba.com\"},\"customer\":{\"id\":\"692\",\"name\":\"DLA PIPER\",\"primary_external_code\":\"720\",\"company\":{\"id\":\"3\",\"name\":\"BKP\"}},\"practiceArea\":{\"id\":\"4\",\"externalCode\":\"AR16\",\"name\":\"Der.Mercantil-Banca\\u0026Finanzas\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-03 00:00:00\",\"confidential\":false,\"created_at\":\"2024-04-03 14:41:29\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000756-BK-000359 - Asesor\\u00eda legal por horas\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000756-BK-000359\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2818\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000756-BK-000359\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-03 09:41:29\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:14\",\"daysAllow\":302,\"email\":\"rclaure@emba.com\",\"enabled\":true,\"fullName\":\"Rene Claure Veizaga\",\"id\":10,\"locale\":\"es\",\"shortName\":\"rclaure\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"rclaure@emba.com\"},\"customer\":{\"id\":\"674\",\"name\":\"Chapman University\",\"primary_external_code\":\"756\",\"company\":{\"id\":\"3\",\"name\":\"BKP\"}},\"practiceArea\":{\"id\":\"17\",\"externalCode\":\"AR08\",\"name\":\"Der. Laboral y Seg. Soc.\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-04-04 00:00:00\",\"confidential\":false,\"created_at\":\"2024-04-04 20:33:05\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000937-BK-000360 - MINISTERIO TRABAJO\\/HORACIO LUIS ARIAS ct. INCONTACT\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000937-BK-000360\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2823\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000937-BK-000360\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-04-04 15:33:06\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2023-12-26 22:28:15\",\"daysAllow\":302,\"email\":\"nezegarra@emba.com\",\"enabled\":true,\"fullName\":\"Natalio Eduardo Zegarra Ribera\",\"id\":15,\"locale\":\"es\",\"shortName\":\"nzegarra\",\"superAdmin\":false,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":1,\"username\":\"nezegarra@emba.com\"},\"customer\":{\"id\":\"840\",\"name\":\"inContact, Inc.\",\"primary_external_code\":\"937\",\"company\":{\"id\":\"3\",\"name\":\"BKP\"}},\"practiceArea\":{\"id\":\"17\",\"externalCode\":\"AR08\",\"name\":\"Der. Laboral y Seg. Soc.\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2025-06-11 00:00:00\",\"confidential\":false,\"created_at\":\"2025-06-09 10:58:53\",\"discountAmount\":null,\"discountPercent\":0,\"displayName\":\"001031-RE-000749 - PERMANENCIA DE TRES A\\u00d1OS CON CONTRATO EXTRANJERO- STEFAN MICHAEL KOSEL\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"001031-RE-000749\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2945\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":0,\"notes\":\"observaciones\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":null,\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"pending_completion\",\"updated_at\":\"2025-06-11 09:58:44\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2021-05-11 23:40:08\",\"daysAllow\":302,\"email\":\"pcorredor26@gmail.com\",\"enabled\":true,\"fullName\":\"AMTM Pruebas\",\"id\":77,\"locale\":\"es\",\"shortName\":\"AM\",\"superAdmin\":true,\"updated_at\":\"2025-07-21 10:12:54\",\"userType\":1,\"username\":\"pcorredor26@gmail.com\"},\"customer\":{\"id\":\"929\",\"name\":\"CAPACITACI\\u00d3N CON ANDREA\",\"primary_external_code\":\"1031\",\"company\":{\"id\":\"3\",\"name\":\"BKP\"}},\"practiceArea\":{\"id\":\"2\",\"externalCode\":\"AR04\",\"name\":\"Arbitraje\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2025-06-26 00:00:00\",\"confidential\":false,\"created_at\":\"2025-06-26 11:38:51\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"001032-BK-000382 - Servicios Legales integrales por hora\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"001032-BK-000382\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2946\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":null,\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"pending_completion\",\"updated_at\":\"2025-06-26 11:38:52\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2021-05-11 23:40:08\",\"daysAllow\":302,\"email\":\"pcorredor26@gmail.com\",\"enabled\":true,\"fullName\":\"AMTM Pruebas\",\"id\":77,\"locale\":\"es\",\"shortName\":\"AM\",\"superAdmin\":true,\"updated_at\":\"2025-07-21 10:12:54\",\"userType\":1,\"username\":\"pcorredor26@gmail.com\"},\"customer\":{\"id\":\"930\",\"name\":\"Chapman1\",\"primary_external_code\":\"1032\",\"company\":{\"id\":\"3\",\"name\":\"BKP\"}},\"practiceArea\":{\"id\":\"2\",\"externalCode\":\"AR04\",\"name\":\"Arbitraje\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2025-06-26 00:00:00\",\"confidential\":false,\"created_at\":\"2025-06-26 11:55:52\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"001032-BK-000383 - ASPECTOS GENERALES DEL SISTEMA DE SEGURIDAD SOCIAL EN BOLIVIA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"001032-BK-000383\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2947\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":null,\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"pending_completion\",\"updated_at\":\"2025-06-26 11:56:27\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2021-05-11 23:40:08\",\"daysAllow\":302,\"email\":\"pcorredor26@gmail.com\",\"enabled\":true,\"fullName\":\"AMTM Pruebas\",\"id\":77,\"locale\":\"es\",\"shortName\":\"AM\",\"superAdmin\":true,\"updated_at\":\"2025-07-21 10:12:54\",\"userType\":1,\"username\":\"pcorredor26@gmail.com\"},\"customer\":{\"id\":\"930\",\"name\":\"Chapman1\",\"primary_external_code\":\"1032\",\"company\":{\"id\":\"3\",\"name\":\"BKP\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}}]}}}\n","time":"2025-07-30T10:51:11-04:00"} +{"file":"client.go:29","func":"http.InitClient.func1.1","level":"info","msg":"➡️ Request: POST https://apinewtm.com/graphql/\nHeaders: map[Accept:[application/json] Authorization:[Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJpYXQiOjE3NTM4ODY1MjIsImV4cCI6MTc1Mzk2NjUyMiwiaWQiOjEwNSwidXNlcm5hbWUiOiJpbnRlZ3JhY2lvbmVzQGVtYmEuYm8iLCJhcGlrZXkiOiI5Yzg0ZjYzZTRlMzk2ZGZmOWU5ZjU3NDI5OGRmZWUzOSIsImFwaWtleUNyZWF0ZWRBdCI6eyJkYXRlIjoiMjAyNS0wNy0xNyAxMDo0MToyNS4wMDAwMDAiLCJ0aW1lem9uZV90eXBlIjozLCJ0aW1lem9uZSI6IkFtZXJpY2EvQm9nb3RhIn0sImZ1bGxOYW1lIjoiSW50ZWdyYWNpw7NuIEVNQkEiLCJlbWFpbCI6ImludGVncmFjaW9uZXNAZW1iYS5ibyIsImxvY2FsZSI6ImVzIiwiZGF5c0FsbG93ZWQiOjMwLCJpc0Nvb3JkaW5hdG9yIjpmYWxzZSwidHlwZVRhc2tWaWV3IjoibGlzdHMiLCJkYXlzYWxsb3ciOjMwLCJyb2xlcyI6e30sInNob3J0X25hbWUiOiJJTi5FTUJBIiwicGVybWlzc2lvbnMiOlsic3luY19leHRlcm5hbF9idXNpbmVzcyIsInN5bmNfZXh0ZXJuYWxfY3VzdG9tZXIiLCJzeW5jX2V4dGVybmFsX21pbGVzdG9uZSIsImFic2VuY2VfYXBwcm92ZSIsImFic2VuY2VfY3JlYXRlX2FsbCIsImFic2VuY2VfY3JlYXRlX293biIsImFic2VuY2VfbWVudSIsImFjY291bnRpbmdfYnVzaW5lc3NfbGlzdCIsImFjY291bnRpbmdfY3VzdG9tZXJfbGlzdCIsImJpbGxpbmdfcGVyaW9kX2RlbGV0ZV9hbGwiLCJiaWxsaW5nX3BlcmlvZF9lZGl0X2FsbCIsImJpbGxpbmdfcGVyaW9kX2xpc3QiLCJiaWxsaW5nX3BlcmlvZF9yZWFjdGl2YXRlIiwiYm9hcmRfcmF0ZV91c2VyX2NyZWF0ZSIsImJvYXJkX3JhdGVfdXNlcl9lZGl0IiwiYnVzaW5lc3NfY3JlYXRlIiwiYnVzaW5lc3NfZGVzY3JpcHRpb25fc2F2ZSIsImJ1c2luZXNzX2VkaXQiLCJidXNpbmVzc19saXN0X2FsbCIsImJ1c2luZXNzX21lbnUiLCJidXNpbmVzc19yZXNwb25zaWJsZV9saXN0X2FsbCIsImJ1c2luZXNzX3NlZV9iaWxsaW5nX2luZm8iLCJidXNpbmVzc2VzX2FsbG93ZWRfdXNlcl9jcmVhdGUiLCJidXNpbmVzc2VzX2FsbG93ZWRfdXNlcl9kZWxldGUiLCJjb21wYW55X2Rpc2FibGUiLCJjb21wYW55X2VkaXQiLCJjb21wYW55X2xpc3QiLCJjb25jZXB0X2NyZWF0ZSIsImNvbmNlcHRfZWRpdCIsImNvbmNlcHRfbWVudSIsImNvbnRhY3RfY3JlYXRlIiwiY29udGFjdF9jcmVhdGVfZmFzdCIsImNvbnRhY3RfZWRpdCIsImNvbnRhY3RfbGlzdCIsImNvbnRhY3RfbWVudSIsImN1c3RvbWVyX2NyZWF0ZSIsImN1c3RvbWVyX2NyZWF0ZV9mYXN0IiwiY3VzdG9tZXJfZWRpdCIsImN1c3RvbWVyX2xpc3QiLCJjdXN0b21lcl9saXN0X2FsbCIsImN1c3RvbWVyX21lbnUiLCJleHBlbnNlX2NyZWF0ZV9hbGwiLCJleHBlbnNlX2RlbGV0ZV9hbGwiLCJleHBlbnNlX2R1cGxpY2F0ZSIsImV4cGVuc2VfZWRpdF9hbGwiLCJleHBlbnNlX2xpc3RfYWxsIiwiZXhwZW5zZV9tZW51IiwiZXhwZW5zZV9yZWplY3RfYWxsIiwiZmFiX3Nob3ciLCJmaWxlX21lbnUiLCJnZW9yZWZlcmVuY2VfY3JlYXRlIiwiZ2VvcmVmZXJlbmNlX2VkaXQiLCJnZW9yZWZlcmVuY2VfbWVudSIsImdvX3RvX2xlZ2FjeSIsImluZGljYXRvcnNfbWVudSIsImludm9pY2VfY3JlYXRlIiwiaW52b2ljZV9kZXRhaWxfbGlzdF9hbGwiLCJpbnZvaWNlX2ZpeF90aW1lc19jdXN0b21fdmFsdWUiLCJpbnZvaWNlX2xpc3RfYWxsIiwiaW52b2ljZWFkdmFuY2VfY3JlYXRlIiwiaW52b2ljZWFkdmFuY2VfbGlzdCIsImludm9pY2VhZHZhbmNlX3VwZGF0ZSIsImxvZ19saXN0X2FsbCIsImxvZ19saXN0X293biIsIm1pbGVzdG9uZV9jcmVhdGUiLCJtaWxlc3RvbmVfZGVsZXRlIiwibWlsZXN0b25lX2VkaXQiLCJtb250aGx5X2ZpeF9yYXRlX2dyb3VwX2NyZWF0ZSIsIm1vbnRobHlfZml4X3JhdGVfZ3JvdXBfZWRpdCIsIm1vbnRobHlfdXNlcl9jb3N0X2NyZWF0ZSIsIm1vbnRobHlfdXNlcl9jb3N0X2VkaXQiLCJwYXltZW50X2NyZWF0ZSIsInBheW1lbnRfZGVsZXRlIiwicGF5bWVudF9lZGl0IiwicGF5bWVudF9tZW51IiwicHJvY2VkdXJlX21lbnUiLCJwcm9jZWR1cmVfcmF0ZV9jcmVhdGUiLCJwcm9jZWR1cmVfcmF0ZV9kZXRhaWxfY3JlYXRlIiwicHJvY2VkdXJlX3JhdGVfZGV0YWlsX2VkaXQiLCJwcm9jZWR1cmVfcmF0ZV9kZXRhaWxfbGlzdCIsInByb2NlZHVyZV9yYXRlX2VkaXQiLCJwcm9jZWR1cmVfcmF0ZV9saXN0IiwicHJvY2VkdXJlX3JhdGVfbWVudSIsInByb2NlZHVyZV90cmFuc2FjdGlvbl9saXN0IiwicHJvamVjdF9hcmNoaXZlX2Nhc2NhZGVfYWxsIiwicHJvamVjdF9kZWxldGVfY2FzY2FkZV9hbGwiLCJwcm9qZWN0X3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInJhdGVfYnVzaW5lc3NfY2F0ZWdvcnlfY3JlYXRlIiwicmF0ZV9idXNpbmVzc19jYXRlZ29yeV9lZGl0IiwicmF0ZV9idXNpbmVzc191c2VyX2NyZWF0ZSIsInJhdGVfYnVzaW5lc3NfdXNlcl9lZGl0IiwicmF0ZV9leGNoYW5nZV9jcmVhdGUiLCJyYXRlX2V4Y2hhbmdlX2VkaXQiLCJyYXRlX2V4Y2hhbmdlX2xpc3QiLCJyYXRlX3VzZXJfY3JlYXRlIiwicmF0ZV91c2VyX2VkaXQiLCJyb2xlX2NyZWF0ZSIsInJvbGVfZWRpdF9hbGwiLCJyb2xlX2xpc3RfYWxsIiwic2VjdGlvbl9hcmNoaXZlX2Nhc2NhZGVfYWxsIiwic2VjdGlvbl9kZWxldGVfY2FzY2FkZV9hbGwiLCJzZWN0aW9uX3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInNlZV9tZW51X3JhdGVfZXhjaGFuZ2UiLCJzZXJpZV9jcmVhdGUiLCJzZXJpZV9lZGl0Iiwic2VyaWVfbWVudSIsInNldHRpbmdzX3ZpZXciLCJzdXBwbGllcl9jcmVhdGUiLCJ0YXNrX2FkZF90aW1lX2FsbCIsInRhc2tfYWRkX3RpbWVfb3duIiwidGFza19hc3NpZ25lZF91c2VyX2VtYWlsIiwidGFza19jbG9zZWRfZW1haWwiLCJ0YXNrX2NyZWF0ZV9hbGwiLCJ0YXNrX2NyZWF0ZV9jb21tZW50X2VtYWlsIiwidGFza19jcmVhdGVfc2VsZiIsInRhc2tfY3JlYXRlX3RlYW0iLCJ0YXNrX2RlbGV0ZV9hbGwiLCJ0YXNrX2RlbGV0ZV9vd24iLCJ0YXNrX2RlbGV0ZV90ZWFtIiwidGFza19lZGl0X2FsbCIsInRhc2tfZWRpdF9kdWVfZGF0ZSIsInRhc2tfZWRpdF9vd24iLCJ0YXNrX2VkaXRfdGVhbSIsInRhc2tfbGlzdF9hbGwiLCJ0YXNrX2xpc3Rfb3duIiwidGFza19saXN0X3RlYW0iLCJ0YXNrX21hc3NpdmVpbXBvcnQiLCJ0YXNrX21lbnUiLCJ0YXNrX21pZ3JhdGlvbiIsInRhc2tfc2V0X2FkZGl0aW9uYWxfYXNzaWduZWVzIiwidGFza19zZXRfZHVlX2RhdGUiLCJ0YXNrX3NldF9lc3RpbWF0ZWRfdGltZSIsInRhc2tfc2V0X3ByaW9yaXR5IiwidGFza19zZXRfcHJvZ3Jlc3MiLCJ0YXhfZWRpdF9hbGwiLCJ0YXhfbGlzdF9hbGwiLCJ0ZWFtX2FyY2hpdmVfY2FzY2FkZV9hbGwiLCJ0ZWFtX2NyZWF0ZV9hbGwiLCJ0ZWFtX2RlbGV0ZV9hbGwiLCJ0ZWFtX2VkaXRfYWxsIiwidGVhbV9saXN0X2FsbCIsInRlYW1fbGlzdF9vd24iLCJ0ZWFtX3VuYXJjaGl2ZV9jYXNjYWRlX2FsbCIsInRpbWVfYWNjZXB0X2FsbCIsInRpbWVfYWNjZXB0X293biIsInRpbWVfYXBwcm92ZV9hbGwiLCJ0aW1lX2FwcHJvdmVfb3duIiwidGltZV9jcmVhdGVfYWxsIiwidGltZV9jcmVhdGVfb3duIiwidGltZV9kZWxldGVfYWxsIiwidGltZV9kZWxldGVfb3duIiwidGltZV9kZW55X2FsbCIsInRpbWVfZGVueV9vd24iLCJ0aW1lX2Rvd25sb2FkZmlsZV9hbGwiLCJ0aW1lX2Rvd25sb2FkZmlsZV9vd24iLCJ0aW1lX2VkaXRfYWxsIiwidGltZV9lZGl0X2Nsb3NlX3BlcmlvZF9hbGwiLCJ0aW1lX2VkaXRfY2xvc2VfcGVyaW9kX293biIsInRpbWVfZWRpdF9vd24iLCJ0aW1lX2xpc3RfYWxsIiwidGltZV9saXN0X293biIsInRpbWVfbWVudSIsInRpbWVfbWludXRlc196ZXJvIiwidGltZV9yZWplY3RfYWxsIiwidGltZV9yZXN0cmljdGVkX3BlcmlvZF9jcmVhdGUiLCJ0aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX2VkaXQiLCJ0aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX21lbnUiLCJ0aW1lX3NoYXJlX2FsbCIsInRpbWVfc2hhcmVfb3duIiwidGltZV9zaG93X2NhbGVuZGFyX3ZpZXciLCJ0aW1lX3VwbG9hZGZpbGVfYWxsIiwidGltZV91cGxvYWRmaWxlX293biIsInRyYW5zYWN0aW9uX2FkYXB0ZXJfbGlzdCIsInRyYW5zYWN0aW9uX2xpc3QiLCJ1c2VyX2Fic2VuY2VzX3Nob3ciLCJ1c2VyX2Nvc3RfY3JlYXRlIiwidXNlcl9jb3N0X2VkaXQiLCJ1c2VyX2Nvc3RfbGlzdCIsInVzZXJfY29zdF9tZW51IiwidXNlcl9jb3N0X3JhdGVfY3JlYXRlIiwidXNlcl9jb3N0X3JhdGVfZWRpdCIsInVzZXJfY29zdF9yYXRlX2xpc3QiLCJ1c2VyX2NyZWF0ZSIsInVzZXJfZGlzYWJsZSIsInVzZXJfZWRpdCIsInVzZXJfZWRpdF9kYXlzX2FsbG93X29ubHkiLCJ1c2VyX2dyb3VwX3JvbGVfY3JlYXRlX2FsbCIsInVzZXJfZ3JvdXBfcm9sZV9kZWxldGVfYWxsIiwidXNlcl9ncm91cF9yb2xlX2VkaXRfYWxsIiwidXNlcl9ncm91cF9yb2xlc19saXN0X2FsbCIsInVzZXJfbGlzdCIsInVzZXJfbGlzdF9hbGwiLCJ1c2VyX21hc3NfYWN0aXZhdGlvbiIsInVzZXJfcHJvZHVjdGl2aXR5X2NyZWF0ZSIsInVzZXJfcHJvZHVjdGl2aXR5X2Rpc2FibGUiLCJ1c2VyX3Byb2R1Y3Rpdml0eV9lZGl0IiwidXNlcl9wcm9kdWN0aXZpdHlfZW5hYmxlIiwidXNlcl9wcm9kdWN0aXZpdHlfbWVudSIsInVzZXJfdGltZV9yZXN0cmljdGVkX3BlcmlvZF9jcmVhdGUiLCJ1c2VyX3RpbWVfcmVzdHJpY3RlZF9wZXJpb2RfZGVsZXRlIiwidXNlcl90aW1lX3Jlc3RyaWN0ZWRfcGVyaW9kX2VkaXQiLCJ1c2VyZ3JvdXBfY3JlYXRlX2FsbCIsInVzZXJncm91cF9kZWxldGVfYWxsIiwidXNlcmdyb3VwX2VkaXRfYWxsIiwidXNlcmdyb3VwX2xpc3RfYWxsIiwidXNlcmdyb3VwX21lbnUiLCJ1c2Vyc191c2VyX2dyb3VwX2NyZWF0ZV9hbGwiLCJ1c2Vyc191c2VyX2dyb3VwX2RlbGV0ZV9hbGwiLCJ1c2Vyc191c2VyX2dyb3VwX2VkaXRfYWxsIiwidXNlcnNfdXNlcl9ncm91cHNfbGlzdF9hbGwiXSwiaG9tZXBhZ2UiOm51bGx9.kShN7NXGoaz1oFro-yYNyIpIEcnNpo1GiB8SFGKFUJtDQoqyp1I1w-CMA8Kta3vWXnUZwx-y2z1yVSJaMpZbqQgKFlakpcf6351bZSL8IAUPExSfLz0HYYCWFx-Usx94BBTqosKsRhnT8PkPN3dGxs8-XTIEDi9gN-Pk9OSHmM5mPkTsaaxTY40M-F7Y0Up2y6s_lwFaX13CmstiYZSXzyKL9SUBBx-E6-8qQAfuKPIoZ_50jSGPW98-IkAcWwqO6yGf-M07dSfFZ2vLfwc3ulHm2p8jVSmRxJ_O43BEWQD5cvqGbVIvSMXkS4y98DL4Vencjjg27iu3CUJsDNBBTg] Content-Type:[application/json] Origin:[https://azure-function.timemanagerweb.com] Tenant-Name:[pruebas-dos] User-Agent:[Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36]]\nBody: map[query:query ($limit: Int, $orderBy: String, $orderDesc: Boolean, $page: Int) { BusinessMeta(limit: $limit, orderBy: $orderBy, orderDesc: $orderDesc, page: $page) { meta { hasNextPage hasPreviousPage limit next page pages previous total } rows { apply_procedures billable business_customer_code caseNumber closed_date confidential created_at discountAmount discountPercent displayName enableBusinessAllowedUsers expedient finishedDate fixRateValue fix_rate_value hourLimit hour_limit id internal_code isBillable limitAlert notes partialCharges partial_charges primary_external_code processing secondaryExternalCode secondary_external_code status statusMarking updated_at withIVA responsible { created_at daysAllow email enabled fullName id locale shortName superAdmin updated_at userType username } customer { id name primary_external_code company { id name } } practiceArea { id externalCode name } } } } variables:map[limit:100 orderBy:orderBy orderDesc:true page:16]]\n","time":"2025-07-30T10:51:11-04:00"} +{"file":"client.go:36","func":"http.InitClient.func1.2","level":"info","msg":"⬅️ Response: POST https://apinewtm.com/graphql/ | Status: 200 | Duration: 3.7503743s\nHeaders: map[Access-Control-Allow-Credentials:[true] Access-Control-Allow-Origin:[https://azure-function.timemanagerweb.com] Access-Control-Expose-Headers:[link, access-control-allow-credentials] Cache-Control:[no-cache, private] Content-Type:[application/json] Date:[Wed, 30 Jul 2025 14:51:14 GMT] Server:[] Vary:[Authorization]]\nBody: {\"errors\":[{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",0,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",0,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",0,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",0,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",0,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",0,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",0,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",0,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",0,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",0,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",0,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",1,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",1,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",1,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",1,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",1,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",1,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",1,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",1,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",1,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",1,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",1,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",2,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",2,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",2,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",2,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",2,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",2,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",2,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",2,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",2,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",2,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",2,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",3,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",3,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",3,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",3,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",3,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",3,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",3,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",3,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",3,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",3,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",3,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",4,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",4,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",4,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",4,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",4,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",4,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",4,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",4,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",4,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",4,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",4,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",5,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",5,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",5,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",5,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",5,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",5,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",5,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",5,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",5,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",5,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",5,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",6,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",6,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",6,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",6,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",6,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",6,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",6,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",6,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",6,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",6,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",6,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",7,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",7,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",7,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",7,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",7,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",7,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",7,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",7,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",7,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",7,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",7,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",8,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",8,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",8,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",8,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",8,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",8,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",8,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",8,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",8,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",8,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",8,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",9,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",9,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",9,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",9,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",9,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",9,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",9,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",9,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",9,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",9,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",9,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",10,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",10,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",10,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",10,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",10,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",10,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",10,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",10,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",10,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",10,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",10,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",11,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",11,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",11,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",11,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",11,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",11,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",11,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",11,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",11,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",11,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",11,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",12,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",13,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",14,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",15,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",16,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",16,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",16,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",16,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",16,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",16,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",16,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",16,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",16,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",16,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",16,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",17,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",18,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",18,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",18,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",18,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",18,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",18,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",18,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",18,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",18,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",18,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",18,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",19,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",20,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",21,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",22,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",23,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",23,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",23,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",23,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",23,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",23,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",23,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",23,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",23,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",23,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",23,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",24,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",24,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",24,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",24,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",24,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",24,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",24,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",24,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",24,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",24,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",24,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",25,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",25,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",25,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",25,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",25,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",25,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",25,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",25,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",25,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",25,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",25,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",26,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",26,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",26,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",26,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",26,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",26,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",26,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",26,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",26,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",26,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",26,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",27,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",27,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",27,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",27,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",27,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",27,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",27,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",27,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",27,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",27,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",27,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",28,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",29,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",29,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",29,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",29,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",29,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",29,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",29,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",29,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",29,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",29,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",29,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",30,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",31,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",32,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",32,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",32,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",32,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",32,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",32,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",32,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",32,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",32,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",32,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",32,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",33,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",33,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",33,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",33,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",33,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",33,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",33,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",33,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",33,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",33,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",33,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",34,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",34,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",34,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",34,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",34,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",34,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",34,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",34,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",34,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",34,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",34,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",35,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",35,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",35,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",35,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",35,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",35,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",35,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",35,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",35,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",35,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",35,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",36,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",36,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",36,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",36,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",36,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",36,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",36,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",36,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",36,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",36,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",36,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",37,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",37,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",37,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",37,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",37,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",37,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",37,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",37,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",37,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",37,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",37,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",38,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",38,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",38,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",38,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",38,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",38,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",38,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",38,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",38,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",38,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",38,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",39,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",39,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",39,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",39,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",39,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",39,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",39,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",39,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",39,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",39,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",39,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",40,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",41,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",42,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",43,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",44,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",45,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",46,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",47,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",48,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",49,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",50,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",50,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",50,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",50,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",50,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",50,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",50,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",50,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",50,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",50,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",50,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",51,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",51,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",51,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",51,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",51,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",51,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",51,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",51,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",51,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",51,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",51,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",52,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",52,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",52,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",52,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",52,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",52,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",52,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",52,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",52,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",52,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",52,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",53,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",53,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",53,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",53,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",53,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",53,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",53,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",53,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",53,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",53,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",53,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",54,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",54,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",54,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",54,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",54,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",54,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",54,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",54,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",54,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",54,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",54,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",55,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",55,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",55,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",55,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",55,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",55,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",55,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",55,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",55,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",55,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",55,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",56,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",57,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",57,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",57,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",57,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",57,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",57,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",57,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",57,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",57,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",57,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",57,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",58,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",58,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",58,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",58,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",58,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",58,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",58,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",58,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",58,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",58,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",58,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",59,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",59,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",59,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",59,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",59,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",59,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",59,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",59,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",59,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",59,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",59,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",60,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",60,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",60,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",60,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",60,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",60,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",60,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",60,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",60,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",60,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",60,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",61,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",61,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",61,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",61,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",61,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",61,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",61,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",61,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",61,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",61,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",61,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",62,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",62,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",62,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",62,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",62,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",62,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",62,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",62,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",62,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",62,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",62,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",63,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",63,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",63,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",63,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",63,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",63,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",63,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",63,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",63,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",63,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",63,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",64,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",64,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",64,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",64,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",64,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",64,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",64,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",64,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",64,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",64,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",64,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",65,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",65,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",65,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",65,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",65,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",65,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",65,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",65,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",65,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",65,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",65,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",66,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",66,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",66,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",66,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",66,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",66,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",66,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",66,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",66,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",66,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",66,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",67,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",67,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",67,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",67,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",67,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",67,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",67,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",67,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",67,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",67,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",67,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",68,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",69,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",70,\"responsible\",\"username\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":687}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"created_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":698}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"daysAllow\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":708}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"email\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":714}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"enabled\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":722}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"fullName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":734}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"locale\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":741}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"shortName\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":751}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"superAdmin\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":762}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"updated_at\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":773}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"userType\"]},{\"message\":\"Internal server Error\",\"extensions\":{\"category\":\"internal\"},\"locations\":[{\"line\":1,\"column\":782}],\"path\":[\"BusinessMeta\",\"rows\",71,\"responsible\",\"username\"]}],\"data\":{\"BusinessMeta\":{\"meta\":{\"hasNextPage\":false,\"hasPreviousPage\":true,\"limit\":100,\"next\":-1,\"page\":16,\"pages\":16,\"previous\":15,\"total\":1573},\"rows\":[{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2018-10-31 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000726-SC-000904 - PERMANENCIA TEMPORAL POR 1 A\\u00d1O CON CONTRATO DE TRABAJO -SANTIAGO EVARISTO CANTO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000726-SC-000904\",\"finishedDate\":null,\"fixRateValue\":1661.34,\"fix_rate_value\":1661.34,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1123\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000726-SC-000904\",\"processing\":false,\"secondaryExternalCode\":\"799\",\"secondary_external_code\":\"799\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"729\",\"name\":\"JANIKIN\",\"primary_external_code\":\"726\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"11\",\"externalCode\":\"AR21\",\"name\":\"Der. Administrativo\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2018-10-31 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000726-SC-000905 - CEDULA DE EXTRANJERO- SANTIAGO EVARISTO CANTO PACHECO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000726-SC-000905\",\"finishedDate\":null,\"fixRateValue\":257.83,\"fix_rate_value\":257.83,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1124\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000726-SC-000905\",\"processing\":false,\"secondaryExternalCode\":\"800\",\"secondary_external_code\":\"800\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"729\",\"name\":\"JANIKIN\",\"primary_external_code\":\"726\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"11\",\"externalCode\":\"AR21\",\"name\":\"Der. Administrativo\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2018-10-31 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000726-SC-000906 - AUTORIZACION DE CARTA DE INVITACION - JEEFREY PRENDIZ BERNAL\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000726-SC-000906\",\"finishedDate\":null,\"fixRateValue\":323.53,\"fix_rate_value\":323.53,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1125\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000726-SC-000906\",\"processing\":false,\"secondaryExternalCode\":\"801\",\"secondary_external_code\":\"801\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"729\",\"name\":\"JANIKIN\",\"primary_external_code\":\"726\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"11\",\"externalCode\":\"AR21\",\"name\":\"Der. Administrativo\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2018-10-31 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000726-SC-000907 - AUTORIZACI\\u00d3N DE CARTA DE INVITACI\\u00d3N - JANETTE CHIQUINQUIRA PAZ PI\\u00d1A\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000726-SC-000907\",\"finishedDate\":null,\"fixRateValue\":323.53,\"fix_rate_value\":323.53,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1126\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000726-SC-000907\",\"processing\":false,\"secondaryExternalCode\":\"802\",\"secondary_external_code\":\"802\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"729\",\"name\":\"JANIKIN\",\"primary_external_code\":\"726\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"11\",\"externalCode\":\"AR21\",\"name\":\"Der. Administrativo\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2018-10-31 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000726-SC-000908 - PERMANENCIA TEMPORAL POR 1 A\\u00d1O CON CONTRATO EXTRANJERO- JEFFREY PRENDIZ BERNAL\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000726-SC-000908\",\"finishedDate\":null,\"fixRateValue\":1661.34,\"fix_rate_value\":1661.34,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1127\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000726-SC-000908\",\"processing\":false,\"secondaryExternalCode\":\"803\",\"secondary_external_code\":\"803\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"729\",\"name\":\"JANIKIN\",\"primary_external_code\":\"726\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"11\",\"externalCode\":\"AR21\",\"name\":\"Der. Administrativo\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2018-10-31 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000726-SC-000909 - PERMANENCIA TEMPORAL POR 1 A\\u00d1O CON CONTRATO EXTRANJERO -JANETE CHIQUINQUIRA PAZ PI\\u00d1A\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000726-SC-000909\",\"finishedDate\":null,\"fixRateValue\":1661.34,\"fix_rate_value\":1661.34,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1128\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000726-SC-000909\",\"processing\":false,\"secondaryExternalCode\":\"804\",\"secondary_external_code\":\"804\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"729\",\"name\":\"JANIKIN\",\"primary_external_code\":\"726\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"11\",\"externalCode\":\"AR21\",\"name\":\"Der. Administrativo\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2018-10-31 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000726-SC-000910 - REGISTRO DE CARTA DE INVITACION - JUAN FRANCISCO ARIAS RAMIREZ\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000726-SC-000910\",\"finishedDate\":null,\"fixRateValue\":323.53,\"fix_rate_value\":323.53,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1129\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000726-SC-000910\",\"processing\":false,\"secondaryExternalCode\":\"805\",\"secondary_external_code\":\"805\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"729\",\"name\":\"JANIKIN\",\"primary_external_code\":\"726\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"11\",\"externalCode\":\"AR21\",\"name\":\"Der. Administrativo\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2018-10-31 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000726-SC-000911 - VISA DE OBJETO DETERMINADO - ALEX GILBERT ALAIN DENIS\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000726-SC-000911\",\"finishedDate\":null,\"fixRateValue\":555.88,\"fix_rate_value\":555.88,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1130\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000726-SC-000911\",\"processing\":false,\"secondaryExternalCode\":\"806\",\"secondary_external_code\":\"806\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"729\",\"name\":\"JANIKIN\",\"primary_external_code\":\"726\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"11\",\"externalCode\":\"AR21\",\"name\":\"Der. Administrativo\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2018-10-31 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000726-SC-000912 - CEDULA DE EXTRANJERO- JANETTE CHIQUINQUIRA PAZ PI\\u00d1A\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000726-SC-000912\",\"finishedDate\":null,\"fixRateValue\":257.83,\"fix_rate_value\":257.83,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1131\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000726-SC-000912\",\"processing\":false,\"secondaryExternalCode\":\"807\",\"secondary_external_code\":\"807\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"729\",\"name\":\"JANIKIN\",\"primary_external_code\":\"726\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"11\",\"externalCode\":\"AR21\",\"name\":\"Der. Administrativo\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2018-10-31 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000726-SC-000913 - PERMANENCIA TEMPORAL POR UN A\\u00d1O CON CONTRATO EXT.-ALEX GILBERT ALAIN DENIS\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000726-SC-000913\",\"finishedDate\":null,\"fixRateValue\":1661.34,\"fix_rate_value\":1661.34,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1132\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000726-SC-000913\",\"processing\":false,\"secondaryExternalCode\":\"808\",\"secondary_external_code\":\"808\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"729\",\"name\":\"JANIKIN\",\"primary_external_code\":\"726\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"11\",\"externalCode\":\"AR21\",\"name\":\"Der. Administrativo\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2018-10-31 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000726-SC-000914 - PERMANENCIA TEMPORAL POR 1 A\\u00d1O CON CONTRATO DE TRABAJO EXTR.-JUAN FRANCISCO ARIAS RAMIREZ\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000726-SC-000914\",\"finishedDate\":null,\"fixRateValue\":1661.34,\"fix_rate_value\":1661.34,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1133\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000726-SC-000914\",\"processing\":false,\"secondaryExternalCode\":\"809\",\"secondary_external_code\":\"809\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"729\",\"name\":\"JANIKIN\",\"primary_external_code\":\"726\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"11\",\"externalCode\":\"AR21\",\"name\":\"Der. Administrativo\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2018-10-31 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000726-SC-000915 - CEDULA DE EXTRANJERO- NESTOR LUIS AVILA FREITES\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000726-SC-000915\",\"finishedDate\":null,\"fixRateValue\":257.83,\"fix_rate_value\":257.83,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1134\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000726-SC-000915\",\"processing\":false,\"secondaryExternalCode\":\"810\",\"secondary_external_code\":\"810\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"729\",\"name\":\"JANIKIN\",\"primary_external_code\":\"726\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"11\",\"externalCode\":\"AR21\",\"name\":\"Der. Administrativo\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2018-10-31 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000726-SC-000916 - RENOVACION LICENCIA DE CONDUCIR - NESTOR LUIS AVILA FREITES\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000726-SC-000916\",\"finishedDate\":null,\"fixRateValue\":345.41,\"fix_rate_value\":345.41,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1135\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000726-SC-000916\",\"processing\":false,\"secondaryExternalCode\":\"811\",\"secondary_external_code\":\"811\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"729\",\"name\":\"JANIKIN\",\"primary_external_code\":\"726\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"11\",\"externalCode\":\"AR21\",\"name\":\"Der. Administrativo\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2018-10-31 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000726-SC-000917 - CEDULA DE EXTRANJERO- ALEX GILBERT ALAIN DENIS\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000726-SC-000917\",\"finishedDate\":null,\"fixRateValue\":257.83,\"fix_rate_value\":257.83,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1136\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000726-SC-000917\",\"processing\":false,\"secondaryExternalCode\":\"812\",\"secondary_external_code\":\"812\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"729\",\"name\":\"JANIKIN\",\"primary_external_code\":\"726\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"11\",\"externalCode\":\"AR21\",\"name\":\"Der. Administrativo\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2018-10-31 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000726-SC-000918 - PERMANENCIA TEMPORAL POR 1 A\\u00d1O - HARALD TURK\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000726-SC-000918\",\"finishedDate\":null,\"fixRateValue\":1661.34,\"fix_rate_value\":1661.34,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1137\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000726-SC-000918\",\"processing\":false,\"secondaryExternalCode\":\"813\",\"secondary_external_code\":\"813\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"729\",\"name\":\"JANIKIN\",\"primary_external_code\":\"726\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"11\",\"externalCode\":\"AR21\",\"name\":\"Der. Administrativo\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2018-10-31 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000726-SC-000919 - PERMANENCIA TEMPORAL POR 1 A\\u00d1O - SANTIAGO EVARISTO CANTO PACHECO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000726-SC-000919\",\"finishedDate\":null,\"fixRateValue\":1661.34,\"fix_rate_value\":1661.34,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1138\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000726-SC-000919\",\"processing\":false,\"secondaryExternalCode\":\"814\",\"secondary_external_code\":\"814\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"729\",\"name\":\"JANIKIN\",\"primary_external_code\":\"726\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"11\",\"externalCode\":\"AR21\",\"name\":\"Der. Administrativo\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2018-10-31 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000726-SC-000920 - RENOVACION CEDULA DE EXTRANJERO- SANTIAGO EVARISTO CANTO PACHECO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000726-SC-000920\",\"finishedDate\":null,\"fixRateValue\":257.83,\"fix_rate_value\":257.83,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1139\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000726-SC-000920\",\"processing\":false,\"secondaryExternalCode\":\"815\",\"secondary_external_code\":\"815\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"729\",\"name\":\"JANIKIN\",\"primary_external_code\":\"726\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"11\",\"externalCode\":\"AR21\",\"name\":\"Der. Administrativo\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2018-10-31 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000726-SC-000921 - CEDULA DE EXTRANJERO- HARALD TURK\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000726-SC-000921\",\"finishedDate\":null,\"fixRateValue\":257.83,\"fix_rate_value\":257.83,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1140\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000726-SC-000921\",\"processing\":false,\"secondaryExternalCode\":\"816\",\"secondary_external_code\":\"816\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"729\",\"name\":\"JANIKIN\",\"primary_external_code\":\"726\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"11\",\"externalCode\":\"AR21\",\"name\":\"Der. Administrativo\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2018-10-31 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000726-SC-000922 - AUTORIZACI\\u00d3N DE CARTA DE INVITACI\\u00d3N- GASTON MELGRATTI\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000726-SC-000922\",\"finishedDate\":null,\"fixRateValue\":323.53,\"fix_rate_value\":323.53,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1141\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000726-SC-000922\",\"processing\":false,\"secondaryExternalCode\":\"817\",\"secondary_external_code\":\"817\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"729\",\"name\":\"JANIKIN\",\"primary_external_code\":\"726\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"11\",\"externalCode\":\"AR21\",\"name\":\"Der. Administrativo\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2018-10-31 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000726-SC-000923 - AUTORIZACI\\u00d3N REGISTRO DE INVITACI\\u00d3N- DAVID CAMBELL GARCIA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000726-SC-000923\",\"finishedDate\":null,\"fixRateValue\":323.53,\"fix_rate_value\":323.53,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1142\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000726-SC-000923\",\"processing\":false,\"secondaryExternalCode\":\"818\",\"secondary_external_code\":\"818\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"729\",\"name\":\"JANIKIN\",\"primary_external_code\":\"726\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"11\",\"externalCode\":\"AR21\",\"name\":\"Der. Administrativo\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2018-10-31 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000726-SC-000924 - PERMANENCIA TEMPORAL POR 2 A\\u00d1OS CONVENIO BILATERAL-GASTON MELGRATTI\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000726-SC-000924\",\"finishedDate\":null,\"fixRateValue\":831.97,\"fix_rate_value\":831.97,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1143\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000726-SC-000924\",\"processing\":false,\"secondaryExternalCode\":\"819\",\"secondary_external_code\":\"819\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"729\",\"name\":\"JANIKIN\",\"primary_external_code\":\"726\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"11\",\"externalCode\":\"AR21\",\"name\":\"Der. Administrativo\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2018-10-31 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000726-SC-000925 - VISA DE OBJETO DETERMINADO - VINCENZO URSINI\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000726-SC-000925\",\"finishedDate\":null,\"fixRateValue\":555.88,\"fix_rate_value\":555.88,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1144\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000726-SC-000925\",\"processing\":false,\"secondaryExternalCode\":\"820\",\"secondary_external_code\":\"820\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"729\",\"name\":\"JANIKIN\",\"primary_external_code\":\"726\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"11\",\"externalCode\":\"AR21\",\"name\":\"Der. Administrativo\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2018-10-31 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000726-SC-000926 - PERMANENCIA TEMPORAL DE 1 A\\u00d1O- VINCENZO URSINI\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000726-SC-000926\",\"finishedDate\":null,\"fixRateValue\":1661.34,\"fix_rate_value\":1661.34,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1145\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000726-SC-000926\",\"processing\":false,\"secondaryExternalCode\":\"821\",\"secondary_external_code\":\"821\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"729\",\"name\":\"JANIKIN\",\"primary_external_code\":\"726\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"11\",\"externalCode\":\"AR21\",\"name\":\"Der. Administrativo\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2018-10-31 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000726-SC-000927 - CEDULA DE EXTRANJERO- VINCENZO URSINI\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000726-SC-000927\",\"finishedDate\":null,\"fixRateValue\":257.83,\"fix_rate_value\":257.83,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1146\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000726-SC-000927\",\"processing\":false,\"secondaryExternalCode\":\"822\",\"secondary_external_code\":\"822\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"729\",\"name\":\"JANIKIN\",\"primary_external_code\":\"726\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"11\",\"externalCode\":\"AR21\",\"name\":\"Der. Administrativo\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2018-10-31 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000726-SC-000928 - CEDULA DE EXTRANJERO- GASTON ALEJANDRO MELGRATTI\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000726-SC-000928\",\"finishedDate\":null,\"fixRateValue\":257.83,\"fix_rate_value\":257.83,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1147\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000726-SC-000928\",\"processing\":false,\"secondaryExternalCode\":\"823\",\"secondary_external_code\":\"823\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"729\",\"name\":\"JANIKIN\",\"primary_external_code\":\"726\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"11\",\"externalCode\":\"AR21\",\"name\":\"Der. Administrativo\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2018-10-31 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000726-SC-000929 - LICENCIA DE CONDUCIR PRIMERA VEZ- SANTIAGO EVARISTO CANTO PACHECO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000726-SC-000929\",\"finishedDate\":null,\"fixRateValue\":698.47,\"fix_rate_value\":698.47,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1148\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000726-SC-000929\",\"processing\":false,\"secondaryExternalCode\":\"824\",\"secondary_external_code\":\"824\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"729\",\"name\":\"JANIKIN\",\"primary_external_code\":\"726\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"11\",\"externalCode\":\"AR21\",\"name\":\"Der. Administrativo\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2023-12-28 00:00:00\",\"confidential\":false,\"created_at\":\"2018-10-31 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000726-SC-000930 - LICENCIA DE CONDUCIR POR PRIMERA VEZ- HARALD TURK\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000726-SC-000930\",\"finishedDate\":null,\"fixRateValue\":698.47,\"fix_rate_value\":698.47,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1149\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000726-SC-000930\",\"processing\":false,\"secondaryExternalCode\":\"825\",\"secondary_external_code\":\"825\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"729\",\"name\":\"JANIKIN\",\"primary_external_code\":\"726\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"11\",\"externalCode\":\"AR21\",\"name\":\"Der. Administrativo\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2018-12-10 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000726-SC-000931 - RENOVACI\\u00d3N C\\u00c9DULA DE EXTRANJERO - NESTOR AVILA FREITES\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000726-SC-000931\",\"finishedDate\":null,\"fixRateValue\":257.61,\"fix_rate_value\":257.61,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1150\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1.794,47.- INCLUYEN GASTOS E IMPUESTOS DE LEY. NOTA.- ESTE CLIENTE ES DEL EXTRANJERO\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000726-SC-000931\",\"processing\":false,\"secondaryExternalCode\":\"941\",\"secondary_external_code\":\"941\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 16:48:53\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"729\",\"name\":\"JANIKIN\",\"primary_external_code\":\"726\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2018-12-10 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000726-SC-000932 - RENOVACI\\u00d3N LICENCIA DE CONDUCIR CATEGOR\\u00cdA P -\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000726-SC-000932\",\"finishedDate\":null,\"fixRateValue\":345.4,\"fix_rate_value\":345.4,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1151\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 2.404,04.- INCLUYEN GASTOS E IMPUESTOS DE LEY. NOTA- ESTE CLIENTE ES DEL EXTRANJERO\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000726-SC-000932\",\"processing\":false,\"secondaryExternalCode\":\"942\",\"secondary_external_code\":\"942\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 16:49:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"729\",\"name\":\"JANIKIN\",\"primary_external_code\":\"726\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2018-12-10 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000726-SC-000933 - RENOVACI\\u00d3N C\\u00c9DULA DE EXTRANJERO - ALEX GILBERT ALAIN DENIS\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000726-SC-000933\",\"finishedDate\":null,\"fixRateValue\":257.75,\"fix_rate_value\":257.75,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1152\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1.794,47.- INCLUYEN GASTOS E IMPUESTOS DE LEY\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000726-SC-000933\",\"processing\":false,\"secondaryExternalCode\":\"947\",\"secondary_external_code\":\"947\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 16:59:29\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"729\",\"name\":\"JANIKIN\",\"primary_external_code\":\"726\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2019-01-16 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000726-SC-000934 - AUTORIZACI\\u00d3N DE CARTA DE INVITACI\\u00d3N - KYLE WILLIAM KNOX\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000726-SC-000934\",\"finishedDate\":null,\"fixRateValue\":323.41,\"fix_rate_value\":323.41,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1153\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 2.251,75.- INCLUYEN GASTOS E IMPUESTOS DE LEY. NOTA: ESTE CLIENTE ES DEL EXTRANJERO\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000726-SC-000934\",\"processing\":false,\"secondaryExternalCode\":\"1106\",\"secondary_external_code\":\"1106\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 18:52:49\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"729\",\"name\":\"JANIKIN\",\"primary_external_code\":\"726\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2019-03-26 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000726-SC-000935 - RENOVACI\\u00d3N PERMANENCIA TEMPORAL DE 1 A\\u00d1O SIN CONTRATO EXTRANJERO - HARALD TURK\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000726-SC-000935\",\"finishedDate\":null,\"fixRateValue\":1306.75,\"fix_rate_value\":1306.75,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1154\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 9.095,49.- INCLUYEN GASTOS E IMPUESTOS DE LEY. ESTE ES UN CLIENTE DEL ESTRANJERO\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000726-SC-000935\",\"processing\":false,\"secondaryExternalCode\":\"1262\",\"secondary_external_code\":\"1262\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 18:53:25\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"729\",\"name\":\"JANIKIN\",\"primary_external_code\":\"726\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2019-03-26 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000726-SC-000936 - PERMANENCIA POR UN A\\u00d1O SIN CONTRATO EXTRANJERO- KYLE WILLIAM KNOX\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000726-SC-000936\",\"finishedDate\":null,\"fixRateValue\":1306.75,\"fix_rate_value\":1306.75,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1155\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 9.095,49.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000726-SC-000936\",\"processing\":false,\"secondaryExternalCode\":\"1264\",\"secondary_external_code\":\"1264\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 18:54:06\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"729\",\"name\":\"JANIKIN\",\"primary_external_code\":\"726\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2019-04-03 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000726-SC-000937 - CEDULA DE EXTRANJERO - KYLE WILLIAM KNOX\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000726-SC-000937\",\"finishedDate\":null,\"fixRateValue\":1794,\"fix_rate_value\":1794,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1156\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1794,47.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000726-SC-000937\",\"processing\":false,\"secondaryExternalCode\":\"1279\",\"secondary_external_code\":\"1279\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"729\",\"name\":\"JANIKIN\",\"primary_external_code\":\"726\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2019-04-04 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000726-SC-000938 - PERMANENCIA POR UN A\\u00d1O SIN CONTRATO EXTRANJERO- SANTIAGO EVARISTO CANTO PACHECO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000726-SC-000938\",\"finishedDate\":null,\"fixRateValue\":1306.75,\"fix_rate_value\":1306.75,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1157\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 9.095,49.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000726-SC-000938\",\"processing\":false,\"secondaryExternalCode\":\"1287\",\"secondary_external_code\":\"1287\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 19:01:25\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"729\",\"name\":\"JANIKIN\",\"primary_external_code\":\"726\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2019-05-30 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000726-SC-000940 - RENOVACI\\u00d3N C\\u00c9DULA DE EXTRANJERO- SANTIAGO CANTO PACHECO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000726-SC-000940\",\"finishedDate\":null,\"fixRateValue\":257.76,\"fix_rate_value\":257.76,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1159\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1794.- INCLUYEN GASTOS E IMPUESTOS DE LEY. ESTE ES UN CLIENTE DEL EXTRANJERO.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000726-SC-000940\",\"processing\":false,\"secondaryExternalCode\":\"1411\",\"secondary_external_code\":\"1411\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 19:02:04\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"729\",\"name\":\"JANIKIN\",\"primary_external_code\":\"726\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2019-05-30 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000726-SC-000941 - RENOVACION CEDULA DE EXTRANJERO- HARALD TURK\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000726-SC-000941\",\"finishedDate\":null,\"fixRateValue\":257.76,\"fix_rate_value\":257.76,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1160\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1.794,47.- INCLUYEN GASTOS E IMPUESTOS DE LEY. ESTE ES UN CLIENTE DEL EXTRANJERO.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000726-SC-000941\",\"processing\":false,\"secondaryExternalCode\":\"1412\",\"secondary_external_code\":\"1412\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 19:22:26\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"729\",\"name\":\"JANIKIN\",\"primary_external_code\":\"726\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2019-05-30 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000726-SC-000942 - RENOVACION LICENCIA DE CONDUCIR - HARALD TURK\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000726-SC-000942\",\"finishedDate\":null,\"fixRateValue\":345.4,\"fix_rate_value\":345.4,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1161\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 2.404,04.- INCLUYEN GASTOS E IMPUESTOS DE LEY. NOTA: ES CLIENTE DEL EXTRANJERO.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000726-SC-000942\",\"processing\":false,\"secondaryExternalCode\":\"1413\",\"secondary_external_code\":\"1413\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 19:33:57\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"729\",\"name\":\"JANIKIN\",\"primary_external_code\":\"726\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2019-05-30 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000726-SC-000943 - RENOVACI\\u00d3N LICENCIA DE CONDUCIR - SANTIAGO EVARISTO CANTO PACHECO\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000726-SC-000943\",\"finishedDate\":null,\"fixRateValue\":345.4,\"fix_rate_value\":345.4,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1162\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 2.404,04.- INCLUYEN GASTOS E IMPUESTOS DE LEY. NOTA: ES CLIENTE DEL EXTRANJERO.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000726-SC-000943\",\"processing\":false,\"secondaryExternalCode\":\"1414\",\"secondary_external_code\":\"1414\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 19:55:58\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"729\",\"name\":\"JANIKIN\",\"primary_external_code\":\"726\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2019-08-14 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000726-SC-000944 - PERMANENCIA POR UN A\\u00d1O SIN CONTRATO EXTRANJERO- VICENZO URSINI\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000726-SC-000944\",\"finishedDate\":null,\"fixRateValue\":1306.75,\"fix_rate_value\":1306.75,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1163\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE 9.095, 49.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000726-SC-000944\",\"processing\":false,\"secondaryExternalCode\":\"1575\",\"secondary_external_code\":\"1575\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 19:59:47\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"729\",\"name\":\"JANIKIN\",\"primary_external_code\":\"726\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2019-08-14 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000726-SC-000945 - RENOVACION CEDULA DE EXTRANJERO- VICENZO URSINI\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000726-SC-000945\",\"finishedDate\":null,\"fixRateValue\":257.75,\"fix_rate_value\":257.75,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1164\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1.794,47.- iNCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000726-SC-000945\",\"processing\":false,\"secondaryExternalCode\":\"1576\",\"secondary_external_code\":\"1576\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 20:01:13\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"729\",\"name\":\"JANIKIN\",\"primary_external_code\":\"726\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2020-01-15 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000726-SC-000946 - PERMANENCIA TRANSITORIA POR TRABAJO 180 D\\u00cdAS - ALEX GILBERT A. DENIS\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000726-SC-000946\",\"finishedDate\":null,\"fixRateValue\":821.12,\"fix_rate_value\":821.12,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1165\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 5.715,8.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000726-SC-000946\",\"processing\":false,\"secondaryExternalCode\":\"1870\",\"secondary_external_code\":\"1870\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 20:02:23\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"729\",\"name\":\"JANIKIN\",\"primary_external_code\":\"726\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2020-01-15 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000726-SC-000947 - PERMANENCIA TRANSITORIA 180 D\\u00cdAS - JUAN FRANCISCO ARIAS RAMIREZ\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000726-SC-000947\",\"finishedDate\":null,\"fixRateValue\":821.12,\"fix_rate_value\":821.12,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1166\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 5.715,8.- INCLUYEN GASTOS E IMPUESTOS DE LEY. ESTE CLIENTE ES DEL EXTRANJERO CANCELA DESDE AFUERA DE BOLIVIA.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000726-SC-000947\",\"processing\":false,\"secondaryExternalCode\":\"1871\",\"secondary_external_code\":\"1871\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 20:03:02\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"729\",\"name\":\"JANIKIN\",\"primary_external_code\":\"726\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2020-02-18 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000726-SC-000948 - PERMANENCIA TEMPORAL DE 1 A\\u00d1O SIN CONTRATO EXTRANJERO - KYLE WILLIAM KNOX\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000726-SC-000948\",\"finishedDate\":null,\"fixRateValue\":1356.89,\"fix_rate_value\":1356.89,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1167\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 9.444,15.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000726-SC-000948\",\"processing\":false,\"secondaryExternalCode\":\"1953\",\"secondary_external_code\":\"1953\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 20:03:43\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"729\",\"name\":\"JANIKIN\",\"primary_external_code\":\"726\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2020-07-15 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000726-SC-000949 - PERMANENCIA POR UN A\\u00d1O SIN CONTRATO EXTRANJERO- JUAN FRANCISCO ARIAS RAMIREZ\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000726-SC-000949\",\"finishedDate\":null,\"fixRateValue\":1306.75,\"fix_rate_value\":1306.75,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1168\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 9.095,49.- INCLUYE GASTOS E IMPUESTOS DE LEY. ESTE CLIENTE ES DEL EXTRANJERO INGLATERRA CREAR COMO \\u0022BKP\\u0022\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000726-SC-000949\",\"processing\":false,\"secondaryExternalCode\":\"2174\",\"secondary_external_code\":\"2174\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 20:07:53\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"729\",\"name\":\"JANIKIN\",\"primary_external_code\":\"726\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2020-07-15 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000726-SC-000950 - PERMANENCIA POR UN A\\u00d1O SIN CONTRATO EXTRANJERO- ALEX GILBERT ALAIN DENIS\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000726-SC-000950\",\"finishedDate\":null,\"fixRateValue\":1306.75,\"fix_rate_value\":1306.75,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1169\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 9.095,49.- INCLUYEN GASTOS E IMPUESTOS DE LEY. ESTE CLIENTE ES DEL EXTRANJERO INGLATERRA - CREAR COMO \\u0022BKP\\u0022\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000726-SC-000950\",\"processing\":false,\"secondaryExternalCode\":\"2175\",\"secondary_external_code\":\"2175\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 20:08:31\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"729\",\"name\":\"JANIKIN\",\"primary_external_code\":\"726\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2020-07-15 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000726-SC-000951 - RENOVACI\\u00d3N PERMANENCIA TEMPORAL DE 1 A\\u00d1O SIN CONTRATO EXTRANJERO - HARALD TURK\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000726-SC-000951\",\"finishedDate\":null,\"fixRateValue\":1306.75,\"fix_rate_value\":1306.75,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1170\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 9.095,49.- INCLUYEN GASTOS E IMPUESTOS DE LEY. ESTE CLIENTE ES DEL EXTRANJERO INGLATERRA CREAR COMO \\u0022BKP\\u0022\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000726-SC-000951\",\"processing\":false,\"secondaryExternalCode\":\"2176\",\"secondary_external_code\":\"2176\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 20:12:57\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"729\",\"name\":\"JANIKIN\",\"primary_external_code\":\"726\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2020-07-15 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000726-SC-000952 - PERMANENCIA TEMPORAL POR 2 A\\u00d1OS CONVENIO BILATERAL-GASTON ALEJANDRO MELGRATTI\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000726-SC-000952\",\"finishedDate\":null,\"fixRateValue\":831.9,\"fix_rate_value\":831.9,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1171\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 5.790,49.- INCLUYEN GASTOS E IMPUESTOS DE LEY. ESTE CLIENTE ES DEL EXTRANJERO INGLATERRA CREAR COMO \\u0022BKP\\u0022\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000726-SC-000952\",\"processing\":false,\"secondaryExternalCode\":\"2177\",\"secondary_external_code\":\"2177\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 20:13:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"729\",\"name\":\"JANIKIN\",\"primary_external_code\":\"726\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2020-08-24 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000726-SC-000953 - RENOV. C\\u00c9DULA DE EXTRANJERO - ALEX GILBERT ALAIN DENIS\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000726-SC-000953\",\"finishedDate\":null,\"fixRateValue\":257.76,\"fix_rate_value\":257.76,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1172\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1.794,47.- INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000726-SC-000953\",\"processing\":false,\"secondaryExternalCode\":\"2226\",\"secondary_external_code\":\"2226\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 20:14:27\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"729\",\"name\":\"JANIKIN\",\"primary_external_code\":\"726\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2020-08-24 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000726-SC-000954 - RENOV. C\\u00c9DULA DE EXTRANJERO - GASTON ALEJANDRO MELGRATTI\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000726-SC-000954\",\"finishedDate\":null,\"fixRateValue\":257.75,\"fix_rate_value\":257.75,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1173\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1.794,47.- INCLUYEN GASTOS E IMPUESTOS DE LEY. JANIKIN ES CLIENTE DEL EXTRANJERO\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000726-SC-000954\",\"processing\":false,\"secondaryExternalCode\":\"2227\",\"secondary_external_code\":\"2227\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 20:16:56\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"729\",\"name\":\"JANIKIN\",\"primary_external_code\":\"726\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2020-08-24 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000726-SC-000955 - RENOV. C\\u00c9DULA DE EXTRANJERO - JUAN FRANCISCO ARIAS RAMIREZ\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000726-SC-000955\",\"finishedDate\":null,\"fixRateValue\":257.76,\"fix_rate_value\":257.76,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1174\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1.794,47.- INCLUYEN GASTOS E IMPUESTOS DE LEY. JANIKIN ES CLIENTE DEL EXTRANJERO\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000726-SC-000955\",\"processing\":false,\"secondaryExternalCode\":\"2228\",\"secondary_external_code\":\"2228\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 20:17:35\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"729\",\"name\":\"JANIKIN\",\"primary_external_code\":\"726\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2020-12-23 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000726-SC-000956 - RENOVACI\\u00d3N C\\u00c9DULA DE EXTRANJERO 2020 - HARALD TURK\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000726-SC-000956\",\"finishedDate\":null,\"fixRateValue\":257.76,\"fix_rate_value\":257.76,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1175\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1.794,47.- INCLUYE GASTOS E IMPUESTOS DE LEY\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000726-SC-000956\",\"processing\":false,\"secondaryExternalCode\":\"2422\",\"secondary_external_code\":\"2422\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 20:18:17\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"729\",\"name\":\"JANIKIN\",\"primary_external_code\":\"726\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2020-12-27 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000726-SC-000957 - RENOVACI\\u00d3N LICENCIA DE CONDUCIR 2020 - HARALD TURK\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000726-SC-000957\",\"finishedDate\":null,\"fixRateValue\":345.4,\"fix_rate_value\":345.4,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1176\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 2.404,04.- INCLUYEN GASTOS E IMPUESTOS DE LEY. NOTA: JANIKIN ES DEL EXTRANJERO\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000726-SC-000957\",\"processing\":false,\"secondaryExternalCode\":\"2426\",\"secondary_external_code\":\"2426\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 20:18:50\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"729\",\"name\":\"JANIKIN\",\"primary_external_code\":\"726\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2021-08-10 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000726-SC-000958 - PERMANENCIA TEMPORAL DE 1 A\\u00d1O SIN CONTRATO EXTRANJERO - ALEXIS GILBERT A. DENIS\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000726-SC-000958\",\"finishedDate\":null,\"fixRateValue\":1356.9,\"fix_rate_value\":1356.9,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1177\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HORARIOS DE BS.9444.15 INCLUYES GASTOS E IMPUESTOS DE LEY\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000726-SC-000958\",\"processing\":false,\"secondaryExternalCode\":\"2869\",\"secondary_external_code\":\"2869\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 20:19:41\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"729\",\"name\":\"JANIKIN\",\"primary_external_code\":\"726\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2021-08-10 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000726-SC-000959 - PERMANENCIA INDEFINIDA - HARALD TURK\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000726-SC-000959\",\"finishedDate\":null,\"fixRateValue\":2255.89,\"fix_rate_value\":2255.89,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1178\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 15701.94 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000726-SC-000959\",\"processing\":false,\"secondaryExternalCode\":\"2870\",\"secondary_external_code\":\"2870\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 20:20:24\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"729\",\"name\":\"JANIKIN\",\"primary_external_code\":\"726\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2021-08-10 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000726-SC-000960 - PERMANENCIA TEMPORAL POR 1 A\\u00d1O - JUAN FRANCISCO ARIAS RAMIREZ\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000726-SC-000960\",\"finishedDate\":null,\"fixRateValue\":1356.89,\"fix_rate_value\":1356.89,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1179\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS BS. 9444.15 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000726-SC-000960\",\"processing\":false,\"secondaryExternalCode\":\"2871\",\"secondary_external_code\":\"2871\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 20:20:59\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"729\",\"name\":\"JANIKIN\",\"primary_external_code\":\"726\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2021-10-01 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000726-SC-000961 - CEDULA DE EXTRANJERO - HARALD TURK\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000726-SC-000961\",\"finishedDate\":null,\"fixRateValue\":257.76,\"fix_rate_value\":257.76,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1180\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 1794.47 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000726-SC-000961\",\"processing\":false,\"secondaryExternalCode\":\"2945\",\"secondary_external_code\":\"2945\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 20:21:37\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"729\",\"name\":\"JANIKIN\",\"primary_external_code\":\"726\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2021-10-01 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000726-SC-000962 - RENOVACION DE LICENCIA DE CONDUCIR - HARALD TURK\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000726-SC-000962\",\"finishedDate\":null,\"fixRateValue\":345.4,\"fix_rate_value\":345.4,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1181\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 2404.04 INCLUYEN GASTOS E IMPUESTOS DE LEY\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000726-SC-000962\",\"processing\":false,\"secondaryExternalCode\":\"2946\",\"secondary_external_code\":\"2946\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 20:22:42\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"729\",\"name\":\"JANIKIN\",\"primary_external_code\":\"726\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2022-08-17 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000726-SC-000963 - VISA TRANSITORIA POR TRABAJO 30 DIAS AEROPUERTO - GRZEGORZ DARIUSZ KSIAZEK\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000726-SC-000963\",\"finishedDate\":null,\"fixRateValue\":332.47,\"fix_rate_value\":332.47,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1182\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LO HONORARIOS DE BS. 2314.49 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000726-SC-000963\",\"processing\":false,\"secondaryExternalCode\":\"200030\",\"secondary_external_code\":\"200030\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 20:23:19\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"729\",\"name\":\"JANIKIN\",\"primary_external_code\":\"726\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2022-08-17 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000726-SC-000964 - VISA TRANSITORIA DE 30 DIAS POR TRABAJO - LESLIE CHARLES\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000726-SC-000964\",\"finishedDate\":null,\"fixRateValue\":583.33,\"fix_rate_value\":583.33,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1183\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE BS. 4060.71 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000726-SC-000964\",\"processing\":false,\"secondaryExternalCode\":\"200031\",\"secondary_external_code\":\"200031\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 20:23:56\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"729\",\"name\":\"JANIKIN\",\"primary_external_code\":\"726\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-03-21 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000202-SC-000731 - SEGUNDA VISA DE OBJETO DETERMINADO 30 D\\u00cdAS AEROPUERTO - JULIO SOUSA SILVA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000202-SC-000731\",\"finishedDate\":null,\"fixRateValue\":330,\"fix_rate_value\":330,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1896\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 330 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000202-SC-000731\",\"processing\":false,\"secondaryExternalCode\":\"4029\",\"secondary_external_code\":\"4029\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"629\",\"name\":\"Wartsila Argentina S.A.\",\"primary_external_code\":\"202\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-03-21 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000202-SC-000732 - SEGUNDA VISA DE OBJETO DETERMINADO 30 D\\u00cdAS AEROPUERTO - VANDERSON LOPES DA SILVA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000202-SC-000732\",\"finishedDate\":null,\"fixRateValue\":330,\"fix_rate_value\":330,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1897\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 330 INCLUYEN GASTO E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000202-SC-000732\",\"processing\":false,\"secondaryExternalCode\":\"4031\",\"secondary_external_code\":\"4031\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"629\",\"name\":\"Wartsila Argentina S.A.\",\"primary_external_code\":\"202\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-02-28 00:00:00\",\"confidential\":false,\"created_at\":\"2023-03-21 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000202-SC-000733 - VISA DE OBJETO DETERMINADO 30 D\\u00cdAS AEROPUERTO - ODAILSON DUTRA\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000202-SC-000733\",\"finishedDate\":null,\"fixRateValue\":330,\"fix_rate_value\":330,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"1898\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 330 INCLUYEN GASTOS E IMPUESTOS DE LEY.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000202-SC-000733\",\"processing\":false,\"secondaryExternalCode\":\"4032\",\"secondary_external_code\":\"4032\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-05 23:17:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"629\",\"name\":\"Wartsila Argentina S.A.\",\"primary_external_code\":\"202\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2023-12-08 05:00:00\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000192-SC-000764 - PERMANENCIA DE DOS A\\u00d1OS CONVENIO BILATERAL - Liliana Gabriela Leguizamon\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000192-SC-000764\",\"finishedDate\":null,\"fixRateValue\":1540.95,\"fix_rate_value\":1540.95,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2220\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Los honorarios de bs. 10725,29 incluyen gastos e impuestos de ley.\",\"partialCharges\":1,\"partial_charges\":1,\"primary_external_code\":\"000192-SC-000764\",\"processing\":false,\"secondaryExternalCode\":\"4648\",\"secondary_external_code\":\"4648\",\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 21:57:01\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"600\",\"name\":\"Total Energies EP Bolivie Sucursal Bolivia\",\"primary_external_code\":\"192\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-05 19:10:14\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000192-SC-000770 - Permanencia temporal de 1 a\\u00f1o por trabajo - KARINA NATALIE ORSKI EP PAMBOU\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000192-SC-000770\",\"finishedDate\":null,\"fixRateValue\":941.44,\"fix_rate_value\":941.44,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2315\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000192-SC-000770\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 21:57:31\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"600\",\"name\":\"Total Energies EP Bolivie Sucursal Bolivia\",\"primary_external_code\":\"192\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-02-19 22:56:02\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000192-SC-000771 - Carnet para Extranjero - KARINE NATALIE ORSKI EP PAMBOU\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000192-SC-000771\",\"finishedDate\":null,\"fixRateValue\":275.75,\"fix_rate_value\":275.75,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2338\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000192-SC-000771\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 21:58:01\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"600\",\"name\":\"Total Energies EP Bolivie Sucursal Bolivia\",\"primary_external_code\":\"192\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-12 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-04 15:42:22\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000192-SC-000965 - PERNANENCIA TRANSITORIA POR TRABAJO 30 DIAS AEROPUERTO - CHRISTINI GASTINEL\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000192-SC-000965\",\"finishedDate\":null,\"fixRateValue\":332.14,\"fix_rate_value\":332.14,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2620\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Incluyen gastos e impuestos de ley. Factura 100% al final\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000192-SC-000965\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-12 21:59:36\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"600\",\"name\":\"Total Energies EP Bolivie Sucursal Bolivia\",\"primary_external_code\":\"192\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-14 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-14 21:10:54\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000192-SC-000966 - Permanencia Temporal 1 a\\u00f1o familia - PASCAL PAUL TALIANE PAMBOU ORSKI\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000192-SC-000966\",\"finishedDate\":null,\"fixRateValue\":1035.47,\"fix_rate_value\":1035.47,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2696\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"100% Final\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000192-SC-000966\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-14 16:10:55\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"600\",\"name\":\"Total Energies EP Bolivie Sucursal Bolivia\",\"primary_external_code\":\"192\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-14 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-14 21:12:54\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000192-SC-000967 - Permanencia temporal 1 a\\u00f1o familia - HUGUES ANDOCHE PAMBOU\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000192-SC-000967\",\"finishedDate\":null,\"fixRateValue\":1035.47,\"fix_rate_value\":1035.47,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2697\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"100% Final\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000192-SC-000967\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-14 16:12:55\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"600\",\"name\":\"Total Energies EP Bolivie Sucursal Bolivia\",\"primary_external_code\":\"192\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-18 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-18 15:10:44\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000192-SC-000968 - Licencia de Conducir - NATALIE KARINE ORSKI EP PAMBOU\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000192-SC-000968\",\"finishedDate\":null,\"fixRateValue\":589.69,\"fix_rate_value\":589.69,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2711\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 589.69 INCLUYEN GASTOS E IMPUESTOS DE LEY. 100% Final\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000192-SC-000968\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-18 10:10:45\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"600\",\"name\":\"Total Energies EP Bolivie Sucursal Bolivia\",\"primary_external_code\":\"192\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-27 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-27 20:27:09\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000192-SC-000969 - CEDULA PARA EXTRANJERO - HUGUES ANDOCHE PAMBOU\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000192-SC-000969\",\"finishedDate\":null,\"fixRateValue\":276,\"fix_rate_value\":276,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2763\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 276 INCLUYEN GASTOS E IMPUESTOS DE LEY\\/ 100% Final\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000192-SC-000969\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-27 15:27:09\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"600\",\"name\":\"Total Energies EP Bolivie Sucursal Bolivia\",\"primary_external_code\":\"192\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-03-27 00:00:00\",\"confidential\":false,\"created_at\":\"2024-03-27 20:35:39\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000192-SC-000970 - CEDULA PARA EXTRANJERO - PASCAL PAUL TALIANE PAMBOU ORSKI\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000192-SC-000970\",\"finishedDate\":null,\"fixRateValue\":276,\"fix_rate_value\":276,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2764\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"LOS HONORARIOS DE USD. 276 INCLUYEN GASTOS E IMPUESTOS DE LEY \\/ 100% Final\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000192-SC-000970\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-03-27 15:35:39\",\"withIVA\":true,\"responsible\":{\"created_at\":null,\"daysAllow\":null,\"email\":null,\"enabled\":null,\"fullName\":null,\"id\":26,\"locale\":null,\"shortName\":null,\"superAdmin\":null,\"updated_at\":null,\"userType\":null,\"username\":null},\"customer\":{\"id\":\"600\",\"name\":\"Total Energies EP Bolivie Sucursal Bolivia\",\"primary_external_code\":\"192\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"18\",\"externalCode\":\"AR06\",\"name\":\"Der. Migratorio\\n\"}},{\"apply_procedures\":null,\"billable\":0,\"business_customer_code\":null,\"caseNumber\":null,\"closed_date\":\"2024-05-10 00:00:00\",\"confidential\":false,\"created_at\":\"2024-05-10 20:21:32\",\"discountAmount\":null,\"discountPercent\":null,\"displayName\":\"000984-RE-000687 - Test Any prueba\",\"enableBusinessAllowedUsers\":0,\"expedient\":\"000984-RE-000687\",\"finishedDate\":null,\"fixRateValue\":0,\"fix_rate_value\":0,\"hourLimit\":null,\"hour_limit\":null,\"id\":\"2842\",\"internal_code\":null,\"isBillable\":true,\"limitAlert\":null,\"notes\":\"Gastos reembolsables *\",\"partialCharges\":0,\"partial_charges\":0,\"primary_external_code\":\"000984-RE-000687\",\"processing\":false,\"secondaryExternalCode\":null,\"secondary_external_code\":null,\"status\":1,\"statusMarking\":\"active\",\"updated_at\":\"2024-05-10 20:24:36\",\"withIVA\":true,\"responsible\":{\"created_at\":\"2012-05-08 14:49:53\",\"daysAllow\":302,\"email\":\"ihurtado@emba.com\",\"enabled\":true,\"fullName\":\"Ingrid Hurtado\",\"id\":1,\"locale\":\"es\",\"shortName\":\"ihurtado\",\"superAdmin\":true,\"updated_at\":\"2024-09-02 16:33:04\",\"userType\":0,\"username\":\"ihurtado@emba.com\"},\"customer\":{\"id\":\"882\",\"name\":\"MDAVILA\",\"primary_external_code\":\"984\",\"company\":{\"id\":\"4\",\"name\":\"ESTUDIO MORENO BALDIVIESO ABOGADOS SOCIEDAD CIVIL\"}},\"practiceArea\":{\"id\":\"1\",\"externalCode\":\"AR07\",\"name\":\"Agronegocios\"}}]}}}\n","time":"2025-07-30T10:51:14-04:00"} +{"file":"fetcher.go:69","func":"sync.SyncData","level":"info","msg":"[🧩 Job: sync_graphql] Cantidad de elementos: 1573","time":"2025-07-30T10:51:15-04:00"} +{"file":"operaciones.go:25","func":"db.(*GormDatabase).SyncRows","level":"info","msg":"[🧹 Tabla: public.sync_proyectos] ✅ Inicializacion Syncing data...","time":"2025-07-30T10:51:15-04:00"} +{"file":"operaciones.go:51","func":"db.(*GormDatabase).SyncRows","level":"debug","msg":"[🧹 Tabla: public.sync_proyectos] Procesando batch de 100 registros","time":"2025-07-30T10:51:15-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 890, 000599-RE-000104","time":"2025-07-30T10:51:15-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 891, 000599-RE-000105","time":"2025-07-30T10:51:15-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 892, 000599-RE-000106","time":"2025-07-30T10:51:15-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 893, 000599-RE-000107","time":"2025-07-30T10:51:15-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 894, 000599-RE-000108","time":"2025-07-30T10:51:15-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2475, 000599-RE-000421","time":"2025-07-30T10:51:15-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2476, 000599-RE-000422","time":"2025-07-30T10:51:15-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2477, 000599-RE-000423","time":"2025-07-30T10:51:15-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2478, 000599-RE-000424","time":"2025-07-30T10:51:16-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2479, 000599-RE-000425","time":"2025-07-30T10:51:16-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2480, 000599-RE-000426","time":"2025-07-30T10:51:16-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2481, 000599-RE-000427","time":"2025-07-30T10:51:16-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000599-RE-000428, 2482","time":"2025-07-30T10:51:16-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000599-RE-000429, 2483","time":"2025-07-30T10:51:16-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2484, 000599-RE-000430","time":"2025-07-30T10:51:16-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2485, 000599-RE-000431","time":"2025-07-30T10:51:16-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2486, 000599-RE-000432","time":"2025-07-30T10:51:16-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2487, 000599-RE-000433","time":"2025-07-30T10:51:16-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2488, 000599-RE-000434","time":"2025-07-30T10:51:16-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000599-RE-000435, 2489","time":"2025-07-30T10:51:16-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2490, 000599-RE-000436","time":"2025-07-30T10:51:17-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2491, 000599-RE-000437","time":"2025-07-30T10:51:17-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2492, 000599-RE-000438","time":"2025-07-30T10:51:17-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2493, 000599-RE-000439","time":"2025-07-30T10:51:17-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2494, 000599-RE-000440","time":"2025-07-30T10:51:17-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2495, 000599-RE-000441","time":"2025-07-30T10:51:17-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2496, 000599-RE-000442","time":"2025-07-30T10:51:17-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2497, 000599-RE-000443","time":"2025-07-30T10:51:17-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2498, 000599-RE-000444","time":"2025-07-30T10:51:17-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2499, 000599-RE-000445","time":"2025-07-30T10:51:17-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2500, 000599-RE-000446","time":"2025-07-30T10:51:17-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2501, 000599-RE-000447","time":"2025-07-30T10:51:17-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2502, 000599-RE-000448","time":"2025-07-30T10:51:17-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2503, 000599-RE-000449","time":"2025-07-30T10:51:17-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2504, 000599-RE-000450","time":"2025-07-30T10:51:18-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2505, 000599-RE-000451","time":"2025-07-30T10:51:18-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2506, 000599-RE-000452","time":"2025-07-30T10:51:18-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2507, 000599-RE-000453","time":"2025-07-30T10:51:18-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2508, 000599-RE-000454","time":"2025-07-30T10:51:18-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2509, 000599-RE-000455","time":"2025-07-30T10:51:18-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2510, 000599-RE-000456","time":"2025-07-30T10:51:18-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2511, 000599-RE-000457","time":"2025-07-30T10:51:18-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2512, 000599-RE-000458","time":"2025-07-30T10:51:18-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2513, 000599-RE-000459","time":"2025-07-30T10:51:18-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2514, 000599-RE-000460","time":"2025-07-30T10:51:18-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000599-RE-000461, 2515","time":"2025-07-30T10:51:19-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2516, 000599-RE-000462","time":"2025-07-30T10:51:19-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2517, 000599-RE-000463","time":"2025-07-30T10:51:19-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000599-RE-000464, 2518","time":"2025-07-30T10:51:19-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2519, 000599-RE-000465","time":"2025-07-30T10:51:19-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2520, 000599-RE-000466","time":"2025-07-30T10:51:19-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2521, 000599-RE-000467","time":"2025-07-30T10:51:19-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2522, 000599-RE-000468","time":"2025-07-30T10:51:19-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2523, 000599-RE-000469","time":"2025-07-30T10:51:19-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2524, 000599-RE-000470","time":"2025-07-30T10:51:19-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2525, 000599-RE-000471","time":"2025-07-30T10:51:20-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2526, 000599-RE-000472","time":"2025-07-30T10:51:20-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000599-RE-000473, 2527","time":"2025-07-30T10:51:20-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2528, 000599-RE-000474","time":"2025-07-30T10:51:20-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2529, 000599-RE-000475","time":"2025-07-30T10:51:20-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2530, 000599-RE-000476","time":"2025-07-30T10:51:20-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2531, 000599-RE-000477","time":"2025-07-30T10:51:20-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2532, 000599-RE-000478","time":"2025-07-30T10:51:20-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2533, 000599-RE-000479","time":"2025-07-30T10:51:20-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2534, 000599-RE-000480","time":"2025-07-30T10:51:20-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2535, 000599-RE-000481","time":"2025-07-30T10:51:20-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2536, 000599-RE-000482","time":"2025-07-30T10:51:20-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2537, 000599-RE-000483","time":"2025-07-30T10:51:20-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2538, 000599-RE-000484","time":"2025-07-30T10:51:21-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2539, 000599-RE-000485","time":"2025-07-30T10:51:21-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2540, 000599-RE-000486","time":"2025-07-30T10:51:21-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2541, 000599-RE-000487","time":"2025-07-30T10:51:21-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2542, 000599-RE-000488","time":"2025-07-30T10:51:21-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2543, 000599-RE-000489","time":"2025-07-30T10:51:21-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2544, 000599-RE-000490","time":"2025-07-30T10:51:21-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2545, 000599-RE-000491","time":"2025-07-30T10:51:21-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2546, 000599-RE-000492","time":"2025-07-30T10:51:21-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2552, 000599-RE-000495","time":"2025-07-30T10:51:21-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2561, 000599-RE-000501","time":"2025-07-30T10:51:21-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2564, 000599-RE-000502","time":"2025-07-30T10:51:22-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2721, 000599-RE-000609","time":"2025-07-30T10:51:22-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2722, 000599-RE-000610","time":"2025-07-30T10:51:22-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2723, 000599-RE-000611","time":"2025-07-30T10:51:22-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2724, 000599-RE-000612","time":"2025-07-30T10:51:22-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2782, 000599-RE-000645","time":"2025-07-30T10:51:22-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2783, 000599-RE-000646","time":"2025-07-30T10:51:22-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2784, 000599-RE-000647","time":"2025-07-30T10:51:22-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2786, 000599-RE-000648","time":"2025-07-30T10:51:22-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2832, 000599-RE-000681","time":"2025-07-30T10:51:22-04:00"} +{"file":"operaciones.go:70","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"⚠️ Registro incompleto para update (faltan claves): map[apply_procedures:\u003cnil\u003e billable:0 business_customer_code:\u003cnil\u003e case_number:\u003cnil\u003e closed_date:2024-05-20 00:00:00 confidential:false created_at:2024-05-20 21:57:48 customer_company_id:1 customer_company_name:MB SERVICIOS REGULATORIOS S.R.L. customer_id:2 customer_name:3M COMPANY customer_primary_code:599 discount_amount:\u003cnil\u003e discount_percent:\u003cnil\u003e display_name:000599-RE-000689 - PERMANENCIA DE TRES AÑOS CON CONTRATO EXTRANJERO- STEFAN MICHAEL KOSEL enable_business_allowed_users:0 expedient:000599-RE-000689 finished_date:\u003cnil\u003e fix_rate_value:0 hour_limit:\u003cnil\u003e id:2847 internal_code:\u003cnil\u003e is_billable:true limit_alert:\u003cnil\u003e notes: partial_charges:0 practice_area_code:AR07 practice_area_id:1 practice_area_name:Agronegocios primary_external_code:\u003cnil\u003e processing:false responsible_created_at:2012-05-08 14:49:53 responsible_days_allow:302 responsible_email:ihurtado@emba.com responsible_enabled:true responsible_fullname:Ingrid Hurtado responsible_id:1 responsible_locale:es responsible_shortname:ihurtado responsible_super_admin:true responsible_updated_at:2024-09-02 16:33:04 responsible_user_type:0 responsible_username:ihurtado@emba.com secondary_external_code:\u003cnil\u003e status:1 status_marking:pending_completion sync_updated_at:2025-07-30 10:51:15.1784416 -0400 -04 m=+236.695952301 updated_at:2024-06-06 16:00:02 with_iva:true]","time":"2025-07-30T10:51:22-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2886, 000599-RE-000708","time":"2025-07-30T10:51:23-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000599-RE-000709, 2887","time":"2025-07-30T10:51:23-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2888, 000599-RE-000710","time":"2025-07-30T10:51:23-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2890, 000599-RE-000711","time":"2025-07-30T10:51:23-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2891, 000599-RE-000712","time":"2025-07-30T10:51:23-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2893, 000599-RE-000714","time":"2025-07-30T10:51:23-04:00"} +{"file":"operaciones.go:70","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"⚠️ Registro incompleto para update (faltan claves): map[apply_procedures:\u003cnil\u003e billable:0 business_customer_code:\u003cnil\u003e case_number:\u003cnil\u003e closed_date:2025-03-17 00:00:00 confidential:false created_at:2024-09-23 16:10:09 customer_company_id:1 customer_company_name:MB SERVICIOS REGULATORIOS S.R.L. customer_id:2 customer_name:3M COMPANY customer_primary_code:599 discount_amount:\u003cnil\u003e discount_percent:\u003cnil\u003e display_name:000599-SC-000974 - PERMANENCIA DE TRES AÑOS CON CONTRATO EXTRANJERO- STEFAN MICHAEL KOSEL enable_business_allowed_users:0 expedient:000599-SC-000974 finished_date:\u003cnil\u003e fix_rate_value:1 hour_limit:2 id:2895 internal_code:\u003cnil\u003e is_billable:true limit_alert:0 notes: partial_charges:1 practice_area_code:AR20 practice_area_id:9 practice_area_name:Contratación Pública primary_external_code:\u003cnil\u003e processing:false responsible_created_at:\u003cnil\u003e responsible_days_allow:\u003cnil\u003e responsible_email:\u003cnil\u003e responsible_enabled:\u003cnil\u003e responsible_fullname:\u003cnil\u003e responsible_id:\u003cnil\u003e responsible_locale:\u003cnil\u003e responsible_shortname:\u003cnil\u003e responsible_super_admin:\u003cnil\u003e responsible_updated_at:\u003cnil\u003e responsible_user_type:\u003cnil\u003e responsible_username:\u003cnil\u003e secondary_external_code:\u003cnil\u003e status:1 status_marking:active sync_updated_at:2025-07-30 10:51:15.1784416 -0400 -04 m=+236.695952301 updated_at:2025-03-17 16:14:41 with_iva:true]","time":"2025-07-30T10:51:23-04:00"} +{"file":"operaciones.go:70","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"⚠️ Registro incompleto para update (faltan claves): map[apply_procedures:\u003cnil\u003e billable:0 business_customer_code:\u003cnil\u003e case_number:\u003cnil\u003e closed_date:2024-09-23 00:00:00 confidential:false created_at:2024-09-23 16:21:29 customer_company_id:1 customer_company_name:MB SERVICIOS REGULATORIOS S.R.L. customer_id:2 customer_name:3M COMPANY customer_primary_code:599 discount_amount:\u003cnil\u003e discount_percent:\u003cnil\u003e display_name:000599-SC-000975 - Test Any prueba enable_business_allowed_users:0 expedient:000599-SC-000975 finished_date:\u003cnil\u003e fix_rate_value:0 hour_limit:\u003cnil\u003e id:2896 internal_code:\u003cnil\u003e is_billable:true limit_alert:\u003cnil\u003e notes: partial_charges:0 practice_area_code:AR17 practice_area_id:6 practice_area_name:Der.Comercial \n primary_external_code:\u003cnil\u003e processing:false responsible_created_at:\u003cnil\u003e responsible_days_allow:\u003cnil\u003e responsible_email:\u003cnil\u003e responsible_enabled:\u003cnil\u003e responsible_fullname:\u003cnil\u003e responsible_id:\u003cnil\u003e responsible_locale:\u003cnil\u003e responsible_shortname:\u003cnil\u003e responsible_super_admin:\u003cnil\u003e responsible_updated_at:\u003cnil\u003e responsible_user_type:\u003cnil\u003e responsible_username:\u003cnil\u003e secondary_external_code:\u003cnil\u003e status:1 status_marking:active sync_updated_at:2025-07-30 10:51:15.1784416 -0400 -04 m=+236.695952301 updated_at:2024-09-23 16:21:29 with_iva:true]","time":"2025-07-30T10:51:23-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2897, 000599-RE-000716","time":"2025-07-30T10:51:23-04:00"} +{"file":"operaciones.go:51","func":"db.(*GormDatabase).SyncRows","level":"debug","msg":"[🧹 Tabla: public.sync_proyectos] Procesando batch de 100 registros","time":"2025-07-30T10:51:23-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 896, 000501-RE-000069","time":"2025-07-30T10:51:24-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000501-RE-000070, 897","time":"2025-07-30T10:51:24-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2341, 000406-RE-000176","time":"2025-07-30T10:51:24-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2410, 000481-RE-000356","time":"2025-07-30T10:51:24-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2411, 000481-RE-000357","time":"2025-07-30T10:51:24-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2412, 000481-RE-000358","time":"2025-07-30T10:51:24-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2413, 000481-RE-000359","time":"2025-07-30T10:51:24-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2414, 000481-RE-000360","time":"2025-07-30T10:51:24-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2415, 000481-RE-000361","time":"2025-07-30T10:51:25-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2416, 000481-RE-000362","time":"2025-07-30T10:51:25-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2417, 000481-RE-000363","time":"2025-07-30T10:51:25-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2418, 000481-RE-000364","time":"2025-07-30T10:51:25-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2419, 000481-RE-000365","time":"2025-07-30T10:51:25-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2420, 000481-RE-000366","time":"2025-07-30T10:51:25-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2421, 000481-RE-000367","time":"2025-07-30T10:51:25-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2422, 000481-RE-000368","time":"2025-07-30T10:51:25-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2423, 000481-RE-000369","time":"2025-07-30T10:51:25-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2424, 000481-RE-000370","time":"2025-07-30T10:51:25-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000481-RE-000371, 2425","time":"2025-07-30T10:51:26-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2426, 000481-RE-000372","time":"2025-07-30T10:51:26-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000481-RE-000373, 2427","time":"2025-07-30T10:51:26-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2428, 000481-RE-000374","time":"2025-07-30T10:51:26-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2429, 000481-RE-000375","time":"2025-07-30T10:51:26-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2430, 000481-RE-000376","time":"2025-07-30T10:51:26-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2431, 000481-RE-000377","time":"2025-07-30T10:51:26-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2456, 000549-RE-000402","time":"2025-07-30T10:51:26-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2457, 000549-RE-000403","time":"2025-07-30T10:51:26-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2458, 000549-RE-000404","time":"2025-07-30T10:51:26-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2459, 000549-RE-000405","time":"2025-07-30T10:51:26-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2460, 000549-RE-000406","time":"2025-07-30T10:51:27-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2461, 000549-RE-000407","time":"2025-07-30T10:51:27-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2462, 000549-RE-000408","time":"2025-07-30T10:51:27-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2463, 000549-RE-000409","time":"2025-07-30T10:51:27-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2467, 000406-RE-000413","time":"2025-07-30T10:51:27-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2468, 000406-RE-000414","time":"2025-07-30T10:51:27-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2469, 000406-RE-000415","time":"2025-07-30T10:51:27-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2470, 000406-RE-000416","time":"2025-07-30T10:51:27-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2558, 000406-RE-000499","time":"2025-07-30T10:51:27-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2749, 000522-RE-000626","time":"2025-07-30T10:51:28-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2750, 000522-RE-000627","time":"2025-07-30T10:51:28-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2751, 000522-RE-000628","time":"2025-07-30T10:51:28-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2752, 000522-RE-000629","time":"2025-07-30T10:51:28-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2753, 000522-RE-000630","time":"2025-07-30T10:51:28-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2754, 000522-RE-000631","time":"2025-07-30T10:51:28-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000522-RE-000632, 2755","time":"2025-07-30T10:51:28-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2756, 000522-RE-000633","time":"2025-07-30T10:51:28-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2757, 000522-RE-000634","time":"2025-07-30T10:51:28-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2781, 000406-RE-000644","time":"2025-07-30T10:51:28-04:00"} +{"file":"operaciones.go:70","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"⚠️ Registro incompleto para update (faltan claves): map[apply_procedures:\u003cnil\u003e billable:0 business_customer_code:\u003cnil\u003e case_number:\u003cnil\u003e closed_date:2024-05-17 00:00:00 confidential:false created_at:2024-05-17 22:09:55 customer_company_id:1 customer_company_name:MB SERVICIOS REGULATORIOS S.R.L. customer_id:7 customer_name:ACTIVZBOLIVIA SRL customer_primary_code:406 discount_amount:\u003cnil\u003e discount_percent:\u003cnil\u003e display_name:000406-SR-001170 - Servicios Legales Mensuales enable_business_allowed_users:0 expedient:000406-SR-001170 finished_date:\u003cnil\u003e fix_rate_value:0 hour_limit:\u003cnil\u003e id:2843 internal_code:\u003cnil\u003e is_billable:true limit_alert:\u003cnil\u003e notes:VAlor hora adicional por abogado 100 usd partial_charges:0 practice_area_code:AR04 practice_area_id:2 practice_area_name:Arbitraje primary_external_code:\u003cnil\u003e processing:false responsible_created_at:2023-12-26 22:28:14 responsible_days_allow:302 responsible_email:lmorenog@emba.com responsible_enabled:true responsible_fullname:Luis Moreno Gutierrez responsible_id:8 responsible_locale:es responsible_shortname:lmoreno responsible_super_admin:false responsible_updated_at:2024-09-02 16:33:04 responsible_user_type:1 responsible_username:lmorenog@emba.com secondary_external_code:\u003cnil\u003e status:1 status_marking:pending_completion sync_updated_at:2025-07-30 10:51:15.1784416 -0400 -04 m=+236.695952301 updated_at:2024-05-17 22:09:55 with_iva:true]","time":"2025-07-30T10:51:28-04:00"} +{"file":"operaciones.go:70","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"⚠️ Registro incompleto para update (faltan claves): map[apply_procedures:\u003cnil\u003e billable:0 business_customer_code:\u003cnil\u003e case_number:\u003cnil\u003e closed_date:2025-02-12 00:00:00 confidential:false created_at:2024-05-17 22:11:21 customer_company_id:1 customer_company_name:MB SERVICIOS REGULATORIOS S.R.L. customer_id:7 customer_name:ACTIVZBOLIVIA SRL customer_primary_code:406 discount_amount:\u003cnil\u003e discount_percent:\u003cnil\u003e display_name:000406-SR-001171 - Representacion legal enable_business_allowed_users:0 expedient:000406-SR-001171 finished_date:\u003cnil\u003e fix_rate_value:0 hour_limit:\u003cnil\u003e id:2844 internal_code:\u003cnil\u003e is_billable:true limit_alert:\u003cnil\u003e notes: partial_charges:0 practice_area_code:AR04 practice_area_id:2 practice_area_name:Arbitraje primary_external_code:\u003cnil\u003e processing:false responsible_created_at:2023-12-26 22:28:16 responsible_days_allow:302 responsible_email:aloayza@emba.com responsible_enabled:true responsible_fullname:Ana Luz Loayza responsible_id:51 responsible_locale:es responsible_shortname:aloayza responsible_super_admin:false responsible_updated_at:2024-09-02 16:33:04 responsible_user_type:1 responsible_username:aloayza@emba.com secondary_external_code:\u003cnil\u003e status:1 status_marking:active sync_updated_at:2025-07-30 10:51:15.1784416 -0400 -04 m=+236.695952301 updated_at:2025-02-12 11:29:43 with_iva:true]","time":"2025-07-30T10:51:28-04:00"} +{"file":"operaciones.go:70","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"⚠️ Registro incompleto para update (faltan claves): map[apply_procedures:\u003cnil\u003e billable:0 business_customer_code:\u003cnil\u003e case_number:\u003cnil\u003e closed_date:2024-05-17 00:00:00 confidential:false created_at:2024-05-17 22:16:23 customer_company_id:1 customer_company_name:MB SERVICIOS REGULATORIOS S.R.L. customer_id:7 customer_name:ACTIVZBOLIVIA SRL customer_primary_code:406 discount_amount:\u003cnil\u003e discount_percent:\u003cnil\u003e display_name:000406-SR-001172 - Servicios Legales integrales por hora enable_business_allowed_users:0 expedient:000406-SR-001172 finished_date:\u003cnil\u003e fix_rate_value:0 hour_limit:\u003cnil\u003e id:2845 internal_code:\u003cnil\u003e is_billable:true limit_alert:\u003cnil\u003e notes: partial_charges:0 practice_area_code:AR04 practice_area_id:2 practice_area_name:Arbitraje primary_external_code:\u003cnil\u003e processing:false responsible_created_at:2024-03-19 13:50:44 responsible_days_allow:302 responsible_email:agomez@timemanagerweb.com responsible_enabled:true responsible_fullname:Andrea Gomez responsible_id:84 responsible_locale:es responsible_shortname:AG responsible_super_admin:false responsible_updated_at:2024-08-29 14:19:23 responsible_user_type:4 responsible_username:agomez@timemanagerweb.com secondary_external_code:\u003cnil\u003e status:1 status_marking:pending_completion sync_updated_at:2025-07-30 10:51:15.1784416 -0400 -04 m=+236.695952301 updated_at:2024-05-17 22:16:23 with_iva:true]","time":"2025-07-30T10:51:29-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2901, 000599-RE-000719","time":"2025-07-30T10:51:29-04:00"} +{"file":"operaciones.go:70","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"⚠️ Registro incompleto para update (faltan claves): map[apply_procedures:\u003cnil\u003e billable:0 business_customer_code:\u003cnil\u003e case_number:\u003cnil\u003e closed_date:2024-10-01 00:00:00 confidential:false created_at:2024-09-23 17:05:32 customer_company_id:1 customer_company_name:MB SERVICIOS REGULATORIOS S.R.L. customer_id:7 customer_name:ACTIVZBOLIVIA SRL customer_primary_code:406 discount_amount:\u003cnil\u003e discount_percent:\u003cnil\u003e display_name:000406-SC-000977 - Any prueba3 enable_business_allowed_users:0 expedient:000406-SC-000977 finished_date:\u003cnil\u003e fix_rate_value:0 hour_limit:\u003cnil\u003e id:2902 internal_code:\u003cnil\u003e is_billable:true limit_alert:\u003cnil\u003e notes: partial_charges:0 practice_area_code:AR07 practice_area_id:1 practice_area_name:Agronegocios primary_external_code:\u003cnil\u003e processing:false responsible_created_at:2023-12-26 22:28:14 responsible_days_allow:302 responsible_email:amorenog@emba.com responsible_enabled:true responsible_fullname:Andres Moreno Gutierrez responsible_id:5 responsible_locale:es responsible_shortname:amoreno responsible_super_admin:false responsible_updated_at:2024-09-02 16:33:04 responsible_user_type:1 responsible_username:amorenog@emba.com secondary_external_code:\u003cnil\u003e status:1 status_marking:active sync_updated_at:2025-07-30 10:51:15.1784416 -0400 -04 m=+236.695952301 updated_at:2024-10-01 17:39:45 with_iva:true]","time":"2025-07-30T10:51:29-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2903, 000599-RE-000720","time":"2025-07-30T10:51:29-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2904, 000599-RE-000721","time":"2025-07-30T10:51:29-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2905, 000599-BK-000379","time":"2025-07-30T10:51:29-04:00"} +{"file":"operaciones.go:70","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"⚠️ Registro incompleto para update (faltan claves): map[apply_procedures:\u003cnil\u003e billable:0 business_customer_code:\u003cnil\u003e case_number:\u003cnil\u003e closed_date:2024-09-26 00:00:00 confidential:false created_at:2024-09-26 08:29:14 customer_company_id:1 customer_company_name:MB SERVICIOS REGULATORIOS S.R.L. customer_id:7 customer_name:ACTIVZBOLIVIA SRL customer_primary_code:406 discount_amount:\u003cnil\u003e discount_percent:\u003cnil\u003e display_name:000406-SC-000979 - Freetest Any enable_business_allowed_users:0 expedient:000406-SC-000979 finished_date:\u003cnil\u003e fix_rate_value:1000 hour_limit:10 id:2908 internal_code:\u003cnil\u003e is_billable:true limit_alert:50 notes: partial_charges:0 practice_area_code:AR04 practice_area_id:2 practice_area_name:Arbitraje primary_external_code:\u003cnil\u003e processing:false responsible_created_at:2023-12-26 22:28:16 responsible_days_allow:302 responsible_email:aloayza@emba.com responsible_enabled:true responsible_fullname:Ana Luz Loayza responsible_id:51 responsible_locale:es responsible_shortname:aloayza responsible_super_admin:false responsible_updated_at:2024-09-02 16:33:04 responsible_user_type:1 responsible_username:aloayza@emba.com secondary_external_code:\u003cnil\u003e status:1 status_marking:approved sync_updated_at:2025-07-30 10:51:15.1784416 -0400 -04 m=+236.695952301 updated_at:2024-09-26 13:45:50 with_iva:true]","time":"2025-07-30T10:51:29-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2909, 000406-RE-000723","time":"2025-07-30T10:51:29-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2910, 000406-RE-000724","time":"2025-07-30T10:51:29-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2911, 000406-RE-000725","time":"2025-07-30T10:51:29-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2912, 000599-RE-000726","time":"2025-07-30T10:51:29-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2914, 000599-RE-000728","time":"2025-07-30T10:51:29-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2919, 000406-RE-000733","time":"2025-07-30T10:51:30-04:00"} +{"file":"operaciones.go:70","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"⚠️ Registro incompleto para update (faltan claves): map[apply_procedures:\u003cnil\u003e billable:0 business_customer_code:\u003cnil\u003e case_number:\u003cnil\u003e closed_date:2024-10-03 00:00:00 confidential:false created_at:2024-10-03 11:02:40 customer_company_id:1 customer_company_name:MB SERVICIOS REGULATORIOS S.R.L. customer_id:7 customer_name:ACTIVZBOLIVIA SRL customer_primary_code:406 discount_amount:\u003cnil\u003e discount_percent:\u003cnil\u003e display_name:000406-SC-000980 - pruebaxhorasconCAPMensual enable_business_allowed_users:0 expedient:000406-SC-000980 finished_date:\u003cnil\u003e fix_rate_value:0 hour_limit:\u003cnil\u003e id:2920 internal_code:\u003cnil\u003e is_billable:true limit_alert:\u003cnil\u003e notes: partial_charges:0 practice_area_code:AR07 practice_area_id:1 practice_area_name:Agronegocios primary_external_code:\u003cnil\u003e processing:false responsible_created_at:2023-12-26 22:28:15 responsible_days_allow:302 responsible_email:aaraoz@emba.com responsible_enabled:true responsible_fullname:Alvaro Araoz Ardaya responsible_id:17 responsible_locale:es responsible_shortname:aaraoz responsible_super_admin:false responsible_updated_at:2024-12-04 15:29:19 responsible_user_type:1 responsible_username:aaraoz@emba.com secondary_external_code:\u003cnil\u003e status:1 status_marking:active sync_updated_at:2025-07-30 10:51:15.1784416 -0400 -04 m=+236.695952301 updated_at:2024-10-03 11:02:46 with_iva:true]","time":"2025-07-30T10:51:30-04:00"} +{"file":"operaciones.go:70","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"⚠️ Registro incompleto para update (faltan claves): map[apply_procedures:\u003cnil\u003e billable:0 business_customer_code:\u003cnil\u003e case_number:\u003cnil\u003e closed_date:2024-10-03 00:00:00 confidential:false created_at:2024-10-03 11:35:13 customer_company_id:1 customer_company_name:MB SERVICIOS REGULATORIOS S.R.L. customer_id:2 customer_name:3M COMPANY customer_primary_code:599 discount_amount:\u003cnil\u003e discount_percent:\u003cnil\u003e display_name:000599-SC-000981 - pruebaxhorasconCAP enable_business_allowed_users:0 expedient:000599-SC-000981 finished_date:\u003cnil\u003e fix_rate_value:1000 hour_limit:\u003cnil\u003e id:2921 internal_code:\u003cnil\u003e is_billable:true limit_alert:\u003cnil\u003e notes: partial_charges:0 practice_area_code:AR07 practice_area_id:1 practice_area_name:Agronegocios primary_external_code:\u003cnil\u003e processing:false responsible_created_at:2023-12-26 22:28:15 responsible_days_allow:302 responsible_email:aaraoz@emba.com responsible_enabled:true responsible_fullname:Alvaro Araoz Ardaya responsible_id:17 responsible_locale:es responsible_shortname:aaraoz responsible_super_admin:false responsible_updated_at:2024-12-04 15:29:19 responsible_user_type:1 responsible_username:aaraoz@emba.com secondary_external_code:\u003cnil\u003e status:1 status_marking:active sync_updated_at:2025-07-30 10:51:15.1784416 -0400 -04 m=+236.695952301 updated_at:2024-10-04 22:16:57 with_iva:true]","time":"2025-07-30T10:51:30-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2923, 000599-RE-000735","time":"2025-07-30T10:51:30-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2924, 000599-RE-000736","time":"2025-07-30T10:51:30-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000599-RE-000737, 2925","time":"2025-07-30T10:51:30-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2926, 000406-RE-000738","time":"2025-07-30T10:51:30-04:00"} +{"file":"operaciones.go:70","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"⚠️ Registro incompleto para update (faltan claves): map[apply_procedures:\u003cnil\u003e billable:0 business_customer_code:\u003cnil\u003e case_number:\u003cnil\u003e closed_date:2024-10-04 00:00:00 confidential:false created_at:2024-10-04 11:01:08 customer_company_id:1 customer_company_name:MB SERVICIOS REGULATORIOS S.R.L. customer_id:2 customer_name:3M COMPANY customer_primary_code:599 discount_amount:\u003cnil\u003e discount_percent:\u003cnil\u003e display_name:000599-SC-000982 - pruebasxhitosoe enable_business_allowed_users:0 expedient:000599-SC-000982 finished_date:\u003cnil\u003e fix_rate_value:0 hour_limit:\u003cnil\u003e id:2927 internal_code:\u003cnil\u003e is_billable:true limit_alert:\u003cnil\u003e notes: partial_charges:0 practice_area_code:AR07 practice_area_id:1 practice_area_name:Agronegocios primary_external_code:\u003cnil\u003e processing:false responsible_created_at:2023-12-26 22:28:15 responsible_days_allow:302 responsible_email:aaraoz@emba.com responsible_enabled:true responsible_fullname:Alvaro Araoz Ardaya responsible_id:17 responsible_locale:es responsible_shortname:aaraoz responsible_super_admin:false responsible_updated_at:2024-12-04 15:29:19 responsible_user_type:1 responsible_username:aaraoz@emba.com secondary_external_code:\u003cnil\u003e status:1 status_marking:active sync_updated_at:2025-07-30 10:51:15.1784416 -0400 -04 m=+236.695952301 updated_at:2024-10-04 11:01:14 with_iva:true]","time":"2025-07-30T10:51:30-04:00"} +{"file":"operaciones.go:70","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"⚠️ Registro incompleto para update (faltan claves): map[apply_procedures:\u003cnil\u003e billable:0 business_customer_code:\u003cnil\u003e case_number:\u003cnil\u003e closed_date:2024-10-04 00:00:00 confidential:false created_at:2024-10-04 13:09:23 customer_company_id:1 customer_company_name:MB SERVICIOS REGULATORIOS S.R.L. customer_id:7 customer_name:ACTIVZBOLIVIA SRL customer_primary_code:406 discount_amount:\u003cnil\u003e discount_percent:\u003cnil\u003e display_name:000406-SC-000983 - pruebaconcapMens enable_business_allowed_users:0 expedient:000406-SC-000983 finished_date:\u003cnil\u003e fix_rate_value:0 hour_limit:\u003cnil\u003e id:2928 internal_code:\u003cnil\u003e is_billable:true limit_alert:\u003cnil\u003e notes: partial_charges:0 practice_area_code:AR07 practice_area_id:1 practice_area_name:Agronegocios primary_external_code:\u003cnil\u003e processing:false responsible_created_at:2023-12-26 22:28:15 responsible_days_allow:302 responsible_email:aaraoz@emba.com responsible_enabled:true responsible_fullname:Alvaro Araoz Ardaya responsible_id:17 responsible_locale:es responsible_shortname:aaraoz responsible_super_admin:false responsible_updated_at:2024-12-04 15:29:19 responsible_user_type:1 responsible_username:aaraoz@emba.com secondary_external_code:\u003cnil\u003e status:1 status_marking:active sync_updated_at:2025-07-30 10:51:15.1784416 -0400 -04 m=+236.695952301 updated_at:2024-10-04 19:02:07 with_iva:true]","time":"2025-07-30T10:51:30-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2929, 000599-RE-000739","time":"2025-07-30T10:51:30-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2930, 000599-RE-000740","time":"2025-07-30T10:51:30-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2931, 000599-RE-000741","time":"2025-07-30T10:51:30-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2932, 000599-RE-000742","time":"2025-07-30T10:51:30-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2933, 000599-RE-000743","time":"2025-07-30T10:51:31-04:00"} +{"file":"operaciones.go:70","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"⚠️ Registro incompleto para update (faltan claves): map[apply_procedures:\u003cnil\u003e billable:0 business_customer_code:\u003cnil\u003e case_number:\u003cnil\u003e closed_date:2024-12-11 00:00:00 confidential:false created_at:2024-12-11 11:30:11 customer_company_id:1 customer_company_name:MB SERVICIOS REGULATORIOS S.R.L. customer_id:2 customer_name:3M COMPANY customer_primary_code:599 discount_amount:\u003cnil\u003e discount_percent:\u003cnil\u003e display_name:000599-SC-000984 - PRUEBA NICOL enable_business_allowed_users:0 expedient:000599-SC-000984 finished_date:\u003cnil\u003e fix_rate_value:0 hour_limit:\u003cnil\u003e id:2935 internal_code:\u003cnil\u003e is_billable:true limit_alert:\u003cnil\u003e notes: partial_charges:0 practice_area_code:\u003cnil\u003e practice_area_id:\u003cnil\u003e practice_area_name:\u003cnil\u003e primary_external_code:\u003cnil\u003e processing:false responsible_created_at:\u003cnil\u003e responsible_days_allow:\u003cnil\u003e responsible_email:\u003cnil\u003e responsible_enabled:\u003cnil\u003e responsible_fullname:\u003cnil\u003e responsible_id:\u003cnil\u003e responsible_locale:\u003cnil\u003e responsible_shortname:\u003cnil\u003e responsible_super_admin:\u003cnil\u003e responsible_updated_at:\u003cnil\u003e responsible_user_type:\u003cnil\u003e responsible_username:\u003cnil\u003e secondary_external_code:\u003cnil\u003e status:1 status_marking:active sync_updated_at:2025-07-30 10:51:15.1784416 -0400 -04 m=+236.695952301 updated_at:2024-12-11 11:30:11 with_iva:true]","time":"2025-07-30T10:51:31-04:00"} +{"file":"operaciones.go:70","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"⚠️ Registro incompleto para update (faltan claves): map[apply_procedures:\u003cnil\u003e billable:0 business_customer_code:\u003cnil\u003e case_number:\u003cnil\u003e closed_date:2024-12-11 00:00:00 confidential:false created_at:2024-12-11 12:26:58 customer_company_id:1 customer_company_name:MB SERVICIOS REGULATORIOS S.R.L. customer_id:2 customer_name:3M COMPANY customer_primary_code:599 discount_amount:\u003cnil\u003e discount_percent:\u003cnil\u003e display_name:000599-RE-000744 - Consultas Legales por hora enable_business_allowed_users:0 expedient:000599-RE-000744 finished_date:\u003cnil\u003e fix_rate_value:0 hour_limit:\u003cnil\u003e id:2936 internal_code:\u003cnil\u003e is_billable:true limit_alert:\u003cnil\u003e notes: partial_charges:0 practice_area_code:AR07 practice_area_id:1 practice_area_name:Agronegocios primary_external_code:\u003cnil\u003e processing:false responsible_created_at:2021-05-11 23:40:08 responsible_days_allow:302 responsible_email:pcorredor26@gmail.com responsible_enabled:true responsible_fullname:AMTM Pruebas responsible_id:77 responsible_locale:es responsible_shortname:AM responsible_super_admin:true responsible_updated_at:2025-07-21 10:12:54 responsible_user_type:1 responsible_username:pcorredor26@gmail.com secondary_external_code:\u003cnil\u003e status:1 status_marking:pending_completion sync_updated_at:2025-07-30 10:51:15.1784416 -0400 -04 m=+236.695952301 updated_at:2024-12-11 12:26:58 with_iva:true]","time":"2025-07-30T10:51:31-04:00"} +{"file":"operaciones.go:70","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"⚠️ Registro incompleto para update (faltan claves): map[apply_procedures:\u003cnil\u003e billable:0 business_customer_code:\u003cnil\u003e case_number:\u003cnil\u003e closed_date:2024-12-11 00:00:00 confidential:false created_at:2024-12-11 12:29:33 customer_company_id:1 customer_company_name:MB SERVICIOS REGULATORIOS S.R.L. customer_id:94 customer_name:BLENASTOR BOLIVIA customer_primary_code:549 discount_amount:\u003cnil\u003e discount_percent:\u003cnil\u003e display_name:000549-BK-000380 - Transferencia de Cuotas y Activos enable_business_allowed_users:0 expedient:000549-BK-000380 finished_date:\u003cnil\u003e fix_rate_value:0 hour_limit:\u003cnil\u003e id:2937 internal_code:\u003cnil\u003e is_billable:true limit_alert:\u003cnil\u003e notes:PRUEBAS partial_charges:0 practice_area_code:AR07 practice_area_id:1 practice_area_name:Agronegocios primary_external_code:\u003cnil\u003e processing:false responsible_created_at:2021-05-11 23:40:08 responsible_days_allow:302 responsible_email:pcorredor26@gmail.com responsible_enabled:true responsible_fullname:AMTM Pruebas responsible_id:77 responsible_locale:es responsible_shortname:AM responsible_super_admin:true responsible_updated_at:2025-07-21 10:12:54 responsible_user_type:1 responsible_username:pcorredor26@gmail.com secondary_external_code:\u003cnil\u003e status:1 status_marking:pending_completion sync_updated_at:2025-07-30 10:51:15.1784416 -0400 -04 m=+236.695952301 updated_at:2024-12-11 12:29:33 with_iva:true]","time":"2025-07-30T10:51:31-04:00"} +{"file":"operaciones.go:70","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"⚠️ Registro incompleto para update (faltan claves): map[apply_procedures:\u003cnil\u003e billable:0 business_customer_code:\u003cnil\u003e case_number:\u003cnil\u003e closed_date:2025-01-20 00:00:00 confidential:false created_at:2025-01-20 12:42:37 customer_company_id:1 customer_company_name:MB SERVICIOS REGULATORIOS S.R.L. customer_id:2 customer_name:3M COMPANY customer_primary_code:599 discount_amount:\u003cnil\u003e discount_percent:\u003cnil\u003e display_name:000599-RE-000747 - Test Any prueba enable_business_allowed_users:0 expedient:000599-RE-000747 finished_date:\u003cnil\u003e fix_rate_value:0 hour_limit:14 id:2940 internal_code:\u003cnil\u003e is_billable:true limit_alert:\u003cnil\u003e notes: partial_charges:0 practice_area_code:AR07 practice_area_id:1 practice_area_name:Agronegocios primary_external_code:\u003cnil\u003e processing:false responsible_created_at:\u003cnil\u003e responsible_days_allow:\u003cnil\u003e responsible_email:\u003cnil\u003e responsible_enabled:\u003cnil\u003e responsible_fullname:\u003cnil\u003e responsible_id:\u003cnil\u003e responsible_locale:\u003cnil\u003e responsible_shortname:\u003cnil\u003e responsible_super_admin:\u003cnil\u003e responsible_updated_at:\u003cnil\u003e responsible_user_type:\u003cnil\u003e responsible_username:\u003cnil\u003e secondary_external_code:\u003cnil\u003e status:1 status_marking:active sync_updated_at:2025-07-30 10:51:15.1784416 -0400 -04 m=+236.695952301 updated_at:2025-01-20 12:43:18 with_iva:true]","time":"2025-07-30T10:51:31-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000599-RE-000748, 2941","time":"2025-07-30T10:51:31-04:00"} +{"file":"operaciones.go:70","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"⚠️ Registro incompleto para update (faltan claves): map[apply_procedures:\u003cnil\u003e billable:0 business_customer_code:\u003cnil\u003e case_number:\u003cnil\u003e closed_date:2025-02-10 00:00:00 confidential:false created_at:2025-02-10 11:33:20 customer_company_id:1 customer_company_name:MB SERVICIOS REGULATORIOS S.R.L. customer_id:2 customer_name:3M COMPANY customer_primary_code:599 discount_amount:\u003cnil\u003e discount_percent:\u003cnil\u003e display_name:000599-BK-000381 - PERMANENCIA DE TRES AÑOS CON CONTRATO EXTRANJERO- STEFAN MICHAEL KOSEL enable_business_allowed_users:0 expedient:000599-BK-000381 finished_date:\u003cnil\u003e fix_rate_value:0 hour_limit:\u003cnil\u003e id:2942 internal_code:\u003cnil\u003e is_billable:true limit_alert:\u003cnil\u003e notes: partial_charges:0 practice_area_code:AR07 practice_area_id:1 practice_area_name:Agronegocios primary_external_code:\u003cnil\u003e processing:false responsible_created_at:2021-05-11 23:40:08 responsible_days_allow:302 responsible_email:pcorredor26@gmail.com responsible_enabled:true responsible_fullname:AMTM Pruebas responsible_id:77 responsible_locale:es responsible_shortname:AM responsible_super_admin:true responsible_updated_at:2025-07-21 10:12:54 responsible_user_type:1 responsible_username:pcorredor26@gmail.com secondary_external_code:\u003cnil\u003e status:1 status_marking:pending_completion sync_updated_at:2025-07-30 10:51:15.1784416 -0400 -04 m=+236.695952301 updated_at:2025-02-10 11:33:20 with_iva:true]","time":"2025-07-30T10:51:31-04:00"} +{"file":"operaciones.go:70","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"⚠️ Registro incompleto para update (faltan claves): map[apply_procedures:\u003cnil\u003e billable:0 business_customer_code:\u003cnil\u003e case_number:\u003cnil\u003e closed_date:2025-03-10 00:00:00 confidential:false created_at:2025-03-10 09:26:45 customer_company_id:1 customer_company_name:MB SERVICIOS REGULATORIOS S.R.L. customer_id:2 customer_name:3M COMPANY customer_primary_code:599 discount_amount:\u003cnil\u003e discount_percent:\u003cnil\u003e display_name:000599 - Servicios Legales integrales por hora enable_business_allowed_users:0 expedient:000599 finished_date:\u003cnil\u003e fix_rate_value:0 hour_limit:\u003cnil\u003e id:2943 internal_code:\u003cnil\u003e is_billable:true limit_alert:\u003cnil\u003e notes: partial_charges:0 practice_area_code:\u003cnil\u003e practice_area_id:\u003cnil\u003e practice_area_name:\u003cnil\u003e primary_external_code:\u003cnil\u003e processing:false responsible_created_at:\u003cnil\u003e responsible_days_allow:\u003cnil\u003e responsible_email:\u003cnil\u003e responsible_enabled:\u003cnil\u003e responsible_fullname:\u003cnil\u003e responsible_id:\u003cnil\u003e responsible_locale:\u003cnil\u003e responsible_shortname:\u003cnil\u003e responsible_super_admin:\u003cnil\u003e responsible_updated_at:\u003cnil\u003e responsible_user_type:\u003cnil\u003e responsible_username:\u003cnil\u003e secondary_external_code:\u003cnil\u003e status:1 status_marking:active sync_updated_at:2025-07-30 10:51:15.1784416 -0400 -04 m=+236.695952301 updated_at:2025-03-10 09:26:45 with_iva:true]","time":"2025-07-30T10:51:31-04:00"} +{"file":"operaciones.go:51","func":"db.(*GormDatabase).SyncRows","level":"debug","msg":"[🧹 Tabla: public.sync_proyectos] Procesando batch de 100 registros","time":"2025-07-30T10:51:31-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 30, 000341-RE-000024","time":"2025-07-30T10:51:31-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 948, 000341-RE-000040","time":"2025-07-30T10:51:31-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 949, 000341-RE-000041","time":"2025-07-30T10:51:31-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 950, 000341-RE-000042","time":"2025-07-30T10:51:31-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 953, 000341-RE-000054","time":"2025-07-30T10:51:31-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000341-RE-000055, 954","time":"2025-07-30T10:51:32-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 956, 000341-RE-000072","time":"2025-07-30T10:51:32-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 960, 000341-RE-000087","time":"2025-07-30T10:51:32-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 961, 000341-RE-000088","time":"2025-07-30T10:51:32-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 962, 000341-RE-000099","time":"2025-07-30T10:51:32-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000341-RE-000100, 963","time":"2025-07-30T10:51:32-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 964, 000341-RE-000101","time":"2025-07-30T10:51:32-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 967, 000341-RE-000109","time":"2025-07-30T10:51:32-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 968, 000341-RE-000110","time":"2025-07-30T10:51:32-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 969, 000341-RE-000111","time":"2025-07-30T10:51:32-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000341-RE-000112, 970","time":"2025-07-30T10:51:33-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 971, 000341-RE-000114","time":"2025-07-30T10:51:33-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 973, 000341-RE-000116","time":"2025-07-30T10:51:33-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 981, 000341-RE-000135","time":"2025-07-30T10:51:33-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000341-RE-000137, 983","time":"2025-07-30T10:51:33-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000341-RE-000164, 1486","time":"2025-07-30T10:51:33-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000341-RE-000322, 2357","time":"2025-07-30T10:51:33-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2358, 000341-RE-000323","time":"2025-07-30T10:51:33-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2432, 000481-RE-000378","time":"2025-07-30T10:51:33-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2433, 000481-RE-000379","time":"2025-07-30T10:51:33-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2434, 000481-RE-000380","time":"2025-07-30T10:51:33-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2435, 000481-RE-000381","time":"2025-07-30T10:51:33-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2436, 000481-RE-000382","time":"2025-07-30T10:51:34-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2437, 000481-RE-000383","time":"2025-07-30T10:51:34-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2438, 000481-RE-000384","time":"2025-07-30T10:51:34-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2439, 000481-RE-000385","time":"2025-07-30T10:51:34-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000481-RE-000386, 2440","time":"2025-07-30T10:51:34-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000481-RE-000387, 2441","time":"2025-07-30T10:51:34-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2442, 000481-RE-000388","time":"2025-07-30T10:51:34-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000481-RE-000389, 2443","time":"2025-07-30T10:51:34-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000481-RE-000390, 2444","time":"2025-07-30T10:51:34-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2445, 000481-RE-000391","time":"2025-07-30T10:51:34-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2446, 000481-RE-000392","time":"2025-07-30T10:51:34-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2447, 000481-RE-000393","time":"2025-07-30T10:51:35-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2448, 000481-RE-000394","time":"2025-07-30T10:51:35-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2449, 000481-RE-000395","time":"2025-07-30T10:51:35-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2450, 000481-RE-000396","time":"2025-07-30T10:51:35-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2451, 000481-RE-000397","time":"2025-07-30T10:51:35-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2452, 000481-RE-000398","time":"2025-07-30T10:51:35-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2453, 000481-RE-000399","time":"2025-07-30T10:51:35-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2454, 000481-RE-000400","time":"2025-07-30T10:51:35-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2455, 000481-RE-000401","time":"2025-07-30T10:51:35-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2550, 000341-RE-000493","time":"2025-07-30T10:51:35-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2571, 000341-RE-000503","time":"2025-07-30T10:51:36-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000341-RE-000504, 2572","time":"2025-07-30T10:51:36-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000341-RE-000505, 2573","time":"2025-07-30T10:51:36-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2574, 000341-RE-000506","time":"2025-07-30T10:51:36-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2575, 000341-RE-000507","time":"2025-07-30T10:51:36-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2577, 000341-RE-000509","time":"2025-07-30T10:51:36-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2578, 000341-RE-000510","time":"2025-07-30T10:51:36-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2579, 000341-RE-000511","time":"2025-07-30T10:51:36-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2580, 000341-RE-000512","time":"2025-07-30T10:51:36-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000341-RE-000513, 2581","time":"2025-07-30T10:51:36-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000341-RE-000514, 2582","time":"2025-07-30T10:51:36-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2583, 000341-RE-000515","time":"2025-07-30T10:51:36-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000341-RE-000516, 2584","time":"2025-07-30T10:51:37-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2585, 000341-RE-000517","time":"2025-07-30T10:51:37-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2587, 000341-RE-000519","time":"2025-07-30T10:51:37-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2588, 000341-RE-000520","time":"2025-07-30T10:51:37-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2589, 000341-RE-000521","time":"2025-07-30T10:51:37-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2590, 000341-RE-000522","time":"2025-07-30T10:51:37-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2591, 000341-RE-000523","time":"2025-07-30T10:51:37-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2592, 000341-RE-000524","time":"2025-07-30T10:51:37-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2593, 000341-RE-000525","time":"2025-07-30T10:51:37-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2594, 000341-RE-000526","time":"2025-07-30T10:51:37-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2595, 000341-RE-000527","time":"2025-07-30T10:51:37-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2596, 000341-RE-000528","time":"2025-07-30T10:51:38-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2597, 000341-RE-000529","time":"2025-07-30T10:51:38-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2598, 000341-RE-000530","time":"2025-07-30T10:51:38-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2600, 000341-RE-000531","time":"2025-07-30T10:51:38-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2601, 000341-RE-000532","time":"2025-07-30T10:51:38-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2602, 000341-RE-000533","time":"2025-07-30T10:51:38-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2604, 000341-RE-000534","time":"2025-07-30T10:51:38-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2605, 000341-RE-000535","time":"2025-07-30T10:51:38-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2607, 000341-RE-000536","time":"2025-07-30T10:51:38-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2608, 000341-RE-000537","time":"2025-07-30T10:51:38-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000341-RE-000538, 2609","time":"2025-07-30T10:51:39-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2610, 000341-RE-000539","time":"2025-07-30T10:51:39-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2611, 000341-RE-000540","time":"2025-07-30T10:51:39-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2613, 000341-RE-000541","time":"2025-07-30T10:51:39-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2614, 000341-RE-000542","time":"2025-07-30T10:51:39-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2615, 000341-RE-000543","time":"2025-07-30T10:51:39-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2616, 000341-RE-000544","time":"2025-07-30T10:51:39-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2617, 000341-RE-000545","time":"2025-07-30T10:51:39-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2618, 000341-RE-000546","time":"2025-07-30T10:51:39-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2619, 000341-RE-000547","time":"2025-07-30T10:51:39-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2624, 000341-RE-000549","time":"2025-07-30T10:51:39-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2641, 000341-RE-000560","time":"2025-07-30T10:51:39-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2647, 000341-RE-000561","time":"2025-07-30T10:51:39-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2648, 000341-RE-000562","time":"2025-07-30T10:51:40-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2649, 000341-RE-000563","time":"2025-07-30T10:51:40-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000341-RE-000564, 2650","time":"2025-07-30T10:51:40-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2651, 000341-RE-000565","time":"2025-07-30T10:51:40-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2652, 000341-RE-000566","time":"2025-07-30T10:51:40-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2892, 000481-RE-000713","time":"2025-07-30T10:51:40-04:00"} +{"file":"operaciones.go:51","func":"db.(*GormDatabase).SyncRows","level":"debug","msg":"[🧹 Tabla: public.sync_proyectos] Procesando batch de 100 registros","time":"2025-07-30T10:51:40-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 992, 000403-RE-000090","time":"2025-07-30T10:51:40-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 994, 000403-RE-000092","time":"2025-07-30T10:51:40-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 995, 000403-RE-000093","time":"2025-07-30T10:51:40-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2307, 000403-RE-000171","time":"2025-07-30T10:51:40-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2332, 000403-RE-000172","time":"2025-07-30T10:51:40-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2334, 000403-RE-000174","time":"2025-07-30T10:51:41-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2359, 000403-RE-000324","time":"2025-07-30T10:51:41-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2360, 000403-RE-000325","time":"2025-07-30T10:51:41-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2367, 000403-RE-000332","time":"2025-07-30T10:51:41-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2388, 000403-RE-000334","time":"2025-07-30T10:51:41-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2389, 000403-RE-000335","time":"2025-07-30T10:51:41-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000403-RE-000336, 2390","time":"2025-07-30T10:51:41-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2391, 000403-RE-000337","time":"2025-07-30T10:51:41-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2392, 000403-RE-000338","time":"2025-07-30T10:51:41-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2393, 000403-RE-000339","time":"2025-07-30T10:51:41-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2394, 000403-RE-000340","time":"2025-07-30T10:51:41-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2395, 000403-RE-000341","time":"2025-07-30T10:51:42-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2396, 000403-RE-000342","time":"2025-07-30T10:51:42-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2397, 000403-RE-000343","time":"2025-07-30T10:51:42-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2398, 000403-RE-000344","time":"2025-07-30T10:51:42-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000403-RE-000345, 2399","time":"2025-07-30T10:51:42-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000403-RE-000346, 2400","time":"2025-07-30T10:51:42-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2653, 000341-RE-000567","time":"2025-07-30T10:51:42-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2654, 000341-RE-000568","time":"2025-07-30T10:51:42-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2655, 000341-RE-000569","time":"2025-07-30T10:51:42-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2661, 000341-RE-000570","time":"2025-07-30T10:51:42-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2662, 000341-RE-000571","time":"2025-07-30T10:51:42-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2663, 000341-RE-000572","time":"2025-07-30T10:51:42-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2664, 000341-RE-000573","time":"2025-07-30T10:51:43-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2665, 000341-RE-000574","time":"2025-07-30T10:51:43-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2666, 000341-RE-000575","time":"2025-07-30T10:51:43-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2667, 000341-RE-000576","time":"2025-07-30T10:51:43-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2668, 000341-RE-000577","time":"2025-07-30T10:51:43-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2669, 000341-RE-000578","time":"2025-07-30T10:51:43-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000341-RE-000579, 2670","time":"2025-07-30T10:51:43-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000341-RE-000580, 2671","time":"2025-07-30T10:51:43-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2672, 000341-RE-000581","time":"2025-07-30T10:51:43-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2673, 000341-RE-000582","time":"2025-07-30T10:51:43-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2674, 000341-RE-000583","time":"2025-07-30T10:51:43-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000341-RE-000584, 2675","time":"2025-07-30T10:51:44-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2676, 000341-RE-000585","time":"2025-07-30T10:51:44-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2677, 000341-RE-000586","time":"2025-07-30T10:51:44-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2678, 000341-RE-000587","time":"2025-07-30T10:51:44-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2679, 000341-RE-000588","time":"2025-07-30T10:51:44-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2680, 000341-RE-000589","time":"2025-07-30T10:51:44-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2681, 000341-RE-000590","time":"2025-07-30T10:51:44-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2682, 000341-RE-000591","time":"2025-07-30T10:51:44-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2683, 000341-RE-000592","time":"2025-07-30T10:51:44-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2684, 000341-RE-000593","time":"2025-07-30T10:51:44-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000341-RE-000594, 2685","time":"2025-07-30T10:51:44-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2686, 000341-RE-000595","time":"2025-07-30T10:51:45-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2687, 000341-RE-000596","time":"2025-07-30T10:51:45-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2688, 000341-RE-000597","time":"2025-07-30T10:51:45-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2689, 000341-RE-000598","time":"2025-07-30T10:51:45-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2690, 000341-RE-000599","time":"2025-07-30T10:51:45-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000341-RE-000615, 2727","time":"2025-07-30T10:51:45-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2728, 000341-RE-000616","time":"2025-07-30T10:51:45-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2729, 000341-RE-000617","time":"2025-07-30T10:51:45-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2732, 000341-RE-000619","time":"2025-07-30T10:51:45-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2733, 000341-RE-000620","time":"2025-07-30T10:51:45-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2734, 000341-RE-000621","time":"2025-07-30T10:51:45-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2735, 000341-RE-000622","time":"2025-07-30T10:51:45-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2736, 000341-RE-000623","time":"2025-07-30T10:51:46-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2737, 000341-RE-000624","time":"2025-07-30T10:51:46-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000341-RE-000625, 2738","time":"2025-07-30T10:51:46-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2788, 000341-RE-000649","time":"2025-07-30T10:51:46-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2789, 000341-RE-000650","time":"2025-07-30T10:51:46-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2790, 000341-RE-000651","time":"2025-07-30T10:51:46-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2791, 000341-RE-000652","time":"2025-07-30T10:51:46-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2792, 000341-RE-000653","time":"2025-07-30T10:51:46-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2793, 000341-RE-000654","time":"2025-07-30T10:51:46-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2794, 000341-RE-000655","time":"2025-07-30T10:51:46-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2795, 000341-RE-000656","time":"2025-07-30T10:51:46-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2796, 000341-RE-000657","time":"2025-07-30T10:51:46-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2797, 000341-RE-000658","time":"2025-07-30T10:51:47-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000341-RE-000659, 2798","time":"2025-07-30T10:51:47-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2799, 000341-RE-000660","time":"2025-07-30T10:51:47-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2800, 000341-RE-000661","time":"2025-07-30T10:51:47-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2801, 000341-RE-000662","time":"2025-07-30T10:51:47-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2802, 000341-RE-000663","time":"2025-07-30T10:51:47-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2803, 000341-RE-000664","time":"2025-07-30T10:51:47-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2804, 000341-RE-000665","time":"2025-07-30T10:51:47-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2805, 000341-RE-000666","time":"2025-07-30T10:51:47-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000341-RE-000667, 2806","time":"2025-07-30T10:51:47-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2807, 000341-RE-000668","time":"2025-07-30T10:51:47-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2808, 000341-RE-000669","time":"2025-07-30T10:51:47-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2809, 000341-RE-000670","time":"2025-07-30T10:51:48-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2810, 000341-RE-000671","time":"2025-07-30T10:51:48-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2811, 000341-RE-000672","time":"2025-07-30T10:51:48-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2812, 000341-RE-000673","time":"2025-07-30T10:51:48-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2813, 000341-RE-000674","time":"2025-07-30T10:51:48-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2814, 000341-RE-000675","time":"2025-07-30T10:51:48-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2815, 000341-RE-000676","time":"2025-07-30T10:51:48-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2816, 000341-RE-000677","time":"2025-07-30T10:51:48-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2817, 000341-RE-000678","time":"2025-07-30T10:51:48-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2819, 000341-RE-000679","time":"2025-07-30T10:51:48-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2820, 000341-RE-000680","time":"2025-07-30T10:51:48-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2889, 000341-SC-000985","time":"2025-07-30T10:51:48-04:00"} +{"file":"operaciones.go:70","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"⚠️ Registro incompleto para update (faltan claves): map[apply_procedures:\u003cnil\u003e billable:0 business_customer_code:\u003cnil\u003e case_number:\u003cnil\u003e closed_date:2024-09-23 00:00:00 confidential:false created_at:2024-09-23 16:54:21 customer_company_id:1 customer_company_name:MB SERVICIOS REGULATORIOS S.R.L. customer_id:444 customer_name:MEDTRONIC LOGISTICS LLC customer_primary_code:341 discount_amount:\u003cnil\u003e discount_percent:\u003cnil\u003e display_name:000341-SC-000976 - Test Any2 enable_business_allowed_users:0 expedient:000341-SC-000976 finished_date:\u003cnil\u003e fix_rate_value:0 hour_limit:\u003cnil\u003e id:2900 internal_code:\u003cnil\u003e is_billable:true limit_alert:\u003cnil\u003e notes: partial_charges:0 practice_area_code:\u003cnil\u003e practice_area_id:3 practice_area_name:Back Office primary_external_code:\u003cnil\u003e processing:false responsible_created_at:\u003cnil\u003e responsible_days_allow:\u003cnil\u003e responsible_email:\u003cnil\u003e responsible_enabled:\u003cnil\u003e responsible_fullname:\u003cnil\u003e responsible_id:\u003cnil\u003e responsible_locale:\u003cnil\u003e responsible_shortname:\u003cnil\u003e responsible_super_admin:\u003cnil\u003e responsible_updated_at:\u003cnil\u003e responsible_user_type:\u003cnil\u003e responsible_username:\u003cnil\u003e secondary_external_code:\u003cnil\u003e status:1 status_marking:active sync_updated_at:2025-07-30 10:51:15.1784416 -0400 -04 m=+236.695952301 updated_at:2024-10-03 17:25:28 with_iva:true]","time":"2025-07-30T10:51:48-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000341-RE-000732, 2918","time":"2025-07-30T10:51:49-04:00"} +{"file":"operaciones.go:51","func":"db.(*GormDatabase).SyncRows","level":"debug","msg":"[🧹 Tabla: public.sync_proyectos] Procesando batch de 100 registros","time":"2025-07-30T10:51:49-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 31, 000864-RE-000051","time":"2025-07-30T10:51:49-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000452-RE-000058, 1010","time":"2025-07-30T10:51:49-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1012, 000452-RE-000085","time":"2025-07-30T10:51:49-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1014, 000452-RE-000126","time":"2025-07-30T10:51:49-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1017, 000451-RE-000057","time":"2025-07-30T10:51:49-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1018, 000451-RE-000059","time":"2025-07-30T10:51:49-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1019, 000451-RE-000068","time":"2025-07-30T10:51:50-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1021, 000451-RE-000080","time":"2025-07-30T10:51:50-04:00"} +{"file":"operaciones.go:70","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"⚠️ Registro incompleto para update (faltan claves): map[apply_procedures:\u003cnil\u003e billable:0 business_customer_code:\u003cnil\u003e case_number:\u003cnil\u003e closed_date:2024-02-19 00:00:00 confidential:false created_at:2024-02-19 17:39:41 customer_company_id:1 customer_company_name:MB SERVICIOS REGULATORIOS S.R.L. customer_id:764 customer_name:NUTRICIA EXPORT B.V. customer_primary_code:864 discount_amount:\u003cnil\u003e discount_percent:\u003cnil\u003e display_name:000864-RE-000173 - Servicios Legales Mensuales por Horas (FM) enable_business_allowed_users:0 expedient:000864-RE-000173 finished_date:\u003cnil\u003e fix_rate_value:0 hour_limit:\u003cnil\u003e id:2333 internal_code:\u003cnil\u003e is_billable:true limit_alert:\u003cnil\u003e notes: partial_charges:0 practice_area_code:AR31 practice_area_id:28 practice_area_name:Registros Sanitarios-Regul. primary_external_code:\u003cnil\u003e processing:false responsible_created_at:2023-12-26 22:28:14 responsible_days_allow:302 responsible_email:rclaure@emba.com responsible_enabled:true responsible_fullname:Rene Claure Veizaga responsible_id:10 responsible_locale:es responsible_shortname:rclaure responsible_super_admin:false responsible_updated_at:2024-09-02 16:33:04 responsible_user_type:1 responsible_username:rclaure@emba.com secondary_external_code:\u003cnil\u003e status:1 status_marking:active sync_updated_at:2025-07-30 10:51:15.1784416 -0400 -04 m=+236.695952301 updated_at:2024-03-05 23:17:45 with_iva:true]","time":"2025-07-30T10:51:50-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000451-RE-000175, 2339","time":"2025-07-30T10:51:50-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000452-RE-000177, 2347","time":"2025-07-30T10:51:50-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2354, 000451-RE-000319","time":"2025-07-30T10:51:50-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2355, 000451-RE-000320","time":"2025-07-30T10:51:50-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2356, 000451-RE-000321","time":"2025-07-30T10:51:50-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2361, 000451-RE-000326","time":"2025-07-30T10:51:50-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2362, 000451-RE-000327","time":"2025-07-30T10:51:50-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2363, 000451-RE-000328","time":"2025-07-30T10:51:50-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2364, 000451-RE-000329","time":"2025-07-30T10:51:50-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2365, 000451-RE-000330","time":"2025-07-30T10:51:50-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2366, 000452-RE-000331","time":"2025-07-30T10:51:51-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2402, 000403-RE-000348","time":"2025-07-30T10:51:51-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2403, 000403-RE-000349","time":"2025-07-30T10:51:51-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2404, 000403-RE-000350","time":"2025-07-30T10:51:51-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2405, 000403-RE-000351","time":"2025-07-30T10:51:51-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2406, 000403-RE-000352","time":"2025-07-30T10:51:51-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2407, 000403-RE-000353","time":"2025-07-30T10:51:51-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2408, 000403-RE-000354","time":"2025-07-30T10:51:51-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2409, 000403-RE-000355","time":"2025-07-30T10:51:51-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2464, 000361-RE-000410","time":"2025-07-30T10:51:51-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2465, 000361-RE-000411","time":"2025-07-30T10:51:51-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2466, 000361-RE-000412","time":"2025-07-30T10:51:51-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2471, 000509-RE-000417","time":"2025-07-30T10:51:52-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000509-RE-000418, 2472","time":"2025-07-30T10:51:52-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2473, 000509-RE-000419","time":"2025-07-30T10:51:52-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2474, 000509-RE-000420","time":"2025-07-30T10:51:52-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000451-RE-000494, 2551","time":"2025-07-30T10:51:52-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2555, 000403-RE-000496","time":"2025-07-30T10:51:52-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2556, 000452-RE-000497","time":"2025-07-30T10:51:52-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2560, 000451-RE-000500","time":"2025-07-30T10:51:52-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2586, 000403-RE-000518","time":"2025-07-30T10:51:52-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2625, 000403-RE-000559","time":"2025-07-30T10:51:52-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2713, 000403-RE-000601","time":"2025-07-30T10:51:52-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2714, 000403-RE-000602","time":"2025-07-30T10:51:52-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2715, 000403-RE-000603","time":"2025-07-30T10:51:53-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2716, 000403-RE-000604","time":"2025-07-30T10:51:53-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2717, 000403-RE-000605","time":"2025-07-30T10:51:53-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2718, 000403-RE-000606","time":"2025-07-30T10:51:53-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2719, 000403-RE-000607","time":"2025-07-30T10:51:53-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2720, 000403-RE-000608","time":"2025-07-30T10:51:53-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2725, 000451-RE-000613","time":"2025-07-30T10:51:53-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2726, 000451-RE-000614","time":"2025-07-30T10:51:53-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2730, 000452-RE-000618","time":"2025-07-30T10:51:53-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2771, 000451-RE-000642","time":"2025-07-30T10:51:53-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2780, 000452-RE-000643","time":"2025-07-30T10:51:53-04:00"} +{"file":"operaciones.go:70","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"⚠️ Registro incompleto para update (faltan claves): map[apply_procedures:\u003cnil\u003e billable:0 business_customer_code:\u003cnil\u003e case_number:\u003cnil\u003e closed_date:2024-05-08 00:00:00 confidential:false created_at:2024-04-23 14:53:54 customer_company_id:1 customer_company_name:MB SERVICIOS REGULATORIOS S.R.L. customer_id:875 customer_name:PRUEBAS 2304 customer_primary_code:977 discount_amount:\u003cnil\u003e discount_percent:\u003cnil\u003e display_name:000977-SC-000971 - Servicios Legales integrales por hora enable_business_allowed_users:0 expedient:000977-SC-000971 finished_date:\u003cnil\u003e fix_rate_value:0 hour_limit:\u003cnil\u003e id:2833 internal_code:\u003cnil\u003e is_billable:true limit_alert:\u003cnil\u003e notes: partial_charges:0 practice_area_code:AR07 practice_area_id:1 practice_area_name:Agronegocios primary_external_code:\u003cnil\u003e processing:false responsible_created_at:2012-05-08 14:49:53 responsible_days_allow:302 responsible_email:ihurtado@emba.com responsible_enabled:true responsible_fullname:Ingrid Hurtado responsible_id:1 responsible_locale:es responsible_shortname:ihurtado responsible_super_admin:true responsible_updated_at:2024-09-02 16:33:04 responsible_user_type:0 responsible_username:ihurtado@emba.com secondary_external_code:\u003cnil\u003e status:1 status_marking:active sync_updated_at:2025-07-30 10:51:15.1784416 -0400 -04 m=+236.695952301 updated_at:2024-05-08 17:36:11 with_iva:true]","time":"2025-07-30T10:51:53-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2834, 000975-BK-000363","time":"2025-07-30T10:51:53-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2835, 000975-RE-000682","time":"2025-07-30T10:51:54-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2836, 000978-RE-000683","time":"2025-07-30T10:51:54-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2837, 000978-RE-000684","time":"2025-07-30T10:51:54-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2838, 000978-RE-000685","time":"2025-07-30T10:51:54-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2839, 000978-BK-000364","time":"2025-07-30T10:51:54-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2840, 000982-SR-001169","time":"2025-07-30T10:51:54-04:00"} +{"file":"operaciones.go:70","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"⚠️ Registro incompleto para update (faltan claves): map[apply_procedures:\u003cnil\u003e billable:0 business_customer_code:\u003cnil\u003e case_number:\u003cnil\u003e closed_date:2024-05-10 00:00:00 confidential:false created_at:2024-05-10 20:03:24 customer_company_id:1 customer_company_name:MB SERVICIOS REGULATORIOS S.R.L. customer_id:881 customer_name:cyzone customer_primary_code:983 discount_amount:\u003cnil\u003e discount_percent:\u003cnil\u003e display_name:000983-RE-000686 - Servicios Legales integrales por hora enable_business_allowed_users:0 expedient:000983-RE-000686 finished_date:\u003cnil\u003e fix_rate_value:0 hour_limit:\u003cnil\u003e id:2841 internal_code:\u003cnil\u003e is_billable:true limit_alert:\u003cnil\u003e notes: partial_charges:0 practice_area_code:AR07 practice_area_id:1 practice_area_name:Agronegocios primary_external_code:\u003cnil\u003e processing:false responsible_created_at:2012-05-08 14:49:53 responsible_days_allow:302 responsible_email:ihurtado@emba.com responsible_enabled:true responsible_fullname:Ingrid Hurtado responsible_id:1 responsible_locale:es responsible_shortname:ihurtado responsible_super_admin:true responsible_updated_at:2024-09-02 16:33:04 responsible_user_type:0 responsible_username:ihurtado@emba.com secondary_external_code:\u003cnil\u003e status:1 status_marking:pending_completion sync_updated_at:2025-07-30 10:51:15.1784416 -0400 -04 m=+236.695952301 updated_at:2024-05-10 20:03:24 with_iva:true]","time":"2025-07-30T10:51:54-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2849, 000975-BK-000365","time":"2025-07-30T10:51:54-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000992-RE-000690, 2850","time":"2025-07-30T10:51:54-04:00"} +{"file":"operaciones.go:70","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"⚠️ Registro incompleto para update (faltan claves): map[apply_procedures:\u003cnil\u003e billable:0 business_customer_code:\u003cnil\u003e case_number:\u003cnil\u003e closed_date:2024-07-18 00:00:00 confidential:false created_at:2024-07-18 12:30:00 customer_company_id:1 customer_company_name:MB SERVICIOS REGULATORIOS S.R.L. customer_id:900 customer_name:prueba roles y usuarios customer_primary_code:1002 discount_amount:\u003cnil\u003e discount_percent:\u003cnil\u003e display_name:001002-BK-000366 - prueba roles y usuarios enable_business_allowed_users:0 expedient:001002-BK-000366 finished_date:\u003cnil\u003e fix_rate_value:0 hour_limit:\u003cnil\u003e id:2852 internal_code:\u003cnil\u003e is_billable:true limit_alert:\u003cnil\u003e notes: partial_charges:0 practice_area_code:AR07 practice_area_id:1 practice_area_name:Agronegocios primary_external_code:\u003cnil\u003e processing:false responsible_created_at:\u003cnil\u003e responsible_days_allow:\u003cnil\u003e responsible_email:\u003cnil\u003e responsible_enabled:\u003cnil\u003e responsible_fullname:\u003cnil\u003e responsible_id:\u003cnil\u003e responsible_locale:\u003cnil\u003e responsible_shortname:\u003cnil\u003e responsible_super_admin:\u003cnil\u003e responsible_updated_at:\u003cnil\u003e responsible_user_type:\u003cnil\u003e responsible_username:\u003cnil\u003e secondary_external_code:\u003cnil\u003e status:1 status_marking:active sync_updated_at:2025-07-30 10:51:15.1784416 -0400 -04 m=+236.695952301 updated_at:2024-07-18 12:48:05 with_iva:true]","time":"2025-07-30T10:51:54-04:00"} +{"file":"operaciones.go:70","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"⚠️ Registro incompleto para update (faltan claves): map[apply_procedures:\u003cnil\u003e billable:0 business_customer_code:\u003cnil\u003e case_number:\u003cnil\u003e closed_date:2024-07-23 00:00:00 confidential:false created_at:2024-07-23 13:37:44 customer_company_id:1 customer_company_name:MB SERVICIOS REGULATORIOS S.R.L. customer_id:884 customer_name:Cliente Openatlas.com customer_primary_code:986 discount_amount:\u003cnil\u003e discount_percent:\u003cnil\u003e display_name:000986-RE-000691 - Procesos Internos enable_business_allowed_users:0 expedient:000986-RE-000691 finished_date:\u003cnil\u003e fix_rate_value:0 hour_limit:\u003cnil\u003e id:2853 internal_code:\u003cnil\u003e is_billable:true limit_alert:\u003cnil\u003e notes: partial_charges:0 practice_area_code:AR04 practice_area_id:2 practice_area_name:Arbitraje primary_external_code:\u003cnil\u003e processing:false responsible_created_at:2021-05-11 23:40:08 responsible_days_allow:302 responsible_email:pcorredor26@gmail.com responsible_enabled:true responsible_fullname:AMTM Pruebas responsible_id:77 responsible_locale:es responsible_shortname:AM responsible_super_admin:true responsible_updated_at:2025-07-21 10:12:54 responsible_user_type:1 responsible_username:pcorredor26@gmail.com secondary_external_code:\u003cnil\u003e status:1 status_marking:active sync_updated_at:2025-07-30 10:51:15.1784416 -0400 -04 m=+236.695952301 updated_at:2024-07-23 13:38:11 with_iva:true]","time":"2025-07-30T10:51:54-04:00"} +{"file":"operaciones.go:70","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"⚠️ Registro incompleto para update (faltan claves): map[apply_procedures:\u003cnil\u003e billable:0 business_customer_code:\u003cnil\u003e case_number:\u003cnil\u003e closed_date:2024-08-26 00:00:00 confidential:false created_at:2024-08-26 20:14:13 customer_company_id:2 customer_company_name:MORENO BALDIVIESO SRL customer_id:1 customer_name:360 consulting group customer_primary_code:240 discount_amount:\u003cnil\u003e discount_percent:\u003cnil\u003e display_name:000240-RE-000697 - Test Any prueba enable_business_allowed_users:0 expedient:000240-RE-000697 finished_date:\u003cnil\u003e fix_rate_value:0 hour_limit:\u003cnil\u003e id:2866 internal_code:\u003cnil\u003e is_billable:true limit_alert:\u003cnil\u003e notes: partial_charges:0 practice_area_code:AR04 practice_area_id:2 practice_area_name:Arbitraje primary_external_code:\u003cnil\u003e processing:false responsible_created_at:\u003cnil\u003e responsible_days_allow:\u003cnil\u003e responsible_email:\u003cnil\u003e responsible_enabled:\u003cnil\u003e responsible_fullname:\u003cnil\u003e responsible_id:\u003cnil\u003e responsible_locale:\u003cnil\u003e responsible_shortname:\u003cnil\u003e responsible_super_admin:\u003cnil\u003e responsible_updated_at:\u003cnil\u003e responsible_user_type:\u003cnil\u003e responsible_username:\u003cnil\u003e secondary_external_code:\u003cnil\u003e status:1 status_marking:active sync_updated_at:2025-07-30 10:51:15.1784416 -0400 -04 m=+236.695952301 updated_at:2024-08-26 20:14:13 with_iva:true]","time":"2025-07-30T10:51:54-04:00"} +{"file":"operaciones.go:70","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"⚠️ Registro incompleto para update (faltan claves): map[apply_procedures:\u003cnil\u003e billable:0 business_customer_code:\u003cnil\u003e case_number:\u003cnil\u003e closed_date:2024-08-29 00:00:00 confidential:false created_at:2024-08-29 09:33:01 customer_company_id:2 customer_company_name:MORENO BALDIVIESO SRL customer_id:1 customer_name:360 consulting group customer_primary_code:240 discount_amount:\u003cnil\u003e discount_percent:\u003cnil\u003e display_name:000240-BK-000374 - prueba alertas enable_business_allowed_users:0 expedient:000240-BK-000374 finished_date:\u003cnil\u003e fix_rate_value:10000 hour_limit:10 id:2867 internal_code:\u003cnil\u003e is_billable:true limit_alert:50 notes: partial_charges:0 practice_area_code:AR07 practice_area_id:1 practice_area_name:Agronegocios primary_external_code:\u003cnil\u003e processing:false responsible_created_at:2021-05-11 23:40:08 responsible_days_allow:70 responsible_email:nicoln042001@gmail.com responsible_enabled:true responsible_fullname:Soporte QA timekeeper responsible_id:87 responsible_locale:es responsible_shortname:QA responsible_super_admin:false responsible_updated_at:2025-04-07 12:03:19 responsible_user_type:1 responsible_username:nicoln042001@gmail.com secondary_external_code:\u003cnil\u003e status:1 status_marking:approved sync_updated_at:2025-07-30 10:51:15.1784416 -0400 -04 m=+236.695952301 updated_at:2024-08-29 18:29:39 with_iva:true]","time":"2025-07-30T10:51:54-04:00"} +{"file":"operaciones.go:70","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"⚠️ Registro incompleto para update (faltan claves): map[apply_procedures:\u003cnil\u003e billable:0 business_customer_code:\u003cnil\u003e case_number:\u003cnil\u003e closed_date:2024-08-29 00:00:00 confidential:false created_at:2024-08-29 09:36:27 customer_company_id:2 customer_company_name:MORENO BALDIVIESO SRL customer_id:1 customer_name:360 consulting group customer_primary_code:240 discount_amount:\u003cnil\u003e discount_percent:\u003cnil\u003e display_name:000240-BK-000375 - prueba alertas monto fijo mes enable_business_allowed_users:0 expedient:000240-BK-000375 finished_date:\u003cnil\u003e fix_rate_value:0 hour_limit:3 id:2868 internal_code:\u003cnil\u003e is_billable:true limit_alert:\u003cnil\u003e notes: partial_charges:0 practice_area_code:AR07 practice_area_id:1 practice_area_name:Agronegocios primary_external_code:\u003cnil\u003e processing:false responsible_created_at:\u003cnil\u003e responsible_days_allow:\u003cnil\u003e responsible_email:\u003cnil\u003e responsible_enabled:\u003cnil\u003e responsible_fullname:\u003cnil\u003e responsible_id:\u003cnil\u003e responsible_locale:\u003cnil\u003e responsible_shortname:\u003cnil\u003e responsible_super_admin:\u003cnil\u003e responsible_updated_at:\u003cnil\u003e responsible_user_type:\u003cnil\u003e responsible_username:\u003cnil\u003e secondary_external_code:\u003cnil\u003e status:1 status_marking:active sync_updated_at:2025-07-30 10:51:15.1784416 -0400 -04 m=+236.695952301 updated_at:2024-09-04 19:47:55 with_iva:true]","time":"2025-07-30T10:51:54-04:00"} +{"file":"operaciones.go:70","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"⚠️ Registro incompleto para update (faltan claves): map[apply_procedures:\u003cnil\u003e billable:0 business_customer_code: case_number: closed_date:\u003cnil\u003e confidential:false created_at:2024-08-29 14:47:30 customer_company_id:2 customer_company_name:MORENO BALDIVIESO SRL customer_id:1 customer_name:360 consulting group customer_primary_code:240 discount_amount:\u003cnil\u003e discount_percent:0 display_name:12133 - prueba alertas enable_business_allowed_users:0 expedient:12133 finished_date:2024-08-29 00:00:00 fix_rate_value:10000 hour_limit:3 id:2869 internal_code: is_billable:true limit_alert:\u003cnil\u003e notes: partial_charges:0 practice_area_code:AR07 practice_area_id:1 practice_area_name:Agronegocios primary_external_code:\u003cnil\u003e processing:false responsible_created_at:2021-05-11 23:40:08 responsible_days_allow:70 responsible_email:nicoln042001@gmail.com responsible_enabled:true responsible_fullname:Soporte QA timekeeper responsible_id:87 responsible_locale:es responsible_shortname:QA responsible_super_admin:false responsible_updated_at:2025-04-07 12:03:19 responsible_user_type:1 responsible_username:nicoln042001@gmail.com secondary_external_code:\u003cnil\u003e status:1 status_marking:active sync_updated_at:2025-07-30 10:51:15.1784416 -0400 -04 m=+236.695952301 updated_at:2024-08-29 14:47:30 with_iva:true]","time":"2025-07-30T10:51:54-04:00"} +{"file":"operaciones.go:70","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"⚠️ Registro incompleto para update (faltan claves): map[apply_procedures:\u003cnil\u003e billable:0 business_customer_code: case_number: closed_date:\u003cnil\u003e confidential:false created_at:2024-08-29 15:20:48 customer_company_id:2 customer_company_name:MORENO BALDIVIESO SRL customer_id:1 customer_name:360 consulting group customer_primary_code:240 discount_amount:\u003cnil\u003e discount_percent:0 display_name:1234567 - prueba alertas monto fijo mes enable_business_allowed_users:0 expedient:1234567 finished_date:\u003cnil\u003e fix_rate_value:10000 hour_limit:3 id:2870 internal_code: is_billable:true limit_alert:\u003cnil\u003e notes: partial_charges:0 practice_area_code:AR07 practice_area_id:1 practice_area_name:Agronegocios primary_external_code:\u003cnil\u003e processing:false responsible_created_at:2021-05-11 23:40:08 responsible_days_allow:70 responsible_email:nicoln042001@gmail.com responsible_enabled:true responsible_fullname:Soporte QA timekeeper responsible_id:87 responsible_locale:es responsible_shortname:QA responsible_super_admin:false responsible_updated_at:2025-04-07 12:03:19 responsible_user_type:1 responsible_username:nicoln042001@gmail.com secondary_external_code:\u003cnil\u003e status:1 status_marking:active sync_updated_at:2025-07-30 10:51:15.1784416 -0400 -04 m=+236.695952301 updated_at:2024-08-29 15:20:48 with_iva:true]","time":"2025-07-30T10:51:54-04:00"} +{"file":"operaciones.go:70","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"⚠️ Registro incompleto para update (faltan claves): map[apply_procedures:\u003cnil\u003e billable:0 business_customer_code:\u003cnil\u003e case_number:\u003cnil\u003e closed_date:2025-06-12 00:00:00 confidential:false created_at:2024-08-29 18:35:24 customer_company_id:2 customer_company_name:MORENO BALDIVIESO SRL customer_id:1 customer_name:360 consulting group customer_primary_code:240 discount_amount:\u003cnil\u003e discount_percent:0 display_name:000240-BK-000376 - prueba limites enable_business_allowed_users:0 expedient:000240-BK-000376 finished_date:\u003cnil\u003e fix_rate_value:15000 hour_limit:4 id:2871 internal_code:\u003cnil\u003e is_billable:true limit_alert:100 notes: partial_charges:0 practice_area_code:AR07 practice_area_id:1 practice_area_name:Agronegocios primary_external_code:\u003cnil\u003e processing:false responsible_created_at:\u003cnil\u003e responsible_days_allow:\u003cnil\u003e responsible_email:\u003cnil\u003e responsible_enabled:\u003cnil\u003e responsible_fullname:\u003cnil\u003e responsible_id:\u003cnil\u003e responsible_locale:\u003cnil\u003e responsible_shortname:\u003cnil\u003e responsible_super_admin:\u003cnil\u003e responsible_updated_at:\u003cnil\u003e responsible_user_type:\u003cnil\u003e responsible_username:\u003cnil\u003e secondary_external_code:\u003cnil\u003e status:1 status_marking:active sync_updated_at:2025-07-30 10:51:15.1784416 -0400 -04 m=+236.695952301 updated_at:2025-06-12 11:37:12 with_iva:true]","time":"2025-07-30T10:51:54-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2872, 000240-RE-000698","time":"2025-07-30T10:51:55-04:00"} +{"file":"operaciones.go:70","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"⚠️ Registro incompleto para update (faltan claves): map[apply_procedures:\u003cnil\u003e billable:0 business_customer_code:\u003cnil\u003e case_number:\u003cnil\u003e closed_date:2024-08-29 00:00:00 confidential:false created_at:2024-08-29 18:47:39 customer_company_id:2 customer_company_name:MORENO BALDIVIESO SRL customer_id:1 customer_name:360 consulting group customer_primary_code:240 discount_amount:\u003cnil\u003e discount_percent:\u003cnil\u003e display_name:000240-BK-000377 - prueba monto fijo mensual alertas enable_business_allowed_users:0 expedient:000240-BK-000377 finished_date:\u003cnil\u003e fix_rate_value:0 hour_limit:3 id:2873 internal_code:\u003cnil\u003e is_billable:true limit_alert:\u003cnil\u003e notes: partial_charges:0 practice_area_code:AR07 practice_area_id:1 practice_area_name:Agronegocios primary_external_code:\u003cnil\u003e processing:false responsible_created_at:\u003cnil\u003e responsible_days_allow:\u003cnil\u003e responsible_email:\u003cnil\u003e responsible_enabled:\u003cnil\u003e responsible_fullname:\u003cnil\u003e responsible_id:\u003cnil\u003e responsible_locale:\u003cnil\u003e responsible_shortname:\u003cnil\u003e responsible_super_admin:\u003cnil\u003e responsible_updated_at:\u003cnil\u003e responsible_user_type:\u003cnil\u003e responsible_username:\u003cnil\u003e secondary_external_code:\u003cnil\u003e status:1 status_marking:active sync_updated_at:2025-07-30 10:51:15.1784416 -0400 -04 m=+236.695952301 updated_at:2024-08-29 18:47:39 with_iva:true]","time":"2025-07-30T10:51:55-04:00"} +{"file":"operaciones.go:70","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"⚠️ Registro incompleto para update (faltan claves): map[apply_procedures:\u003cnil\u003e billable:0 business_customer_code: case_number:\u003cnil\u003e closed_date:2024-08-29 00:00:00 confidential:false created_at:2024-08-29 18:57:31 customer_company_id:2 customer_company_name:MORENO BALDIVIESO SRL customer_id:1 customer_name:360 consulting group customer_primary_code:240 discount_amount:\u003cnil\u003e discount_percent:0 display_name:000240000699 - prueba porcentaje limite m.mensual enable_business_allowed_users:0 expedient:000240000699 finished_date:2024-08-29 00:00:00 fix_rate_value:10000 hour_limit:3 id:2874 internal_code: is_billable:true limit_alert:50 notes: partial_charges:0 practice_area_code:AR07 practice_area_id:1 practice_area_name:Agronegocios primary_external_code:\u003cnil\u003e processing:false responsible_created_at:2021-05-11 23:40:08 responsible_days_allow:70 responsible_email:nicoln042001@gmail.com responsible_enabled:true responsible_fullname:Soporte QA timekeeper responsible_id:87 responsible_locale:es responsible_shortname:QA responsible_super_admin:false responsible_updated_at:2025-04-07 12:03:19 responsible_user_type:1 responsible_username:nicoln042001@gmail.com secondary_external_code:\u003cnil\u003e status:1 status_marking:active sync_updated_at:2025-07-30 10:51:15.1784416 -0400 -04 m=+236.695952301 updated_at:2024-09-04 19:48:58 with_iva:true]","time":"2025-07-30T10:51:55-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2880, 000240-RE-000704","time":"2025-07-30T10:51:55-04:00"} +{"file":"operaciones.go:70","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"⚠️ Registro incompleto para update (faltan claves): map[apply_procedures:\u003cnil\u003e billable:0 business_customer_code:\u003cnil\u003e case_number:\u003cnil\u003e closed_date:2024-09-09 00:00:00 confidential:false created_at:2024-09-09 15:19:09 customer_company_id:2 customer_company_name:MORENO BALDIVIESO SRL customer_id:1 customer_name:360 consulting group customer_primary_code:240 discount_amount:\u003cnil\u003e discount_percent:\u003cnil\u003e display_name:000240-RE-000705 - ASUNTO PENDIENTE enable_business_allowed_users:0 expedient:000240-RE-000705 finished_date:\u003cnil\u003e fix_rate_value:0 hour_limit:3 id:2881 internal_code:\u003cnil\u003e is_billable:true limit_alert:\u003cnil\u003e notes: partial_charges:0 practice_area_code:AR07 practice_area_id:1 practice_area_name:Agronegocios primary_external_code:\u003cnil\u003e processing:false responsible_created_at:2023-12-26 22:28:14 responsible_days_allow:302 responsible_email:nicoln042001@gmail.com responsible_enabled:true responsible_fullname:Daniel Marcelo Arredondo Zelada responsible_id:6 responsible_locale:es responsible_shortname:darredon responsible_super_admin:false responsible_updated_at:2024-09-03 11:43:07 responsible_user_type:1 responsible_username:darredondo@emba.com.bo secondary_external_code:\u003cnil\u003e status:1 status_marking:pending_completion sync_updated_at:2025-07-30 10:51:15.1784416 -0400 -04 m=+236.695952301 updated_at:2024-09-09 16:34:59 with_iva:true]","time":"2025-07-30T10:51:55-04:00"} +{"file":"operaciones.go:70","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"⚠️ Registro incompleto para update (faltan claves): map[apply_procedures:\u003cnil\u003e billable:0 business_customer_code:\u003cnil\u003e case_number:\u003cnil\u003e closed_date:2025-03-17 00:00:00 confidential:false created_at:2024-09-09 15:56:55 customer_company_id:2 customer_company_name:MORENO BALDIVIESO SRL customer_id:1 customer_name:360 consulting group customer_primary_code:240 discount_amount:\u003cnil\u003e discount_percent:\u003cnil\u003e display_name:000240-SC-000972 - ASUNTO PENDIENTE M.FIJO enable_business_allowed_users:0 expedient:000240-SC-000972 finished_date:\u003cnil\u003e fix_rate_value:0 hour_limit:3 id:2882 internal_code:\u003cnil\u003e is_billable:true limit_alert:\u003cnil\u003e notes: partial_charges:0 practice_area_code:AR07 practice_area_id:1 practice_area_name:Agronegocios primary_external_code:\u003cnil\u003e processing:false responsible_created_at:\u003cnil\u003e responsible_days_allow:\u003cnil\u003e responsible_email:\u003cnil\u003e responsible_enabled:\u003cnil\u003e responsible_fullname:\u003cnil\u003e responsible_id:\u003cnil\u003e responsible_locale:\u003cnil\u003e responsible_shortname:\u003cnil\u003e responsible_super_admin:\u003cnil\u003e responsible_updated_at:\u003cnil\u003e responsible_user_type:\u003cnil\u003e responsible_username:\u003cnil\u003e secondary_external_code:\u003cnil\u003e status:1 status_marking:active sync_updated_at:2025-07-30 10:51:15.1784416 -0400 -04 m=+236.695952301 updated_at:2025-03-17 16:12:10 with_iva:true]","time":"2025-07-30T10:51:55-04:00"} +{"file":"operaciones.go:70","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"⚠️ Registro incompleto para update (faltan claves): map[apply_procedures:\u003cnil\u003e billable:0 business_customer_code:\u003cnil\u003e case_number:\u003cnil\u003e closed_date:2024-09-09 00:00:00 confidential:false created_at:2024-09-09 16:28:10 customer_company_id:2 customer_company_name:MORENO BALDIVIESO SRL customer_id:1 customer_name:360 consulting group customer_primary_code:240 discount_amount:\u003cnil\u003e discount_percent:\u003cnil\u003e display_name:000240-BK-000378 - ASUNTO PENDIENTE M.FIJO enable_business_allowed_users:0 expedient:000240-BK-000378 finished_date:\u003cnil\u003e fix_rate_value:0 hour_limit:3 id:2883 internal_code:\u003cnil\u003e is_billable:true limit_alert:\u003cnil\u003e notes: partial_charges:0 practice_area_code:AR07 practice_area_id:1 practice_area_name:Agronegocios primary_external_code:\u003cnil\u003e processing:false responsible_created_at:2023-12-26 22:28:14 responsible_days_allow:302 responsible_email:nicoln042001@gmail.com responsible_enabled:true responsible_fullname:Daniel Marcelo Arredondo Zelada responsible_id:6 responsible_locale:es responsible_shortname:darredon responsible_super_admin:false responsible_updated_at:2024-09-03 11:43:07 responsible_user_type:1 responsible_username:darredondo@emba.com.bo secondary_external_code:\u003cnil\u003e status:1 status_marking:pending_completion sync_updated_at:2025-07-30 10:51:15.1784416 -0400 -04 m=+236.695952301 updated_at:2024-09-09 16:28:10 with_iva:true]","time":"2025-07-30T10:51:55-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2894, 000403-RE-000715","time":"2025-07-30T10:51:55-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2898, 000509-RE-000717","time":"2025-07-30T10:51:55-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2899, 000452-RE-000718","time":"2025-07-30T10:51:55-04:00"} +{"file":"operaciones.go:70","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"⚠️ Registro incompleto para update (faltan claves): map[apply_procedures:\u003cnil\u003e billable:0 business_customer_code:\u003cnil\u003e case_number:\u003cnil\u003e closed_date:2024-09-25 00:00:00 confidential:false created_at:2024-09-25 16:55:08 customer_company_id:1 customer_company_name:MB SERVICIOS REGULATORIOS S.R.L. customer_id:483 customer_name:OXYMAT customer_primary_code:509 discount_amount:\u003cnil\u003e discount_percent:\u003cnil\u003e display_name:000509-SC-000978 - Test Any prueba enable_business_allowed_users:0 expedient:000509-SC-000978 finished_date:\u003cnil\u003e fix_rate_value:0 hour_limit:10 id:2906 internal_code:\u003cnil\u003e is_billable:true limit_alert:\u003cnil\u003e notes: partial_charges:0 practice_area_code:AR17 practice_area_id:6 practice_area_name:Der.Comercial \n primary_external_code:\u003cnil\u003e processing:false responsible_created_at:2023-12-26 22:28:16 responsible_days_allow:302 responsible_email:aloayza@emba.com responsible_enabled:true responsible_fullname:Ana Luz Loayza responsible_id:51 responsible_locale:es responsible_shortname:aloayza responsible_super_admin:false responsible_updated_at:2024-09-02 16:33:04 responsible_user_type:1 responsible_username:aloayza@emba.com secondary_external_code:\u003cnil\u003e status:1 status_marking:active sync_updated_at:2025-07-30 10:51:15.1784416 -0400 -04 m=+236.695952301 updated_at:2024-09-30 17:56:11 with_iva:true]","time":"2025-07-30T10:51:55-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2907, 000509-RE-000722","time":"2025-07-30T10:51:55-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2915, 000509-RE-000729","time":"2025-07-30T10:51:55-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2916, 000509-RE-000730","time":"2025-07-30T10:51:55-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2917, 000452-RE-000731","time":"2025-07-30T10:51:55-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2922, 000509-RE-000734","time":"2025-07-30T10:51:56-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000864-SR-001175, 2934","time":"2025-07-30T10:51:56-04:00"} +{"file":"operaciones.go:70","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"⚠️ Registro incompleto para update (faltan claves): map[apply_procedures:\u003cnil\u003e billable:0 business_customer_code:\u003cnil\u003e case_number:\u003cnil\u003e closed_date:2024-12-13 00:00:00 confidential:false created_at:2024-12-13 10:48:26 customer_company_id:1 customer_company_name:MB SERVICIOS REGULATORIOS S.R.L. customer_id:923 customer_name:NAVIDAD customer_primary_code:1025 discount_amount:\u003cnil\u003e discount_percent:\u003cnil\u003e display_name:001025-RE-000745 - Transferencia de Cuotas y Activos enable_business_allowed_users:0 expedient:001025-RE-000745 finished_date:\u003cnil\u003e fix_rate_value:0 hour_limit:\u003cnil\u003e id:2938 internal_code:\u003cnil\u003e is_billable:true limit_alert:\u003cnil\u003e notes: partial_charges:0 practice_area_code:AR07 practice_area_id:1 practice_area_name:Agronegocios primary_external_code:\u003cnil\u003e processing:false responsible_created_at:2021-05-11 23:40:08 responsible_days_allow:302 responsible_email:pcorredor26@gmail.com responsible_enabled:true responsible_fullname:AMTM Pruebas responsible_id:77 responsible_locale:es responsible_shortname:AM responsible_super_admin:true responsible_updated_at:2025-07-21 10:12:54 responsible_user_type:1 responsible_username:pcorredor26@gmail.com secondary_external_code:\u003cnil\u003e status:1 status_marking:active sync_updated_at:2025-07-30 10:51:15.1784416 -0400 -04 m=+236.695952301 updated_at:2024-12-13 10:50:06 with_iva:true]","time":"2025-07-30T10:51:56-04:00"} +{"file":"operaciones.go:70","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"⚠️ Registro incompleto para update (faltan claves): map[apply_procedures:\u003cnil\u003e billable:0 business_customer_code:\u003cnil\u003e case_number:\u003cnil\u003e closed_date:2024-12-13 00:00:00 confidential:false created_at:2024-12-13 11:23:47 customer_company_id:1 customer_company_name:MB SERVICIOS REGULATORIOS S.R.L. customer_id:924 customer_name:BILBAO customer_primary_code:1026 discount_amount:\u003cnil\u003e discount_percent:\u003cnil\u003e display_name:001026-RE-000746 - Servicios Legales integrales por hora enable_business_allowed_users:0 expedient:001026-RE-000746 finished_date:\u003cnil\u003e fix_rate_value:0 hour_limit:\u003cnil\u003e id:2939 internal_code:\u003cnil\u003e is_billable:true limit_alert:\u003cnil\u003e notes: partial_charges:0 practice_area_code:AR04 practice_area_id:2 practice_area_name:Arbitraje primary_external_code:\u003cnil\u003e processing:false responsible_created_at:2021-05-11 23:40:08 responsible_days_allow:302 responsible_email:pcorredor26@gmail.com responsible_enabled:true responsible_fullname:AMTM Pruebas responsible_id:77 responsible_locale:es responsible_shortname:AM responsible_super_admin:true responsible_updated_at:2025-07-21 10:12:54 responsible_user_type:1 responsible_username:pcorredor26@gmail.com secondary_external_code:\u003cnil\u003e status:1 status_marking:active sync_updated_at:2025-07-30 10:51:15.1784416 -0400 -04 m=+236.695952301 updated_at:2024-12-13 11:28:14 with_iva:true]","time":"2025-07-30T10:51:56-04:00"} +{"file":"operaciones.go:51","func":"db.(*GormDatabase).SyncRows","level":"debug","msg":"[🧹 Tabla: public.sync_proyectos] Procesando batch de 100 registros","time":"2025-07-30T10:51:56-04:00"} +{"file":"operaciones.go:51","func":"db.(*GormDatabase).SyncRows","level":"debug","msg":"[🧹 Tabla: public.sync_proyectos] Procesando batch de 100 registros","time":"2025-07-30T10:52:00-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1353, 000511-SR-000526","time":"2025-07-30T10:52:04-04:00"} +{"file":"operaciones.go:51","func":"db.(*GormDatabase).SyncRows","level":"debug","msg":"[🧹 Tabla: public.sync_proyectos] Procesando batch de 100 registros","time":"2025-07-30T10:52:08-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1299, 000443-SR-000824","time":"2025-07-30T10:52:17-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000187-SR-000814, 1308","time":"2025-07-30T10:52:18-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1311, 000433-SR-000820","time":"2025-07-30T10:52:18-04:00"} +{"file":"operaciones.go:51","func":"db.(*GormDatabase).SyncRows","level":"debug","msg":"[🧹 Tabla: public.sync_proyectos] Procesando batch de 100 registros","time":"2025-07-30T10:52:19-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000113-SR-000003, 436","time":"2025-07-30T10:52:20-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 439, 000440-BK-000345","time":"2025-07-30T10:52:20-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1321, 000369-SR-000808","time":"2025-07-30T10:52:21-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1322, 000369-SR-000817","time":"2025-07-30T10:52:21-04:00"} +{"file":"operaciones.go:70","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"⚠️ Registro incompleto para update (faltan claves): map[apply_procedures:\u003cnil\u003e billable:0 business_customer_code:\u003cnil\u003e case_number:\u003cnil\u003e closed_date:2024-08-12 00:00:00 confidential:false created_at:2024-08-12 16:44:20 customer_company_id:2 customer_company_name:MORENO BALDIVIESO SRL customer_id:379 customer_name:JHONSON \u0026 JHONSON DEL PARAGUAY S.A. customer_primary_code:671 discount_amount:\u003cnil\u003e discount_percent:\u003cnil\u003e display_name:000671-BK-000369 - prueba redondeo monto fijo por asunto enable_business_allowed_users:0 expedient:000671-BK-000369 finished_date:\u003cnil\u003e fix_rate_value:550 hour_limit:\u003cnil\u003e id:2857 internal_code:\u003cnil\u003e is_billable:true limit_alert:\u003cnil\u003e notes: partial_charges:0 practice_area_code:AR07 practice_area_id:1 practice_area_name:Agronegocios primary_external_code:\u003cnil\u003e processing:false responsible_created_at:\u003cnil\u003e responsible_days_allow:\u003cnil\u003e responsible_email:\u003cnil\u003e responsible_enabled:\u003cnil\u003e responsible_fullname:\u003cnil\u003e responsible_id:\u003cnil\u003e responsible_locale:\u003cnil\u003e responsible_shortname:\u003cnil\u003e responsible_super_admin:\u003cnil\u003e responsible_updated_at:\u003cnil\u003e responsible_user_type:\u003cnil\u003e responsible_username:\u003cnil\u003e secondary_external_code:\u003cnil\u003e status:1 status_marking:billed sync_updated_at:2025-07-30 10:51:15.1784416 -0400 -04 m=+236.695952301 updated_at:2024-08-12 17:05:25 with_iva:true]","time":"2025-07-30T10:52:23-04:00"} +{"file":"operaciones.go:70","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"⚠️ Registro incompleto para update (faltan claves): map[apply_procedures:\u003cnil\u003e billable:0 business_customer_code:\u003cnil\u003e case_number:\u003cnil\u003e closed_date:2024-08-12 00:00:00 confidential:false created_at:2024-08-12 16:50:07 customer_company_id:2 customer_company_name:MORENO BALDIVIESO SRL customer_id:379 customer_name:JHONSON \u0026 JHONSON DEL PARAGUAY S.A. customer_primary_code:671 discount_amount:\u003cnil\u003e discount_percent:\u003cnil\u003e display_name:000671-BK-000370 - redondeo horas enable_business_allowed_users:0 expedient:000671-BK-000370 finished_date:\u003cnil\u003e fix_rate_value:0 hour_limit:\u003cnil\u003e id:2858 internal_code:\u003cnil\u003e is_billable:true limit_alert:\u003cnil\u003e notes: partial_charges:0 practice_area_code:\u003cnil\u003e practice_area_id:\u003cnil\u003e practice_area_name:\u003cnil\u003e primary_external_code:\u003cnil\u003e processing:false responsible_created_at:2021-05-11 23:40:08 responsible_days_allow:70 responsible_email:nicoln042001@gmail.com responsible_enabled:true responsible_fullname:Soporte QA timekeeper responsible_id:87 responsible_locale:es responsible_shortname:QA responsible_super_admin:false responsible_updated_at:2025-04-07 12:03:19 responsible_user_type:1 responsible_username:nicoln042001@gmail.com secondary_external_code:\u003cnil\u003e status:1 status_marking:active sync_updated_at:2025-07-30 10:51:15.1784416 -0400 -04 m=+236.695952301 updated_at:2024-08-12 16:54:30 with_iva:true]","time":"2025-07-30T10:52:23-04:00"} +{"file":"operaciones.go:70","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"⚠️ Registro incompleto para update (faltan claves): map[apply_procedures:\u003cnil\u003e billable:0 business_customer_code:\u003cnil\u003e case_number:\u003cnil\u003e closed_date:2024-08-12 00:00:00 confidential:false created_at:2024-08-12 17:07:16 customer_company_id:2 customer_company_name:MORENO BALDIVIESO SRL customer_id:379 customer_name:JHONSON \u0026 JHONSON DEL PARAGUAY S.A. customer_primary_code:671 discount_amount:\u003cnil\u003e discount_percent:\u003cnil\u003e display_name:000671-RE-000693 - redondeo monto fijo mensual enable_business_allowed_users:0 expedient:000671-RE-000693 finished_date:\u003cnil\u003e fix_rate_value:0 hour_limit:\u003cnil\u003e id:2859 internal_code:\u003cnil\u003e is_billable:true limit_alert:\u003cnil\u003e notes: partial_charges:0 practice_area_code:AR07 practice_area_id:1 practice_area_name:Agronegocios primary_external_code:\u003cnil\u003e processing:false responsible_created_at:2021-05-11 23:40:08 responsible_days_allow:70 responsible_email:nicoln042001@gmail.com responsible_enabled:true responsible_fullname:Soporte QA timekeeper responsible_id:87 responsible_locale:es responsible_shortname:QA responsible_super_admin:false responsible_updated_at:2025-04-07 12:03:19 responsible_user_type:1 responsible_username:nicoln042001@gmail.com secondary_external_code:\u003cnil\u003e status:1 status_marking:active sync_updated_at:2025-07-30 10:51:15.1784416 -0400 -04 m=+236.695952301 updated_at:2024-08-12 17:26:37 with_iva:true]","time":"2025-07-30T10:52:24-04:00"} +{"file":"operaciones.go:70","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"⚠️ Registro incompleto para update (faltan claves): map[apply_procedures:\u003cnil\u003e billable:0 business_customer_code:\u003cnil\u003e case_number:\u003cnil\u003e closed_date:2024-08-12 00:00:00 confidential:false created_at:2024-08-12 17:41:06 customer_company_id:2 customer_company_name:MORENO BALDIVIESO SRL customer_id:379 customer_name:JHONSON \u0026 JHONSON DEL PARAGUAY S.A. customer_primary_code:671 discount_amount:\u003cnil\u003e discount_percent:\u003cnil\u003e display_name:000671-BK-000371 - redondeo por hitos enable_business_allowed_users:0 expedient:000671-BK-000371 finished_date:\u003cnil\u003e fix_rate_value:0 hour_limit:\u003cnil\u003e id:2860 internal_code:\u003cnil\u003e is_billable:true limit_alert:\u003cnil\u003e notes: partial_charges:0 practice_area_code:AR07 practice_area_id:1 practice_area_name:Agronegocios primary_external_code:\u003cnil\u003e processing:false responsible_created_at:2021-05-11 23:40:08 responsible_days_allow:70 responsible_email:nicoln042001@gmail.com responsible_enabled:true responsible_fullname:Soporte QA timekeeper responsible_id:87 responsible_locale:es responsible_shortname:QA responsible_super_admin:false responsible_updated_at:2025-04-07 12:03:19 responsible_user_type:1 responsible_username:nicoln042001@gmail.com secondary_external_code:\u003cnil\u003e status:1 status_marking:approved sync_updated_at:2025-07-30 10:51:15.1784416 -0400 -04 m=+236.695952301 updated_at:2024-08-12 19:39:16 with_iva:true]","time":"2025-07-30T10:52:24-04:00"} +{"file":"operaciones.go:70","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"⚠️ Registro incompleto para update (faltan claves): map[apply_procedures:\u003cnil\u003e billable:0 business_customer_code:\u003cnil\u003e case_number:\u003cnil\u003e closed_date:2024-08-12 00:00:00 confidential:false created_at:2024-08-12 19:42:00 customer_company_id:2 customer_company_name:MORENO BALDIVIESO SRL customer_id:379 customer_name:JHONSON \u0026 JHONSON DEL PARAGUAY S.A. customer_primary_code:671 discount_amount:\u003cnil\u003e discount_percent:\u003cnil\u003e display_name:000671-RE-000694 - redondeo por tramites enable_business_allowed_users:0 expedient:000671-RE-000694 finished_date:\u003cnil\u003e fix_rate_value:0 hour_limit:\u003cnil\u003e id:2861 internal_code:\u003cnil\u003e is_billable:true limit_alert:\u003cnil\u003e notes: partial_charges:0 practice_area_code:AR07 practice_area_id:1 practice_area_name:Agronegocios primary_external_code:\u003cnil\u003e processing:false responsible_created_at:2021-05-11 23:40:08 responsible_days_allow:70 responsible_email:nicoln042001@gmail.com responsible_enabled:true responsible_fullname:Soporte QA timekeeper responsible_id:87 responsible_locale:es responsible_shortname:QA responsible_super_admin:false responsible_updated_at:2025-04-07 12:03:19 responsible_user_type:1 responsible_username:nicoln042001@gmail.com secondary_external_code:\u003cnil\u003e status:1 status_marking:active sync_updated_at:2025-07-30 10:51:15.1784416 -0400 -04 m=+236.695952301 updated_at:2024-08-12 19:42:19 with_iva:true]","time":"2025-07-30T10:52:25-04:00"} +{"file":"operaciones.go:70","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"⚠️ Registro incompleto para update (faltan claves): map[apply_procedures:\u003cnil\u003e billable:0 business_customer_code:\u003cnil\u003e case_number:\u003cnil\u003e closed_date:2024-08-12 00:00:00 confidential:false created_at:2024-08-12 20:47:00 customer_company_id:2 customer_company_name:MORENO BALDIVIESO SRL customer_id:379 customer_name:JHONSON \u0026 JHONSON DEL PARAGUAY S.A. customer_primary_code:671 discount_amount:\u003cnil\u003e discount_percent:\u003cnil\u003e display_name:000671-BK-000372 - redondeo horas cap enable_business_allowed_users:0 expedient:000671-BK-000372 finished_date:\u003cnil\u003e fix_rate_value:55 hour_limit:\u003cnil\u003e id:2862 internal_code:\u003cnil\u003e is_billable:true limit_alert:\u003cnil\u003e notes: partial_charges:0 practice_area_code:AR07 practice_area_id:1 practice_area_name:Agronegocios primary_external_code:\u003cnil\u003e processing:false responsible_created_at:2021-05-11 23:40:08 responsible_days_allow:70 responsible_email:nicoln042001@gmail.com responsible_enabled:true responsible_fullname:Soporte QA timekeeper responsible_id:87 responsible_locale:es responsible_shortname:QA responsible_super_admin:false responsible_updated_at:2025-04-07 12:03:19 responsible_user_type:1 responsible_username:nicoln042001@gmail.com secondary_external_code:\u003cnil\u003e status:1 status_marking:billed sync_updated_at:2025-07-30 10:51:15.1784416 -0400 -04 m=+236.695952301 updated_at:2024-08-12 21:58:47 with_iva:true]","time":"2025-07-30T10:52:25-04:00"} +{"file":"operaciones.go:70","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"⚠️ Registro incompleto para update (faltan claves): map[apply_procedures:\u003cnil\u003e billable:0 business_customer_code:\u003cnil\u003e case_number:\u003cnil\u003e closed_date:2024-08-12 00:00:00 confidential:false created_at:2024-08-12 22:13:16 customer_company_id:2 customer_company_name:MORENO BALDIVIESO SRL customer_id:379 customer_name:JHONSON \u0026 JHONSON DEL PARAGUAY S.A. customer_primary_code:671 discount_amount:\u003cnil\u003e discount_percent:\u003cnil\u003e display_name:000671-BK-000373 - redondeo horas cap mensual enable_business_allowed_users:0 expedient:000671-BK-000373 finished_date:\u003cnil\u003e fix_rate_value:0 hour_limit:\u003cnil\u003e id:2863 internal_code:\u003cnil\u003e is_billable:true limit_alert:\u003cnil\u003e notes: partial_charges:0 practice_area_code:AR07 practice_area_id:1 practice_area_name:Agronegocios primary_external_code:\u003cnil\u003e processing:false responsible_created_at:\u003cnil\u003e responsible_days_allow:\u003cnil\u003e responsible_email:\u003cnil\u003e responsible_enabled:\u003cnil\u003e responsible_fullname:\u003cnil\u003e responsible_id:\u003cnil\u003e responsible_locale:\u003cnil\u003e responsible_shortname:\u003cnil\u003e responsible_super_admin:\u003cnil\u003e responsible_updated_at:\u003cnil\u003e responsible_user_type:\u003cnil\u003e responsible_username:\u003cnil\u003e secondary_external_code:\u003cnil\u003e status:1 status_marking:active sync_updated_at:2025-07-30 10:51:15.1784416 -0400 -04 m=+236.695952301 updated_at:2024-08-12 23:20:38 with_iva:true]","time":"2025-07-30T10:52:27-04:00"} +{"file":"operaciones.go:70","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"⚠️ Registro incompleto para update (faltan claves): map[apply_procedures:\u003cnil\u003e billable:0 business_customer_code:\u003cnil\u003e case_number:\u003cnil\u003e closed_date:2024-08-12 00:00:00 confidential:false created_at:2024-08-12 23:26:36 customer_company_id:2 customer_company_name:MORENO BALDIVIESO SRL customer_id:379 customer_name:JHONSON \u0026 JHONSON DEL PARAGUAY S.A. customer_primary_code:671 discount_amount:\u003cnil\u003e discount_percent:\u003cnil\u003e display_name:000671-RE-000695 - redondeo monto editable enable_business_allowed_users:0 expedient:000671-RE-000695 finished_date:\u003cnil\u003e fix_rate_value:0 hour_limit:\u003cnil\u003e id:2864 internal_code:\u003cnil\u003e is_billable:true limit_alert:\u003cnil\u003e notes: partial_charges:0 practice_area_code:AR07 practice_area_id:1 practice_area_name:Agronegocios primary_external_code:\u003cnil\u003e processing:false responsible_created_at:2021-05-11 23:40:08 responsible_days_allow:70 responsible_email:nicoln042001@gmail.com responsible_enabled:true responsible_fullname:Soporte QA timekeeper responsible_id:87 responsible_locale:es responsible_shortname:QA responsible_super_admin:false responsible_updated_at:2025-04-07 12:03:19 responsible_user_type:1 responsible_username:nicoln042001@gmail.com secondary_external_code:\u003cnil\u003e status:1 status_marking:active sync_updated_at:2025-07-30 10:51:15.1784416 -0400 -04 m=+236.695952301 updated_at:2024-08-12 23:30:09 with_iva:true]","time":"2025-07-30T10:52:27-04:00"} +{"file":"operaciones.go:51","func":"db.(*GormDatabase).SyncRows","level":"debug","msg":"[🧹 Tabla: public.sync_proyectos] Procesando batch de 100 registros","time":"2025-07-30T10:52:27-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1931, 000245-SC-000130","time":"2025-07-30T10:52:35-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1934, 000245-SC-000171","time":"2025-07-30T10:52:35-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1935, 000245-SC-000172","time":"2025-07-30T10:52:35-04:00"} +{"file":"operaciones.go:51","func":"db.(*GormDatabase).SyncRows","level":"debug","msg":"[🧹 Tabla: public.sync_proyectos] Procesando batch de 100 registros","time":"2025-07-30T10:52:35-04:00"} +{"file":"operaciones.go:51","func":"db.(*GormDatabase).SyncRows","level":"debug","msg":"[🧹 Tabla: public.sync_proyectos] Procesando batch de 100 registros","time":"2025-07-30T10:52:52-04:00"} +{"file":"operaciones.go:51","func":"db.(*GormDatabase).SyncRows","level":"debug","msg":"[🧹 Tabla: public.sync_proyectos] Procesando batch de 100 registros","time":"2025-07-30T10:52:56-04:00"} +{"file":"operaciones.go:51","func":"db.(*GormDatabase).SyncRows","level":"debug","msg":"[🧹 Tabla: public.sync_proyectos] Procesando batch de 100 registros","time":"2025-07-30T10:53:01-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000545-BK-000344, 21","time":"2025-07-30T10:53:01-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 33, 000743-BK-000362","time":"2025-07-30T10:53:01-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 36, 000825-BK-000217","time":"2025-07-30T10:53:01-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 38, 000739-BK-000236","time":"2025-07-30T10:53:02-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 40, 000875-BK-000296","time":"2025-07-30T10:53:02-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 41, 000875-BK-000331","time":"2025-07-30T10:53:02-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 44, 000832-BK-000233","time":"2025-07-30T10:53:02-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000662-BK-000012, 48","time":"2025-07-30T10:53:02-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1040, 000846-BK-000332","time":"2025-07-30T10:53:03-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1250, 000820-BK-000345","time":"2025-07-30T10:53:03-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000632-BK-000349, 2656","time":"2025-07-30T10:53:05-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000828-BK-000357, 2768","time":"2025-07-30T10:53:05-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2769, 000813-BK-000358","time":"2025-07-30T10:53:05-04:00"} +{"file":"operaciones.go:70","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"⚠️ Registro incompleto para update (faltan claves): map[apply_procedures:\u003cnil\u003e billable:0 business_customer_code:\u003cnil\u003e case_number:\u003cnil\u003e closed_date:2024-05-20 00:00:00 confidential:false created_at:2024-05-20 21:53:40 customer_company_id:2 customer_company_name:MORENO BALDIVIESO SRL customer_id:885 customer_name:TOTTO COL customer_primary_code:987 discount_amount:\u003cnil\u003e discount_percent:\u003cnil\u003e display_name:000987-RE-000688 - Ventas Nacionales enable_business_allowed_users:0 expedient:000987-RE-000688 finished_date:\u003cnil\u003e fix_rate_value:0 hour_limit:\u003cnil\u003e id:2846 internal_code:\u003cnil\u003e is_billable:true limit_alert:\u003cnil\u003e notes: partial_charges:0 practice_area_code:AR07 practice_area_id:1 practice_area_name:Agronegocios primary_external_code:\u003cnil\u003e processing:false responsible_created_at:2024-03-19 13:50:44 responsible_days_allow:302 responsible_email:agomez@timemanagerweb.com responsible_enabled:true responsible_fullname:Andrea Gomez responsible_id:84 responsible_locale:es responsible_shortname:AG responsible_super_admin:false responsible_updated_at:2024-08-29 14:19:23 responsible_user_type:4 responsible_username:agomez@timemanagerweb.com secondary_external_code:\u003cnil\u003e status:1 status_marking:pending_completion sync_updated_at:2025-07-30 10:51:15.1784416 -0400 -04 m=+236.695952301 updated_at:2024-05-20 21:53:40 with_iva:true]","time":"2025-07-30T10:53:06-04:00"} +{"file":"operaciones.go:70","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"⚠️ Registro incompleto para update (faltan claves): map[apply_procedures:\u003cnil\u003e billable:0 business_customer_code:\u003cnil\u003e case_number:\u003cnil\u003e closed_date:2024-05-22 00:00:00 confidential:false created_at:2024-05-22 20:16:47 customer_company_id:2 customer_company_name:MORENO BALDIVIESO SRL customer_id:887 customer_name:PACEÑA customer_primary_code:989 discount_amount:\u003cnil\u003e discount_percent:\u003cnil\u003e display_name:000989-SR-001173 - PERMANENCIA DE TRES AÑOS CON CONTRATO EXTRANJERO- STEFAN MICHAEL KOSEL enable_business_allowed_users:0 expedient:000989-SR-001173 finished_date:\u003cnil\u003e fix_rate_value:530 hour_limit:\u003cnil\u003e id:2848 internal_code:\u003cnil\u003e is_billable:true limit_alert:\u003cnil\u003e notes:AF partial_charges:0 practice_area_code:AR06 practice_area_id:18 practice_area_name:Der. Migratorio\n primary_external_code:\u003cnil\u003e processing:false responsible_created_at:2012-05-08 14:49:53 responsible_days_allow:302 responsible_email:ihurtado@emba.com responsible_enabled:true responsible_fullname:Ingrid Hurtado responsible_id:1 responsible_locale:es responsible_shortname:ihurtado responsible_super_admin:true responsible_updated_at:2024-09-02 16:33:04 responsible_user_type:0 responsible_username:ihurtado@emba.com secondary_external_code:\u003cnil\u003e status:1 status_marking:pending_completion sync_updated_at:2025-07-30 10:51:15.1784416 -0400 -04 m=+236.695952301 updated_at:2024-05-22 20:16:47 with_iva:true]","time":"2025-07-30T10:53:06-04:00"} +{"file":"operaciones.go:70","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"⚠️ Registro incompleto para update (faltan claves): map[apply_procedures:\u003cnil\u003e billable:0 business_customer_code:\u003cnil\u003e case_number:\u003cnil\u003e closed_date:2024-07-05 00:00:00 confidential:false created_at:2024-07-05 15:54:56 customer_company_id:2 customer_company_name:MORENO BALDIVIESO SRL customer_id:899 customer_name:Davivienda customer_primary_code:1001 discount_amount:\u003cnil\u003e discount_percent:\u003cnil\u003e display_name:001001-SR-001174 - Test Any prueba enable_business_allowed_users:0 expedient:001001-SR-001174 finished_date:\u003cnil\u003e fix_rate_value:0 hour_limit:\u003cnil\u003e id:2851 internal_code:\u003cnil\u003e is_billable:true limit_alert:\u003cnil\u003e notes: partial_charges:0 practice_area_code:AR07 practice_area_id:1 practice_area_name:Agronegocios primary_external_code:\u003cnil\u003e processing:false responsible_created_at:\u003cnil\u003e responsible_days_allow:\u003cnil\u003e responsible_email:\u003cnil\u003e responsible_enabled:\u003cnil\u003e responsible_fullname:\u003cnil\u003e responsible_id:27 responsible_locale:\u003cnil\u003e responsible_shortname:\u003cnil\u003e responsible_super_admin:\u003cnil\u003e responsible_updated_at:\u003cnil\u003e responsible_user_type:\u003cnil\u003e responsible_username:\u003cnil\u003e secondary_external_code:\u003cnil\u003e status:1 status_marking:active sync_updated_at:2025-07-30 10:51:15.1784416 -0400 -04 m=+236.695952301 updated_at:2024-07-05 15:57:03 with_iva:true]","time":"2025-07-30T10:53:06-04:00"} +{"file":"operaciones.go:70","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"⚠️ Registro incompleto para update (faltan claves): map[apply_procedures:\u003cnil\u003e billable:0 business_customer_code:\u003cnil\u003e case_number:\u003cnil\u003e closed_date:2024-07-26 00:00:00 confidential:false created_at:2024-07-26 21:28:38 customer_company_id:2 customer_company_name:MORENO BALDIVIESO SRL customer_id:902 customer_name:pruebas customer_primary_code:1004 discount_amount:\u003cnil\u003e discount_percent:\u003cnil\u003e display_name:001004-RE-000692 - prueba gravamenes enable_business_allowed_users:0 expedient:001004-RE-000692 finished_date:\u003cnil\u003e fix_rate_value:0 hour_limit:\u003cnil\u003e id:2854 internal_code:\u003cnil\u003e is_billable:true limit_alert:\u003cnil\u003e notes: partial_charges:0 practice_area_code:\u003cnil\u003e practice_area_id:\u003cnil\u003e practice_area_name:\u003cnil\u003e primary_external_code:\u003cnil\u003e processing:false responsible_created_at:2021-05-11 23:40:08 responsible_days_allow:70 responsible_email:nicoln042001@gmail.com responsible_enabled:true responsible_fullname:Soporte QA timekeeper responsible_id:87 responsible_locale:es responsible_shortname:QA responsible_super_admin:false responsible_updated_at:2025-04-07 12:03:19 responsible_user_type:1 responsible_username:nicoln042001@gmail.com secondary_external_code:\u003cnil\u003e status:1 status_marking:active sync_updated_at:2025-07-30 10:51:15.1784416 -0400 -04 m=+236.695952301 updated_at:2024-07-26 21:32:07 with_iva:true]","time":"2025-07-30T10:53:06-04:00"} +{"file":"operaciones.go:70","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"⚠️ Registro incompleto para update (faltan claves): map[apply_procedures:\u003cnil\u003e billable:0 business_customer_code:\u003cnil\u003e case_number:\u003cnil\u003e closed_date:2024-08-12 00:00:00 confidential:false created_at:2024-08-12 13:10:38 customer_company_id:2 customer_company_name:MORENO BALDIVIESO SRL customer_id:902 customer_name:pruebas customer_primary_code:1004 discount_amount:\u003cnil\u003e discount_percent:\u003cnil\u003e display_name:001004-BK-000367 - redondeo horas enable_business_allowed_users:0 expedient:001004-BK-000367 finished_date:\u003cnil\u003e fix_rate_value:0 hour_limit:\u003cnil\u003e id:2855 internal_code:\u003cnil\u003e is_billable:true limit_alert:\u003cnil\u003e notes: partial_charges:0 practice_area_code:\u003cnil\u003e practice_area_id:\u003cnil\u003e practice_area_name:\u003cnil\u003e primary_external_code:\u003cnil\u003e processing:false responsible_created_at:2021-05-11 23:40:08 responsible_days_allow:70 responsible_email:nicoln042001@gmail.com responsible_enabled:true responsible_fullname:Soporte QA timekeeper responsible_id:87 responsible_locale:es responsible_shortname:QA responsible_super_admin:false responsible_updated_at:2025-04-07 12:03:19 responsible_user_type:1 responsible_username:nicoln042001@gmail.com secondary_external_code:\u003cnil\u003e status:1 status_marking:active sync_updated_at:2025-07-30 10:51:15.1784416 -0400 -04 m=+236.695952301 updated_at:2024-08-12 16:28:17 with_iva:true]","time":"2025-07-30T10:53:06-04:00"} +{"file":"operaciones.go:70","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"⚠️ Registro incompleto para update (faltan claves): map[apply_procedures:\u003cnil\u003e billable:0 business_customer_code:\u003cnil\u003e case_number:\u003cnil\u003e closed_date:2024-08-12 00:00:00 confidential:false created_at:2024-08-12 16:37:01 customer_company_id:2 customer_company_name:MORENO BALDIVIESO SRL customer_id:902 customer_name:pruebas customer_primary_code:1004 discount_amount:\u003cnil\u003e discount_percent:\u003cnil\u003e display_name:001004-BK-000368 - redondeo monto fijo asunto enable_business_allowed_users:0 expedient:001004-BK-000368 finished_date:\u003cnil\u003e fix_rate_value:100000 hour_limit:10 id:2856 internal_code:\u003cnil\u003e is_billable:true limit_alert:\u003cnil\u003e notes: partial_charges:0 practice_area_code:AR07 practice_area_id:1 practice_area_name:Agronegocios primary_external_code:\u003cnil\u003e processing:false responsible_created_at:\u003cnil\u003e responsible_days_allow:\u003cnil\u003e responsible_email:\u003cnil\u003e responsible_enabled:\u003cnil\u003e responsible_fullname:\u003cnil\u003e responsible_id:\u003cnil\u003e responsible_locale:\u003cnil\u003e responsible_shortname:\u003cnil\u003e responsible_super_admin:\u003cnil\u003e responsible_updated_at:\u003cnil\u003e responsible_user_type:\u003cnil\u003e responsible_username:\u003cnil\u003e secondary_external_code:\u003cnil\u003e status:1 status_marking:active sync_updated_at:2025-07-30 10:51:15.1784416 -0400 -04 m=+236.695952301 updated_at:2024-08-12 16:37:09 with_iva:true]","time":"2025-07-30T10:53:06-04:00"} +{"file":"operaciones.go:70","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"⚠️ Registro incompleto para update (faltan claves): map[apply_procedures:\u003cnil\u003e billable:0 business_customer_code:\u003cnil\u003e case_number:\u003cnil\u003e closed_date:2024-08-16 00:00:00 confidential:false created_at:2024-08-16 21:55:07 customer_company_id:2 customer_company_name:MORENO BALDIVIESO SRL customer_id:899 customer_name:Davivienda customer_primary_code:1001 discount_amount:\u003cnil\u003e discount_percent:\u003cnil\u003e display_name:001001-RE-000696 - Pruebas Agosto enable_business_allowed_users:0 expedient:001001-RE-000696 finished_date:\u003cnil\u003e fix_rate_value:0 hour_limit:\u003cnil\u003e id:2865 internal_code:\u003cnil\u003e is_billable:true limit_alert:\u003cnil\u003e notes: partial_charges:0 practice_area_code:AR07 practice_area_id:1 practice_area_name:Agronegocios primary_external_code:\u003cnil\u003e processing:false responsible_created_at:2021-05-11 23:40:08 responsible_days_allow:70 responsible_email:nicoln042001@gmail.com responsible_enabled:true responsible_fullname:Soporte QA timekeeper responsible_id:87 responsible_locale:es responsible_shortname:QA responsible_super_admin:false responsible_updated_at:2025-04-07 12:03:19 responsible_user_type:1 responsible_username:nicoln042001@gmail.com secondary_external_code:\u003cnil\u003e status:1 status_marking:active sync_updated_at:2025-07-30 10:51:15.1784416 -0400 -04 m=+236.695952301 updated_at:2024-08-16 22:02:49 with_iva:true]","time":"2025-07-30T10:53:06-04:00"} +{"file":"operaciones.go:70","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"⚠️ Registro incompleto para update (faltan claves): map[apply_procedures:\u003cnil\u003e billable:0 business_customer_code:\u003cnil\u003e case_number:\u003cnil\u003e closed_date:2024-09-02 00:00:00 confidential:false created_at:2024-09-02 15:11:24 customer_company_id:2 customer_company_name:MORENO BALDIVIESO SRL customer_id:903 customer_name:PRUEBAS QA PAOLITA customer_primary_code:1005 discount_amount:\u003cnil\u003e discount_percent:\u003cnil\u003e display_name:001005-RE-000699 - Capacitaciones internas o externas. enable_business_allowed_users:0 expedient:001005-RE-000699 finished_date:\u003cnil\u003e fix_rate_value:0 hour_limit:\u003cnil\u003e id:2875 internal_code:\u003cnil\u003e is_billable:true limit_alert:\u003cnil\u003e notes:Notas partial_charges:0 practice_area_code:AR04 practice_area_id:2 practice_area_name:Arbitraje primary_external_code:\u003cnil\u003e processing:false responsible_created_at:2021-05-11 23:40:08 responsible_days_allow:302 responsible_email:pcorredor26@gmail.com responsible_enabled:true responsible_fullname:AMTM Pruebas responsible_id:77 responsible_locale:es responsible_shortname:AM responsible_super_admin:true responsible_updated_at:2025-07-21 10:12:54 responsible_user_type:1 responsible_username:pcorredor26@gmail.com secondary_external_code:\u003cnil\u003e status:1 status_marking:pending_completion sync_updated_at:2025-07-30 10:51:15.1784416 -0400 -04 m=+236.695952301 updated_at:2024-09-02 15:11:24 with_iva:true]","time":"2025-07-30T10:53:06-04:00"} +{"file":"operaciones.go:70","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"⚠️ Registro incompleto para update (faltan claves): map[apply_procedures:\u003cnil\u003e billable:0 business_customer_code:\u003cnil\u003e case_number:\u003cnil\u003e closed_date:2024-09-10 00:00:00 confidential:false created_at:2024-09-03 11:46:54 customer_company_id:2 customer_company_name:MORENO BALDIVIESO SRL customer_id:904 customer_name:PRUEBA DE RESPONSABLES customer_primary_code:1006 discount_amount:\u003cnil\u003e discount_percent:\u003cnil\u003e display_name:001006-RE-000700 - PRUEBA DE RESPONSABLES enable_business_allowed_users:0 expedient:001006-RE-000700 finished_date:\u003cnil\u003e fix_rate_value:0 hour_limit:\u003cnil\u003e id:2876 internal_code:\u003cnil\u003e is_billable:true limit_alert:\u003cnil\u003e notes:prueba partial_charges:0 practice_area_code:AR07 practice_area_id:1 practice_area_name:Agronegocios primary_external_code:\u003cnil\u003e processing:false responsible_created_at:2023-12-26 22:28:14 responsible_days_allow:302 responsible_email:nicoln042001@gmail.com responsible_enabled:true responsible_fullname:Daniel Marcelo Arredondo Zelada responsible_id:6 responsible_locale:es responsible_shortname:darredon responsible_super_admin:false responsible_updated_at:2024-09-03 11:43:07 responsible_user_type:1 responsible_username:darredondo@emba.com.bo secondary_external_code:\u003cnil\u003e status:1 status_marking:active sync_updated_at:2025-07-30 10:51:15.1784416 -0400 -04 m=+236.695952301 updated_at:2024-09-10 10:01:11 with_iva:true]","time":"2025-07-30T10:53:06-04:00"} +{"file":"operaciones.go:70","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"⚠️ Registro incompleto para update (faltan claves): map[apply_procedures:\u003cnil\u003e billable:0 business_customer_code:\u003cnil\u003e case_number:\u003cnil\u003e closed_date:2024-09-04 00:00:00 confidential:false created_at:2024-09-04 12:40:07 customer_company_id:2 customer_company_name:MORENO BALDIVIESO SRL customer_id:917 customer_name:LOLIS S.A customer_primary_code:1019 discount_amount:\u003cnil\u003e discount_percent:\u003cnil\u003e display_name:001019-RE-000701 - Consultas Legales por hora enable_business_allowed_users:0 expedient:001019-RE-000701 finished_date:\u003cnil\u003e fix_rate_value:0 hour_limit:\u003cnil\u003e id:2877 internal_code:\u003cnil\u003e is_billable:true limit_alert:\u003cnil\u003e notes: partial_charges:0 practice_area_code:AR07 practice_area_id:1 practice_area_name:Agronegocios primary_external_code:\u003cnil\u003e processing:false responsible_created_at:2021-05-11 23:40:08 responsible_days_allow:302 responsible_email:pcorredor26@gmail.com responsible_enabled:true responsible_fullname:AMTM Pruebas responsible_id:77 responsible_locale:es responsible_shortname:AM responsible_super_admin:true responsible_updated_at:2025-07-21 10:12:54 responsible_user_type:1 responsible_username:pcorredor26@gmail.com secondary_external_code:\u003cnil\u003e status:1 status_marking:pending_completion sync_updated_at:2025-07-30 10:51:15.1784416 -0400 -04 m=+236.695952301 updated_at:2024-09-04 21:47:13 with_iva:true]","time":"2025-07-30T10:53:06-04:00"} +{"file":"operaciones.go:70","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"⚠️ Registro incompleto para update (faltan claves): map[apply_procedures:\u003cnil\u003e billable:0 business_customer_code:\u003cnil\u003e case_number:\u003cnil\u003e closed_date:2024-09-04 00:00:00 confidential:false created_at:2024-09-04 12:41:28 customer_company_id:2 customer_company_name:MORENO BALDIVIESO SRL customer_id:917 customer_name:LOLIS S.A customer_primary_code:1019 discount_amount:\u003cnil\u003e discount_percent:\u003cnil\u003e display_name:001019-RE-000702 - ASPECTOS GENERALES DEL SISTEMA DE SEGURIDAD SOCIAL EN BOLIVIA enable_business_allowed_users:0 expedient:001019-RE-000702 finished_date:\u003cnil\u003e fix_rate_value:0 hour_limit:\u003cnil\u003e id:2878 internal_code:\u003cnil\u003e is_billable:true limit_alert:\u003cnil\u003e notes: partial_charges:0 practice_area_code:AR07 practice_area_id:1 practice_area_name:Agronegocios primary_external_code:\u003cnil\u003e processing:false responsible_created_at:2021-05-11 23:40:08 responsible_days_allow:302 responsible_email:pcorredor26@gmail.com responsible_enabled:true responsible_fullname:AMTM Pruebas responsible_id:77 responsible_locale:es responsible_shortname:AM responsible_super_admin:true responsible_updated_at:2025-07-21 10:12:54 responsible_user_type:1 responsible_username:pcorredor26@gmail.com secondary_external_code:\u003cnil\u003e status:1 status_marking:pending_completion sync_updated_at:2025-07-30 10:51:15.1784416 -0400 -04 m=+236.695952301 updated_at:2024-09-04 12:41:28 with_iva:true]","time":"2025-07-30T10:53:07-04:00"} +{"file":"operaciones.go:70","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"⚠️ Registro incompleto para update (faltan claves): map[apply_procedures:\u003cnil\u003e billable:0 business_customer_code:\u003cnil\u003e case_number:\u003cnil\u003e closed_date:2024-09-04 00:00:00 confidential:false created_at:2024-09-04 12:51:42 customer_company_id:2 customer_company_name:MORENO BALDIVIESO SRL customer_id:903 customer_name:PRUEBAS QA PAOLITA customer_primary_code:1005 discount_amount:\u003cnil\u003e discount_percent:\u003cnil\u003e display_name:001005-RE-000703 - Test Any prueba enable_business_allowed_users:0 expedient:001005-RE-000703 finished_date:\u003cnil\u003e fix_rate_value:0 hour_limit:\u003cnil\u003e id:2879 internal_code:\u003cnil\u003e is_billable:true limit_alert:\u003cnil\u003e notes: partial_charges:0 practice_area_code:AR04 practice_area_id:2 practice_area_name:Arbitraje primary_external_code:\u003cnil\u003e processing:false responsible_created_at:2021-05-11 23:40:08 responsible_days_allow:302 responsible_email:pcorredor26@gmail.com responsible_enabled:true responsible_fullname:AMTM Pruebas responsible_id:77 responsible_locale:es responsible_shortname:AM responsible_super_admin:true responsible_updated_at:2025-07-21 10:12:54 responsible_user_type:1 responsible_username:pcorredor26@gmail.com secondary_external_code:\u003cnil\u003e status:1 status_marking:pending_completion sync_updated_at:2025-07-30 10:51:15.1784416 -0400 -04 m=+236.695952301 updated_at:2024-09-04 12:51:42 with_iva:true]","time":"2025-07-30T10:53:07-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2884, 001020-RE-000706","time":"2025-07-30T10:53:07-04:00"} +{"file":"operaciones.go:70","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"⚠️ Registro incompleto para update (faltan claves): map[apply_procedures:\u003cnil\u003e billable:0 business_customer_code:\u003cnil\u003e case_number:\u003cnil\u003e closed_date:2024-09-10 00:00:00 confidential:false created_at:2024-09-10 11:24:04 customer_company_id:2 customer_company_name:MORENO BALDIVIESO SRL customer_id:919 customer_name:LENOVO customer_primary_code:1021 discount_amount:\u003cnil\u003e discount_percent:\u003cnil\u003e display_name:001021-RE-000707 - Servicios legales por hora enable_business_allowed_users:0 expedient:001021-RE-000707 finished_date:\u003cnil\u003e fix_rate_value:5000 hour_limit:\u003cnil\u003e id:2885 internal_code:\u003cnil\u003e is_billable:true limit_alert:0 notes:Notas partial_charges:1 practice_area_code:AR04 practice_area_id:2 practice_area_name:Arbitraje primary_external_code:\u003cnil\u003e processing:false responsible_created_at:2021-05-11 23:40:08 responsible_days_allow:302 responsible_email:pcorredor26@gmail.com responsible_enabled:true responsible_fullname:AMTM Pruebas responsible_id:77 responsible_locale:es responsible_shortname:AM responsible_super_admin:true responsible_updated_at:2025-07-21 10:12:54 responsible_user_type:1 responsible_username:pcorredor26@gmail.com secondary_external_code:\u003cnil\u003e status:1 status_marking:pending_completion sync_updated_at:2025-07-30 10:51:15.1784416 -0400 -04 m=+236.695952301 updated_at:2024-09-10 11:24:04 with_iva:true]","time":"2025-07-30T10:53:07-04:00"} +{"file":"operaciones.go:70","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"⚠️ Registro incompleto para update (faltan claves): map[apply_procedures:\u003cnil\u003e billable:0 business_customer_code:\u003cnil\u003e case_number:\u003cnil\u003e closed_date:2025-03-13 00:00:00 confidential:false created_at:2025-03-13 15:11:37 customer_company_id:2 customer_company_name:MORENO BALDIVIESO SRL customer_id:927 customer_name:MARCELO DAVILA customer_primary_code:1029 discount_amount:\u003cnil\u003e discount_percent:\u003cnil\u003e display_name:001029 - Asesoría legal por horas enable_business_allowed_users:0 expedient:001029 finished_date:\u003cnil\u003e fix_rate_value:0 hour_limit:\u003cnil\u003e id:2944 internal_code:\u003cnil\u003e is_billable:true limit_alert:\u003cnil\u003e notes: partial_charges:0 practice_area_code:AR06 practice_area_id:18 practice_area_name:Der. Migratorio\n primary_external_code:\u003cnil\u003e processing:false responsible_created_at:\u003cnil\u003e responsible_days_allow:\u003cnil\u003e responsible_email:\u003cnil\u003e responsible_enabled:\u003cnil\u003e responsible_fullname:\u003cnil\u003e responsible_id:\u003cnil\u003e responsible_locale:\u003cnil\u003e responsible_shortname:\u003cnil\u003e responsible_super_admin:\u003cnil\u003e responsible_updated_at:\u003cnil\u003e responsible_user_type:\u003cnil\u003e responsible_username:\u003cnil\u003e secondary_external_code:\u003cnil\u003e status:1 status_marking:active sync_updated_at:2025-07-30 10:51:15.1784416 -0400 -04 m=+236.695952301 updated_at:2025-03-13 15:11:37 with_iva:true]","time":"2025-07-30T10:53:08-04:00"} +{"file":"operaciones.go:51","func":"db.(*GormDatabase).SyncRows","level":"debug","msg":"[🧹 Tabla: public.sync_proyectos] Procesando batch de 100 registros","time":"2025-07-30T10:53:08-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 49, 000756-BK-000325","time":"2025-07-30T10:53:08-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 50, 000889-BK-000329","time":"2025-07-30T10:53:09-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 58, 000765-BK-000203","time":"2025-07-30T10:53:09-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 69, 000796-BK-000176","time":"2025-07-30T10:53:09-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 70, 000701-BK-000059","time":"2025-07-30T10:53:10-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 76, 000885-BK-000326","time":"2025-07-30T10:53:10-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 87, 000883-BK-000323","time":"2025-07-30T10:53:10-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 112, 000874-BK-000294","time":"2025-07-30T10:53:11-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 113, 000890-BK-000333","time":"2025-07-30T10:53:11-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 120, 000877-BK-000310","time":"2025-07-30T10:53:11-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 122, 000761-BK-000156","time":"2025-07-30T10:53:11-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 126, 000644-BK-000165","time":"2025-07-30T10:53:11-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000192-SC-000898, 764","time":"2025-07-30T10:53:11-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 769, 000192-SC-000899","time":"2025-07-30T10:53:11-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000192-SC-000900, 770","time":"2025-07-30T10:53:12-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 771, 000192-SC-000901","time":"2025-07-30T10:53:12-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000192-SC-000902, 772","time":"2025-07-30T10:53:12-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 773, 000192-SC-000903","time":"2025-07-30T10:53:12-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1094, 000699-BK-000293","time":"2025-07-30T10:53:12-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1116, 000861-BK-000336","time":"2025-07-30T10:53:12-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1214, 000887-BK-000330","time":"2025-07-30T10:53:12-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1235, 000761-BK-000250","time":"2025-07-30T10:53:12-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1239, 000863-BK-000271","time":"2025-07-30T10:53:12-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1245, 000891-BK-000335","time":"2025-07-30T10:53:12-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1346, 000765-BK-000202","time":"2025-07-30T10:53:12-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1347, 000876-BK-000324","time":"2025-07-30T10:53:12-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1348, 000866-BK-000315","time":"2025-07-30T10:53:13-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1351, 000872-BK-000298","time":"2025-07-30T10:53:13-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1554, 000147-SC-000050","time":"2025-07-30T10:53:13-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1555, 000186-SC-000086","time":"2025-07-30T10:53:13-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1604, 000191-SC-000677","time":"2025-07-30T10:53:13-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1605, 000191-SC-000678","time":"2025-07-30T10:53:13-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1606, 000191-SC-000679","time":"2025-07-30T10:53:13-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1607, 000191-SC-000680","time":"2025-07-30T10:53:14-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000191-SC-000681, 1608","time":"2025-07-30T10:53:14-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1890, 000192-SC-000730","time":"2025-07-30T10:53:15-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1920, 000315-SC-000586","time":"2025-07-30T10:53:16-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1928, 000136-SC-000124","time":"2025-07-30T10:53:16-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2174, 000192-SC-000712","time":"2025-07-30T10:53:17-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2179, 000192-SC-000718","time":"2025-07-30T10:53:17-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2180, 000192-SC-000719","time":"2025-07-30T10:53:18-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2181, 000192-SC-000720","time":"2025-07-30T10:53:19-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2182, 000192-SC-000721","time":"2025-07-30T10:53:20-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2183, 000192-SC-000722","time":"2025-07-30T10:53:20-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000192-SC-000723, 2184","time":"2025-07-30T10:53:21-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2185, 000192-SC-000724","time":"2025-07-30T10:53:21-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2186, 000192-SC-000725","time":"2025-07-30T10:53:22-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2187, 000192-SC-000726","time":"2025-07-30T10:53:23-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2188, 000192-SC-000727","time":"2025-07-30T10:53:24-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000192-SC-000728, 2189","time":"2025-07-30T10:53:24-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000192-SC-000729, 2190","time":"2025-07-30T10:53:24-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2191, 000192-SC-000734","time":"2025-07-30T10:53:24-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2192, 000192-SC-000735","time":"2025-07-30T10:53:24-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2193, 000192-SC-000736","time":"2025-07-30T10:53:24-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2194, 000192-SC-000737","time":"2025-07-30T10:53:24-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2195, 000192-SC-000738","time":"2025-07-30T10:53:24-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000192-SC-000740, 2197","time":"2025-07-30T10:53:24-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2199, 000192-SC-000742","time":"2025-07-30T10:53:25-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2200, 000192-SC-000743","time":"2025-07-30T10:53:25-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2201, 000192-SC-000744","time":"2025-07-30T10:53:25-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2202, 000192-SC-000745","time":"2025-07-30T10:53:25-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2203, 000192-SC-000746","time":"2025-07-30T10:53:25-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2204, 000192-SC-000747","time":"2025-07-30T10:53:25-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2205, 000192-SC-000748","time":"2025-07-30T10:53:25-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2206, 000192-SC-000749","time":"2025-07-30T10:53:25-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2207, 000192-SC-000750","time":"2025-07-30T10:53:25-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2208, 000192-SC-000751","time":"2025-07-30T10:53:25-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2209, 000192-SC-000752","time":"2025-07-30T10:53:25-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2210, 000192-SC-000753","time":"2025-07-30T10:53:26-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2211, 000192-SC-000754","time":"2025-07-30T10:53:26-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2212, 000192-SC-000755","time":"2025-07-30T10:53:26-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2213, 000192-SC-000756","time":"2025-07-30T10:53:26-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2214, 000192-SC-000757","time":"2025-07-30T10:53:26-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2215, 000192-SC-000759","time":"2025-07-30T10:53:26-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000192-SC-000760, 2216","time":"2025-07-30T10:53:26-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2217, 000192-SC-000761","time":"2025-07-30T10:53:26-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000192-SC-000762, 2218","time":"2025-07-30T10:53:26-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2219, 000192-SC-000763","time":"2025-07-30T10:53:26-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2287, 000927-BK-000338","time":"2025-07-30T10:53:26-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2288, 000927-BK-000339","time":"2025-07-30T10:53:27-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2310, 000930-BK-000340","time":"2025-07-30T10:53:27-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2311, 000921-BK-000341","time":"2025-07-30T10:53:27-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000931-BK-000343, 2323","time":"2025-07-30T10:53:27-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2344, 000937-BK-000342","time":"2025-07-30T10:53:27-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2348, 000938-BK-000343","time":"2025-07-30T10:53:27-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2547, 000942-BK-000346","time":"2025-07-30T10:53:27-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2549, 000948-BK-000347","time":"2025-07-30T10:53:27-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2621, 000951-BK-000348","time":"2025-07-30T10:53:27-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2695, 000955-BK-000350","time":"2025-07-30T10:53:27-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000930-BK-000351, 2744","time":"2025-07-30T10:53:27-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2746, 000961-BK-000352","time":"2025-07-30T10:53:27-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2747, 000962-BK-000353","time":"2025-07-30T10:53:28-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2759, 000965-BK-000354","time":"2025-07-30T10:53:28-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000967-BK-000355, 2761","time":"2025-07-30T10:53:28-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2767, 000720-BK-000356","time":"2025-07-30T10:53:28-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2818, 000756-BK-000359","time":"2025-07-30T10:53:28-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2823, 000937-BK-000360","time":"2025-07-30T10:53:28-04:00"} +{"file":"operaciones.go:70","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"⚠️ Registro incompleto para update (faltan claves): map[apply_procedures:\u003cnil\u003e billable:0 business_customer_code:\u003cnil\u003e case_number:\u003cnil\u003e closed_date:2025-06-11 00:00:00 confidential:false created_at:2025-06-09 10:58:53 customer_company_id:3 customer_company_name:BKP customer_id:929 customer_name:CAPACITACIÓN CON ANDREA customer_primary_code:1031 discount_amount:\u003cnil\u003e discount_percent:0 display_name:001031-RE-000749 - PERMANENCIA DE TRES AÑOS CON CONTRATO EXTRANJERO- STEFAN MICHAEL KOSEL enable_business_allowed_users:0 expedient:001031-RE-000749 finished_date:\u003cnil\u003e fix_rate_value:0 hour_limit:\u003cnil\u003e id:2945 internal_code:\u003cnil\u003e is_billable:true limit_alert:0 notes:observaciones partial_charges:0 practice_area_code:AR04 practice_area_id:2 practice_area_name:Arbitraje primary_external_code:\u003cnil\u003e processing:false responsible_created_at:2021-05-11 23:40:08 responsible_days_allow:302 responsible_email:pcorredor26@gmail.com responsible_enabled:true responsible_fullname:AMTM Pruebas responsible_id:77 responsible_locale:es responsible_shortname:AM responsible_super_admin:true responsible_updated_at:2025-07-21 10:12:54 responsible_user_type:1 responsible_username:pcorredor26@gmail.com secondary_external_code:\u003cnil\u003e status:1 status_marking:pending_completion sync_updated_at:2025-07-30 10:51:15.1784416 -0400 -04 m=+236.695952301 updated_at:2025-06-11 09:58:44 with_iva:true]","time":"2025-07-30T10:53:28-04:00"} +{"file":"operaciones.go:70","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"⚠️ Registro incompleto para update (faltan claves): map[apply_procedures:\u003cnil\u003e billable:0 business_customer_code:\u003cnil\u003e case_number:\u003cnil\u003e closed_date:2025-06-26 00:00:00 confidential:false created_at:2025-06-26 11:38:51 customer_company_id:3 customer_company_name:BKP customer_id:930 customer_name:Chapman1 customer_primary_code:1032 discount_amount:\u003cnil\u003e discount_percent:\u003cnil\u003e display_name:001032-BK-000382 - Servicios Legales integrales por hora enable_business_allowed_users:0 expedient:001032-BK-000382 finished_date:\u003cnil\u003e fix_rate_value:0 hour_limit:\u003cnil\u003e id:2946 internal_code:\u003cnil\u003e is_billable:true limit_alert:\u003cnil\u003e notes: partial_charges:0 practice_area_code:AR04 practice_area_id:2 practice_area_name:Arbitraje primary_external_code:\u003cnil\u003e processing:false responsible_created_at:2021-05-11 23:40:08 responsible_days_allow:302 responsible_email:pcorredor26@gmail.com responsible_enabled:true responsible_fullname:AMTM Pruebas responsible_id:77 responsible_locale:es responsible_shortname:AM responsible_super_admin:true responsible_updated_at:2025-07-21 10:12:54 responsible_user_type:1 responsible_username:pcorredor26@gmail.com secondary_external_code:\u003cnil\u003e status:1 status_marking:pending_completion sync_updated_at:2025-07-30 10:51:15.1784416 -0400 -04 m=+236.695952301 updated_at:2025-06-26 11:38:52 with_iva:true]","time":"2025-07-30T10:53:28-04:00"} +{"file":"operaciones.go:70","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"⚠️ Registro incompleto para update (faltan claves): map[apply_procedures:\u003cnil\u003e billable:0 business_customer_code:\u003cnil\u003e case_number:\u003cnil\u003e closed_date:2025-06-26 00:00:00 confidential:false created_at:2025-06-26 11:55:52 customer_company_id:3 customer_company_name:BKP customer_id:930 customer_name:Chapman1 customer_primary_code:1032 discount_amount:\u003cnil\u003e discount_percent:\u003cnil\u003e display_name:001032-BK-000383 - ASPECTOS GENERALES DEL SISTEMA DE SEGURIDAD SOCIAL EN BOLIVIA enable_business_allowed_users:0 expedient:001032-BK-000383 finished_date:\u003cnil\u003e fix_rate_value:0 hour_limit:\u003cnil\u003e id:2947 internal_code:\u003cnil\u003e is_billable:true limit_alert:\u003cnil\u003e notes: partial_charges:0 practice_area_code:AR07 practice_area_id:1 practice_area_name:Agronegocios primary_external_code:\u003cnil\u003e processing:false responsible_created_at:2021-05-11 23:40:08 responsible_days_allow:302 responsible_email:pcorredor26@gmail.com responsible_enabled:true responsible_fullname:AMTM Pruebas responsible_id:77 responsible_locale:es responsible_shortname:AM responsible_super_admin:true responsible_updated_at:2025-07-21 10:12:54 responsible_user_type:1 responsible_username:pcorredor26@gmail.com secondary_external_code:\u003cnil\u003e status:1 status_marking:pending_completion sync_updated_at:2025-07-30 10:51:15.1784416 -0400 -04 m=+236.695952301 updated_at:2025-06-26 11:56:27 with_iva:true]","time":"2025-07-30T10:53:28-04:00"} +{"file":"operaciones.go:51","func":"db.(*GormDatabase).SyncRows","level":"debug","msg":"[🧹 Tabla: public.sync_proyectos] Procesando batch de 73 registros","time":"2025-07-30T10:53:28-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1123, 000726-SC-000904","time":"2025-07-30T10:53:28-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1124, 000726-SC-000905","time":"2025-07-30T10:53:28-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1125, 000726-SC-000906","time":"2025-07-30T10:53:28-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1126, 000726-SC-000907","time":"2025-07-30T10:53:28-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1127, 000726-SC-000908","time":"2025-07-30T10:53:29-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1128, 000726-SC-000909","time":"2025-07-30T10:53:29-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1129, 000726-SC-000910","time":"2025-07-30T10:53:29-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1130, 000726-SC-000911","time":"2025-07-30T10:53:29-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1131, 000726-SC-000912","time":"2025-07-30T10:53:29-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1132, 000726-SC-000913","time":"2025-07-30T10:53:29-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1133, 000726-SC-000914","time":"2025-07-30T10:53:29-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1134, 000726-SC-000915","time":"2025-07-30T10:53:29-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1135, 000726-SC-000916","time":"2025-07-30T10:53:29-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1136, 000726-SC-000917","time":"2025-07-30T10:53:29-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1137, 000726-SC-000918","time":"2025-07-30T10:53:29-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000726-SC-000919, 1138","time":"2025-07-30T10:53:29-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000726-SC-000920, 1139","time":"2025-07-30T10:53:29-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1140, 000726-SC-000921","time":"2025-07-30T10:53:30-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1141, 000726-SC-000922","time":"2025-07-30T10:53:30-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1142, 000726-SC-000923","time":"2025-07-30T10:53:30-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1143, 000726-SC-000924","time":"2025-07-30T10:53:30-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1144, 000726-SC-000925","time":"2025-07-30T10:53:30-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000726-SC-000926, 1145","time":"2025-07-30T10:53:30-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1146, 000726-SC-000927","time":"2025-07-30T10:53:30-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1147, 000726-SC-000928","time":"2025-07-30T10:53:30-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1148, 000726-SC-000929","time":"2025-07-30T10:53:30-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1149, 000726-SC-000930","time":"2025-07-30T10:53:30-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1150, 000726-SC-000931","time":"2025-07-30T10:53:30-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1151, 000726-SC-000932","time":"2025-07-30T10:53:30-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1152, 000726-SC-000933","time":"2025-07-30T10:53:31-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1153, 000726-SC-000934","time":"2025-07-30T10:53:31-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1154, 000726-SC-000935","time":"2025-07-30T10:53:31-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1155, 000726-SC-000936","time":"2025-07-30T10:53:31-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1156, 000726-SC-000937","time":"2025-07-30T10:53:31-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1157, 000726-SC-000938","time":"2025-07-30T10:53:31-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1159, 000726-SC-000940","time":"2025-07-30T10:53:31-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1160, 000726-SC-000941","time":"2025-07-30T10:53:31-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1161, 000726-SC-000942","time":"2025-07-30T10:53:31-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1162, 000726-SC-000943","time":"2025-07-30T10:53:31-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1163, 000726-SC-000944","time":"2025-07-30T10:53:31-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1164, 000726-SC-000945","time":"2025-07-30T10:53:32-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1165, 000726-SC-000946","time":"2025-07-30T10:53:32-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1166, 000726-SC-000947","time":"2025-07-30T10:53:32-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1167, 000726-SC-000948","time":"2025-07-30T10:53:32-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1168, 000726-SC-000949","time":"2025-07-30T10:53:32-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1169, 000726-SC-000950","time":"2025-07-30T10:53:32-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1170, 000726-SC-000951","time":"2025-07-30T10:53:32-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1171, 000726-SC-000952","time":"2025-07-30T10:53:32-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1172, 000726-SC-000953","time":"2025-07-30T10:53:32-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1173, 000726-SC-000954","time":"2025-07-30T10:53:32-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1174, 000726-SC-000955","time":"2025-07-30T10:53:32-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1175, 000726-SC-000956","time":"2025-07-30T10:53:32-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1176, 000726-SC-000957","time":"2025-07-30T10:53:33-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1177, 000726-SC-000958","time":"2025-07-30T10:53:33-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1178, 000726-SC-000959","time":"2025-07-30T10:53:33-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1179, 000726-SC-000960","time":"2025-07-30T10:53:33-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1180, 000726-SC-000961","time":"2025-07-30T10:53:33-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1181, 000726-SC-000962","time":"2025-07-30T10:53:33-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1182, 000726-SC-000963","time":"2025-07-30T10:53:33-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1183, 000726-SC-000964","time":"2025-07-30T10:53:33-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1896, 000202-SC-000731","time":"2025-07-30T10:53:33-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000202-SC-000732, 1897","time":"2025-07-30T10:53:33-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 1898, 000202-SC-000733","time":"2025-07-30T10:53:33-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: code = ? AND u_embaidtm = ? valores: 000192-SC-000764, 2220","time":"2025-07-30T10:53:33-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2315, 000192-SC-000770","time":"2025-07-30T10:53:34-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2338, 000192-SC-000771","time":"2025-07-30T10:53:34-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2620, 000192-SC-000965","time":"2025-07-30T10:53:34-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2696, 000192-SC-000966","time":"2025-07-30T10:53:34-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2697, 000192-SC-000967","time":"2025-07-30T10:53:34-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2711, 000192-SC-000968","time":"2025-07-30T10:53:34-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2763, 000192-SC-000969","time":"2025-07-30T10:53:34-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2764, 000192-SC-000970","time":"2025-07-30T10:53:34-04:00"} +{"file":"operaciones.go:101","func":"db.(*GormDatabase).SyncRows","level":"warning","msg":"[🧹 Tabla: public.sync_proyectos] ⚠️ Ninguna fila afectada con campos: u_embaidtm = ? AND code = ? valores: 2842, 000984-RE-000687","time":"2025-07-30T10:53:34-04:00"} +{"file":"operaciones.go:133","func":"db.(*GormDatabase).SyncRows","level":"info","msg":"[🧹 Tabla: public.sync_proyectos] ✅ Finalizacion Syncing data...","time":"2025-07-30T10:53:34-04:00"} +{"file":"fetcher.go:92","func":"sync.SyncData","level":"info","msg":"[🧩 Job: sync_graphql] ⏱ Duración total: 274.46s","time":"2025-07-30T10:53:34-04:00"} +{"file":"main.go:59","func":"main.main","level":"info","msg":"🛑 Señal de apagado recibida, cerrando servicio...","time":"2025-07-30T10:55:10-04:00"} diff --git a/metrics/metrics.go b/metrics/metrics.go new file mode 100644 index 0000000..af5ec6a --- /dev/null +++ b/metrics/metrics.go @@ -0,0 +1,56 @@ +// metrics/metrics.go +package metrics + +import "github.com/prometheus/client_golang/prometheus" + +var ( + // Cuántas veces se ejecutó exitosamente cada job + CronSuccess = prometheus.NewCounterVec( + prometheus.CounterOpts{ + Name: "cron_job_success_total", + Help: "Total de ejecuciones exitosas por cron job", + }, + []string{"job"}, + ) + + // Cuántas veces falló + CronError = prometheus.NewCounterVec( + prometheus.CounterOpts{ + Name: "cron_job_error_total", + Help: "Total de errores por cron job", + }, + []string{"job"}, + ) + + // Tiempo de ejecución de cada job + CronDuration = prometheus.NewHistogramVec( + prometheus.HistogramOpts{ + Name: "cron_job_duration_seconds", + Help: "Duración de ejecución por cron job", + Buckets: prometheus.DefBuckets, + }, + []string{"job"}, + ) + + // Última ejecución exitosa (timestamp Unix) + CronLastSuccess = prometheus.NewGaugeVec( + prometheus.GaugeOpts{ + Name: "cron_job_last_success_timestamp", + Help: "Timestamp de la última ejecución exitosa por cron job", + }, + []string{"job"}, + ) + + // Último error (timestamp Unix) + CronLastError = prometheus.NewGaugeVec( + prometheus.GaugeOpts{ + Name: "cron_job_last_error_timestamp", + Help: "Timestamp del último error por cron job", + }, + []string{"job"}, + ) +) + +func Register() { + prometheus.MustRegister(CronSuccess, CronError, CronDuration, CronLastSuccess, CronLastError) +}